* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #8b5cf6;
    --secondary-purple: #a78bfa;
    --dark-bg: #000000;
    --glass-bg: rgba(15, 15, 25, 0.7);
    --glass-border: rgba(139, 92, 246, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-radius: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-text {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInOut 2s ease-in-out;
    opacity: 0;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    20%, 80% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Animated Glow Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: -1;
    animation: float 20s infinite ease-in-out;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-purple), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6366f1, transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.glow-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--secondary-purple), transparent);
    top: 50%;
    right: 20%;
    animation-delay: 14s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Contact Popup */
.nav-contact {
    position: relative;
}

.contact-trigger {
    cursor: pointer;
}

.contact-popup {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 20px;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-contact:hover .contact-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-popup p {
    margin: 0 0 15px 0;
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
}

.discord-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.discord-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.discord-link svg {
    width: 20px;
    height: 20px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-50px, 100px) scale(0.9); }
}

/* Tech Globe */
.tech-globe {
    position: fixed;
    width: 1100px;
    height: 1100px;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    will-change: transform;
    filter: drop-shadow(0 0 80px rgba(139, 92, 246, 0.6));
}

.tech-globe canvas {
    width: 100%;
    height: 100%;
}

@media (max-width: 1800px) {
    .tech-globe {
        width: 950px;
        height: 950px;
        left: 38%;
    }
}

@media (max-width: 1600px) {
    .tech-globe {
        width: 850px;
        height: 850px;
        left: 42%;
    }
}

@media (max-width: 1400px) {
    .tech-globe {
        width: 700px;
        height: 700px;
        left: 45%;
    }
}

@media (max-width: 1024px) {
    .tech-globe {
        width: 550px;
        height: 550px;
        left: 50%;
    }
}

@media (max-width: 768px) {
    .tech-globe {
        width: 450px;
        height: 450px;
        opacity: 0.7;
        left: 50%;
    }
}

/* Glass Navigation */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 15px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 10;
}

/* Section Designs - Fade to Side */
.section-design {
    position: absolute;
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-design {
    right: 0;
    top: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
}

.hero-design::before {
    content: '';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            rgba(139, 92, 246, 0.6) 0deg,
            rgba(167, 139, 250, 0.4) 90deg,
            rgba(139, 92, 246, 0.3) 180deg,
            rgba(109, 40, 217, 0.4) 270deg,
            rgba(139, 92, 246, 0.6) 360deg);
    border-radius: 50%;
    filter: blur(80px);
    animation: rotate 20s linear infinite;
}

.hero-design::after {
    content: '';
    position: absolute;
    right: 12%;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    background: url('data:image/svg+xml,<svg width="450" height="450" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="heroGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(139,92,246);stop-opacity:0.8" /><stop offset="50%" style="stop-color:rgb(167,139,250);stop-opacity:0.6" /><stop offset="100%" style="stop-color:rgb(139,92,246);stop-opacity:0.4" /></linearGradient></defs><circle cx="225" cy="225" r="200" fill="none" stroke="url(%23heroGrad)" stroke-width="2"/><circle cx="225" cy="225" r="150" fill="none" stroke="url(%23heroGrad)" stroke-width="2"/><circle cx="225" cy="225" r="100" fill="none" stroke="url(%23heroGrad)" stroke-width="2"/><circle cx="225" cy="225" r="50" fill="none" stroke="url(%23heroGrad)" stroke-width="2"/><line x1="25" y1="225" x2="425" y2="225" stroke="url(%23heroGrad)" stroke-width="1.5"/><line x1="225" y1="25" x2="225" y2="425" stroke="url(%23heroGrad)" stroke-width="1.5"/><line x1="75" y1="75" x2="375" y2="375" stroke="url(%23heroGrad)" stroke-width="1"/><line x1="375" y1="75" x2="75" y2="375" stroke="url(%23heroGrad)" stroke-width="1"/></svg>') no-repeat center;
    opacity: 0.9;
    animation: rotate 30s linear infinite reverse;
}

.features-design {
    left: 0;
    top: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 60%);
}

.features-design::before {
    content: '';
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    background: 
        conic-gradient(from 180deg at 50% 50%, 
            rgba(167, 139, 250, 0.6) 0deg,
            rgba(139, 92, 246, 0.4) 90deg,
            rgba(167, 139, 250, 0.3) 180deg,
            rgba(139, 92, 246, 0.4) 270deg,
            rgba(167, 139, 250, 0.6) 360deg);
    border-radius: 50%;
    filter: blur(80px);
    animation: rotate 25s linear infinite reverse;
}

