* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lucida Console', 'Courier New', monospace;
    font-size: 18px;
    line-height: 1.6;
    color: #111;
    background: #f5f5f5;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px;
}

.footer {
    text-align: left;
    margin-top: 3rem;
    padding-top: 2rem;
}

.logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.vision {
    text-align: center;
    margin-bottom: 4rem;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-content p {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #111;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.separator {
    border: none;
    border-top: 1px solid #ddd;
    margin: 4rem 0;
    width: 100%;
}

.founders {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    margin-bottom: 4rem;
}

.founder {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.founder-photo {
    width: 180px;
    height: 200px;
    border-radius: 12px;
    background: #f5f5f5;
    border: 3px solid #FF4500;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.founder-photo:hover {
    transform: scale(1.05);
    border-color: #E55100;
    box-shadow: 0 8px 25px rgba(255, 127, 0, 0.3);
}

.founder-photo:hover img {
    transform: scale(1.1);
}

.founder h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #FF4500;
    font-weight: 600;
}

.founder p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    font-style: italic;
}

.background {
    text-align: center;
    margin-bottom: 4rem;
}

.background-content {
    max-width: 600px;
    margin: 0 auto;
}

.background-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    font-weight: 300;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 80%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close {
    color: #666;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.close:hover {
    color: #FF4500;
    background-color: rgba(255, 69, 0, 0.1);
}

.close:active {
    background-color: rgba(255, 69, 0, 0.2);
}

.modal-body {
    padding: 40px;
}

.modal-body h2 {
    color: #FF4500;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.modal-body p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-info a {
    color: #FF4500;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .vision-content p {
        font-size: 1.3rem;
        line-height: 1.5;
    }
    
    .founders {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .founder {
        max-width: 250px;
    }
    
    .founder-photo {
        width: 150px;
        height: 170px;
        border-width: 2px;
    }
    
    .founder-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .founder h3 {
        font-size: 1.2rem;
    }
    
    .founder p {
        font-size: 0.9rem;
    }
    
    .background-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .separator {
        margin: 2.5rem 0;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .modal-body h2 {
        font-size: 1.5rem;
    }
    
    .modal-body p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .close {
        font-size: 24px;
        right: 15px;
        top: 10px;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px 10px;
    }
    
    .vision-content p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .founder-photo {
        width: 130px;
        height: 150px;
    }
    
    .modal-content {
        width: 98%;
        margin: 2% auto;
        border-radius: 8px;
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .modal-body h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .modal-body p {
        font-size: 0.9rem;
    }
    
    .contact-info p {
        font-size: 0.85rem;
    }
    
    .logo {
        max-width: 120px;
    }
}