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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #264653;
    background-color: #FAF9F7;
}

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

header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 1rem 20px;
}

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

.logo img {
    border-radius: 8px;
}

header h1 {
    color: #FF8F71;
    font-size: 1.8rem;
    font-weight: 600;
}

nav {
    display: -webkit-flex;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #FF8F71;
}

.hero {
    background: #FF8F71;
    background: -webkit-linear-gradient(135deg, #FF8F71 0%, #9333EA 100%);
    background: linear-gradient(135deg, #FF8F71 0%, #9333EA 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

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

section {
    padding: 4rem 0;
}

.support h2, .faq h2, .contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #264653;
    font-weight: 600;
}

.support-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.support-card h3 {
    color: #9333EA;
    margin-bottom: 1rem;
    font-weight: 500;
}

.faq {
    background-color: #fff;
}

.faq details {
    background: #f8f9fa;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.faq summary {
    font-weight: 500;
    cursor: pointer;
    color: #264653;
    list-style: none;
    position: relative;
    padding-right: 2rem;
}

.faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: #FF8F71;
}

.faq details[open] summary::after {
    content: '−';
}

.faq details p {
    margin-top: 1rem;
    color: #666;
}

.contact {
    text-align: center;
}

.contact-info {
    background: white;
    display: inline-block;
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

footer {
    background-color: #264653;
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

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

.footer-links {
    display: -webkit-flex;
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        margin-bottom: 0.5rem;
    }
    
    nav {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    footer .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}