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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #1a1a1a;
    color: white;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Header Styles */
.header {
    padding: 30px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: 50px;
    border-radius: 12px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.cta-button {
    background-color: #34C759;
    color: white;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.cta-button:hover {
    opacity: 0.9;
}

/* Content Styles */
.content {
    padding: 60px 0 100px 0;
}

.content .container {
    max-width: 800px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.last-updated {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
}

section {
    margin-bottom: 48px;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 16px;
    color: white;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 20px;
    color: white;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

strong {
    color: white;
    font-weight: 600;
}

.contact-email {
    font-size: 16px;
    margin: 16px 0;
}

.contact-email a {
    color: #34C759;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-email a:hover {
    opacity: 0.8;
}

ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

li {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 40px;
    }
    
    .content .container {
        padding: 0 40px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 30px;
    }
    
    .content .container {
        padding: 0 30px;
    }
    
    .header {
        padding: 20px 0;
    }
    
    .logo img {
        height: 40px;
        width: 40px;
    }
    
    .nav {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .content {
        padding: 40px 0 60px 0;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 22px;
    }
}

