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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    text-align: center;
    padding: 100px 20px 80px;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.5em;
    opacity: 0.95;
    margin-bottom: 40px;
    font-weight: 300;
}

.founder-intro {
    margin-top: 40px;
}

.founder-intro h2 {
    font-size: 2em;
    margin-bottom: 5px;
}

.founder-intro .title {
    font-size: 1.2em;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 60px 20px;
    background: #f8f9fa;
}

.intro {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 50px;
    color: #1a237e;
    font-weight: 500;
}

.specialties,
.credentials,
.sectors {
    background: white;
    padding: 30px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.specialties h3,
.credentials h3,
.sectors h3 {
    color: #1a237e;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.specialties ul,
.credentials ul {
    list-style: none;
    padding: 0;
}

.specialties li,
.credentials li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.specialties li::before,
.credentials li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #283593;
    font-weight: bold;
}

.sectors p {
    font-size: 1.1em;
    color: #555;
    text-align: center;
}

/* Current Project Section */
.current-project {
    padding: 60px 20px;
    background: white;
}

.current-project h2 {
    text-align: center;
    font-size: 2.5em;
    color: #1a237e;
    margin-bottom: 40px;
}

.project-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.project-card h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.project-card p {
    font-size: 1.2em;
    margin-bottom: 15px;
    opacity: 0.95;
}

.project-tagline {
    font-style: italic;
    font-size: 1.1em !important;
    margin-top: 20px !important;
}

.project-link {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.project-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5em;
    color: #1a237e;
    margin-bottom: 40px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #1a237e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #283593;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.icon {
    font-size: 1.5em;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background: #1a237e;
    color: white;
    text-align: center;
}

.footer p {
    margin: 5px 0;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }
    
    .tagline {
        font-size: 1.2em;
    }
    
    .founder-intro h2 {
        font-size: 1.5em;
    }
    
    .current-project h2,
    .contact h2 {
        font-size: 2em;
    }
    
    .project-card {
        padding: 30px 20px;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}