* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 300; /* Thinner, Apple-like */
    color: #fff;
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

main {
    max-width: 1440px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.hero {
    text-align: center;
    padding: 6rem 2rem;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero h2 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    color: #999;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-stats div {
    text-align: center;
    background: rgba(50, 50, 70, 0.1); /* Subtle blue-gray tint */
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hero-stats div:hover {
    transform: translateY(-5px);
}

.hero-stats span {
    font-size: 3.5rem;
    font-weight: 300;
    color: #fff;
}

.hero-stats p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
}

.content-section {
    margin-bottom: 6rem;
}

h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.accordion-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    background: rgba(50, 50, 70, 0.05); /* Subtle tinted highlight */
    color: #fff;
    padding: 1.5rem 1rem;
    border: none;
    text-align: left;
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.accordion-header:hover {
    background: rgba(50, 50, 70, 0.15);
    color: #ccc;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    color: #999;
    transition: max-height 0.5s ease, padding 0.1s ease;
}

.accordion-content.active {
    max-height: 2000px; /* Increased for more content */
    padding: 0 0 2rem;
}

.accordion-content p, .accordion-content ul {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.accordion-content ul {
    list-style: none;
    margin-left: 1rem;
}

.accordion-content ul li::before {
    content: "–";
    margin-right: 0.5rem;
    color: #666;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

table th, table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

table th {
    color: #fff;
    font-weight: 400;
    background: rgba(50, 50, 70, 0.1); /* Tinted background */
}

table td {
    color: #999;
    font-weight: 300;
}

.timeline {
    padding-left: 2rem;
}

.timeline-item {
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

.timeline-item h3 {
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #999;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #000;
    color: #666;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stats span {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        padding: 1rem 0;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 100%;
        left: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .accordion-header {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats span {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .accordion-header {
        font-size: 1.3rem;
    }

    .accordion-content p, .accordion-content ul {
        font-size: 1rem;
    }
}