:root { 
    /* Silver/Metallic Color Palette - Consistent Branding */
    --primary-color: #ffffff;
    --secondary-color: rgba(20, 20, 25, 0.95);
    --accent-color: #71717a;
    --accent-hover: #a1a1aa;
    --text-color: #f3f4f6;
    --text-muted: #9ca3af;
    --card-background: rgba(30, 30, 35, 0.8);
    --card-hover: rgba(40, 40, 45, 0.9);
    --transition-speed: 0.4s;
    --transition-curve: cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --max-width: 1200px;
    --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --backdrop-blur: blur(20px);
    --background-gradient: radial-gradient(ellipse at center, #000814 0%, #0a0a0f 40%, #000000 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: 
        radial-gradient(ellipse at top left, rgba(113, 113, 122, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(161, 161, 170, 0.1) 0%, transparent 50%),
        var(--background-gradient);
    background-attachment: fixed;
    color: var(--text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.faq-container {
    max-width: var(--max-width);
    width: 90%;
    margin: 2rem auto;
    padding: 3rem;
    background: var(--card-background);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(113, 113, 122, 0.2);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) var(--transition-curve);
}

.faq-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 212, 216, 0.03), transparent);
    transition: left 0.8s ease;
}

.faq-container:hover::before {
    left: 100%;
}

.faq-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.5px;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
    padding: 0;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
}

.faq-item {
    background: linear-gradient(135deg, rgba(35, 35, 40, 0.6), rgba(30, 30, 35, 0.8));
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(113, 113, 122, 0.2);
    transition: all var(--transition-speed) var(--transition-curve);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 212, 216, 0.05), transparent);
    transition: left 0.6s ease;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(45, 45, 50, 0.7), rgba(35, 35, 40, 0.9));
    border-color: rgba(161, 161, 170, 0.3);
}

.faq-item-content {
    position: relative;
    z-index: 1;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.25px;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.9;
}

footer {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, transparent, rgba(20, 20, 25, 0.8));
    backdrop-filter: var(--backdrop-blur);
    text-align: center;
    width: 100%;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    color: var(--text-color);
}

footer .social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

footer .social-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(113, 113, 122, 0.3);
    background: rgba(30, 30, 35, 0.6);
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed) var(--transition-curve);
    position: relative;
    overflow: hidden;
}

footer .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 212, 216, 0.1), transparent);
    transition: left 0.6s ease;
}

footer .social-links a:hover::before {
    left: 100%;
}

footer .social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(113, 113, 122, 0.2);
    background: rgba(63, 63, 70, 0.8);
    border-color: rgba(161, 161, 170, 0.5);
}

@media (max-width: 768px) {
    .faq-container {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.15rem;
    }

    .faq-item p {
        font-size: 0.95rem;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }
}