* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #fff;
    --bg-white: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #5C6B7A;
    --accent: #0079d3;
    --border: #E8EDF2;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif; */
    font-family: "Text Me One", sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


header {
    background-color: rgba(248, 249, 250, 0.95);
    border-bottom: 1px solid var(--border);
    z-index: 50;
    backdrop-filter: blur(10px);
    background: url(img/bg-hero.webp) no-repeat bottom center;
    background-size: cover;
    background-attachment: fixed;
}
header:before {
    content: 'a';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(10px);
    display: block;
    position: absolute;
    z-index: -1;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.75rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 600px;
}

.company-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    transition: opacity 0.2s ease;
    padding: 0.5rem 0;
    font-family: "Playfair Display", serif;
}

nav a:hover,
nav a:focus {
    opacity: 0.6;
    outline: none;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.hero {
    text-align: center;
    padding: 8rem 0 6rem;
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.1;
    font-family: "Playfair Display", serif;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 0;
    border-top: 1px solid var(--border);
}

h2 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.list-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.list-content li {
    list-style: none;
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1;
    padding-left: 0;
}

.list-content li::before {
    content: none;
}

.governance-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.125rem;
    max-width: 750px;
}

.contact-section {
    text-align: center;
    padding: 4rem 2rem;
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.125rem;
}

.email-display {
    font-size: 1.5rem;
    margin: 2rem 0;
}

.email-display a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s ease;
    padding: 0.5rem 1rem;
    display: inline-block;
}

.email-display a:hover,
.email-display a:focus {
    opacity: 0.7;
}

.contact-instruction {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

footer {
    background-color: #000d24;
    padding: 4rem 3rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    color: #cdcdcd;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .header-content {
        padding: 1.5rem 2rem;
    }

    main {
        padding: 0 2rem;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    footer {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.25rem 1.5rem;
    }

    .company-name {
        font-size: 0.95rem;
    }

    nav ul {
        gap: 2rem;
    }

    nav a {
        font-size: 0.875rem;
    }

    main {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }

    .hero-body,
    .list-content li,
    .governance-text,
    .contact-intro {
        font-size: 1rem;
    }

    .content-section {
        padding: 3.5rem 0;
    }

    .email-display {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 1rem;
    }

    nav ul {
        gap: 1.25rem;
    }

    main {
        padding: 0 1rem;
    }

    .hero {
        padding: 3rem 0 2rem;
    }

    h1 {
        font-size: 1.875rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .content-section {
        padding: 3rem 0;
    }

    footer {
        padding: 2.5rem 1rem;
    }
}