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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: #f8f9fa;
}

nav {
    background: #1a1a1a;
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: #d4d4d4;
    text-decoration: none;
    transition: color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

nav a:hover {
    color: #ffffff;
}

.app-link {
    background: #2c3e50;
    color: #ffffff;
    padding: 0.7rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #34495e;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.app-link:hover {
    background: #34495e;
    border-color: #3d566e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 10rem 2rem 6rem;
    text-align: center;
    margin-top: 60px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.8;
}

.hero-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-top: 1rem;
}

.hero-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #7f8c8d;
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.team-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-content {
    padding: 2.5rem 2rem;
}

.team-card h3 {
    color: #1a1a1a;
    font-size: 1.7rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.team-card .role {
    color: #7f8c8d;
    font-style: normal;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.team-card p {
    color: #5a6c7d;
    line-height: 1.9;
    font-size: 1rem;
}

.contact-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    border: 1px solid #e8e8e8;
    text-align: center;
    margin-top: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.15);
}

.contact-box p {
    color: #2c3e50;
    font-size: 1.15rem;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

.contact-box a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
}

.contact-box a:hover {
    color: #34495e;
    border-bottom-color: #34495e;
}

.legal-section {
    background: #ffffff;
    padding: 5rem 2rem;
    margin-top: 60px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.legal-content h1 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 2.5rem;
    letter-spacing: 0.5px;
}

.legal-content h2 {
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1.6rem;
}

.legal-content h3 {
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
    font-size: 1.2rem;
}

.legal-content p, .legal-content li {
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.9;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content strong {
    color: #2c3e50;
}

.legal-content a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: #34495e;
    text-decoration: underline;
}

footer {
    background: #1a1a1a;
    color: #d4d4d4;
    text-align: center;
    padding: 3rem 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

footer a {
    color: #d4d4d4;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffffff;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #2c3e50;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s;
}

.back-link:hover {
    color: #1a1a1a;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
        font-size: 0.85rem;
    }

    nav .logo {
        font-size: 1.3rem;
    }

    .hero {
        padding: 8rem 1.5rem 4rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .legal-content {
        padding: 2rem;
    }

    .team-grid {
        gap: 2rem;
    }

    .contact-box {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .contact-box p {
        font-size: 1rem;
    }
}