.features-design::after {
    content: '';
    position: absolute;
    left: 12%;
    top: 50%;
    transform: translateY(-50%);
    width: 470px;
    height: 470px;
    background: url('data:image/svg+xml,<svg width="470" height="470" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="featGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(167,139,250);stop-opacity:0.8" /><stop offset="50%" style="stop-color:rgb(139,92,246);stop-opacity:0.6" /><stop offset="100%" style="stop-color:rgb(167,139,250);stop-opacity:0.4" /></linearGradient></defs><rect x="35" y="35" width="400" height="400" fill="none" stroke="url(%23featGrad)" stroke-width="2" rx="20"/><rect x="85" y="85" width="300" height="300" fill="none" stroke="url(%23featGrad)" stroke-width="2" rx="15"/><rect x="135" y="135" width="200" height="200" fill="none" stroke="url(%23featGrad)" stroke-width="2" rx="10"/><circle cx="235" cy="235" r="60" fill="none" stroke="url(%23featGrad)" stroke-width="2"/><line x1="35" y1="235" x2="435" y2="235" stroke="url(%23featGrad)" stroke-width="1.5"/><line x1="235" y1="35" x2="235" y2="435" stroke="url(%23featGrad)" stroke-width="1.5"/></svg>') no-repeat center;
    opacity: 0.9;
    animation: rotate 35s linear infinite;
}

.pricing-design {
    right: 0;
    top: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
}

.pricing-design::before {
    content: '';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    background: 
        conic-gradient(from 90deg at 50% 50%, 
            rgba(139, 92, 246, 0.6) 0deg,
            rgba(109, 40, 217, 0.4) 90deg,
            rgba(139, 92, 246, 0.3) 180deg,
            rgba(167, 139, 250, 0.4) 270deg,
            rgba(139, 92, 246, 0.6) 360deg);
    border-radius: 50%;
    filter: blur(80px);
    animation: rotate 22s linear infinite;
}

.pricing-design::after {
    content: '';
    position: absolute;
    right: 12%;
    top: 50%;
    transform: translateY(-50%);
    width: 430px;
    height: 430px;
    background: url('data:image/svg+xml,<svg width="430" height="430" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="priceGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(139,92,246);stop-opacity:0.8" /><stop offset="50%" style="stop-color:rgb(109,40,217);stop-opacity:0.6" /><stop offset="100%" style="stop-color:rgb(139,92,246);stop-opacity:0.4" /></linearGradient></defs><polygon points="215,30 390,150 340,380 90,380 40,150" fill="none" stroke="url(%23priceGrad)" stroke-width="2"/><polygon points="215,80 340,170 300,330 130,330 90,170" fill="none" stroke="url(%23priceGrad)" stroke-width="2"/><polygon points="215,130 290,190 260,280 170,280 140,190" fill="none" stroke="url(%23priceGrad)" stroke-width="2"/><circle cx="215" cy="215" r="50" fill="none" stroke="url(%23priceGrad)" stroke-width="2"/><line x1="215" y1="30" x2="215" y2="400" stroke="url(%23priceGrad)" stroke-width="1.5"/><line x1="40" y1="215" x2="390" y2="215" stroke="url(%23priceGrad)" stroke-width="1.5"/></svg>') no-repeat center;
    opacity: 0.9;
    animation: rotate 28s linear infinite reverse;
}

@keyframes rotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.content-left {
    margin-left: 8%;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.content-right {
    margin-left: auto;
    margin-right: 8%;
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.glitch-text {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    animation: glow 2s ease-in-out infinite alternate;
    letter-spacing: -1px;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5)); }
    to { filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.8)); }
}

.subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Glass Buttons */
.glass-button {
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
}

.glass-button.primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.glass-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
}

.glass-button.secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.glass-button.secondary:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 50px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 20px;
}

.glass-card .card-icon {
    flex-shrink: 0;
}

.glass-card div:last-child {
    flex: 1;
}

.glass-card h3,
.glass-card p {
    text-align: left;
}

.glass-card:hover {
    transform: translateX(-5px);
    border-color: var(--primary-purple);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.3);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    color: var(--primary-purple);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.glass-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.glass-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Section - Pricing Card */
.about {
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.pricing-container {
    max-width: 500px;
    width: 100%;
    margin-left: 8%;
    margin-right: auto;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.pricing-price {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 15px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-primary);
    font-size: 15px;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--primary-purple);
    flex-shrink: 0;
}

.pricing-button {
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 14px 32px;
}

.pricing-button:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .pricing-container {
        margin-left: 20px;
        margin-right: 20px;
    }
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.glass-panel h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    color: #ffffff;
}

.glass-panel p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.glass-footer {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid var(--glass-border);
    padding: 60px 40px 25px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    position: relative;
    z-index: 10;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.footer-domain {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.footer-column h4 {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }
    
    .glass-nav {
        padding: 12px 20px;
    }
    
    .content-left,
    .content-right {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .glass-card {
        flex-direction: column;
        text-align: center;
    }
    
    .glass-card h3,
    .glass-card p {
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .glass-button {
        width: 100%;
    }
}


/* FAQ Section */
.faq {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-purple);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-purple);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-purple);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}
