/* Ensure tool card links keep original text color and no underline */
.tool-card-link {
    color: inherit;
    text-decoration: none;
}
.tool-card-link * {
    color: inherit;
}
/* Tool Categories - CSS Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    --text-primary-color: #ffffff;
    --background-color: #000000;
    
    /* Typography Scale */
    --font-xs: 0.75rem;        /* 12px */
    --font-sm: 0.875rem;       /* 14px */
    --font-base: 1rem;         /* 16px */
    --font-lg: 1.125rem;       /* 18px */
    --font-xl: 1.25rem;        /* 20px */
    --font-2xl: 1.5rem;        /* 24px */
    --font-3xl: 1.875rem;      /* 30px */
    --font-4xl: 2.25rem;       /* 36px */
    --font-5xl: 3rem;          /* 48px */
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
}

/* Typography Utility Classes */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: var(--font-4xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-lg);
    color: var(--text-primary-color);
}

.section-subtitle {
    font-size: var(--font-lg);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-primary-color);
}

.section-subtitle-large {
    font-size: var(--font-xl);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: var(--text-primary-color);
}

.section-title-large {
    font-size: var(--font-5xl);
    font-weight: var(--font-extrabold);
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/desktop Bg image.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
}

/* Mobile background image */
@media (max-width: 768px) {
    body {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/mobile Bg image.webp');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

/* Header */
.categories-header {
    text-align: center;
    padding: 80px 0 60px;
}

.categories-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.categories-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.back-button {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Categories Grid */
.categories-section {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 280px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #4ade80;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(34, 197, 94, 0.08));
    box-shadow: 0 20px 40px rgba(74, 222, 128, 0.2);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1.25rem 1.25rem 0 0;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card::after {
    content: none;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(74, 222, 128, 0.3));
}

.category-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.category-card:hover .category-name {
    color: #4ade80;
}

.category-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.category-card:hover .category-description {
    color: rgba(255, 255, 255, 0.95);
}

.category-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.category-count {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.9), rgba(34, 197, 94, 0.9));
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--background-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
    transition: all 0.3s ease;
}

.category-card:hover .category-count {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(74, 222, 128, 0.4);
}

.category-popularity {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-card:hover .category-popularity {
    color: rgba(255, 255, 255, 0.9);
}

.tool-preview {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
    position: relative;
    z-index: 2;
}

.tool-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.category-card:hover .tool-tag {
    background: rgba(74, 222, 128, 0.2);
    border-color: rgba(74, 222, 128, 0.4);
    color: rgba(255, 255, 255, 0.95);
}

/* Stats Dashboard */
.stats-dashboard {
    padding: 80px 0;
    margin-top: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74, 222, 128, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.stat-sublabel {
    font-size: 0.85rem;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Popular Tools Showcase */
.popular-showcase {
    padding: 80px 0;
    background: transparent;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.popular-tool {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.popular-tool:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.tool-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.tool-category.seo { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.tool-category.text { background: rgba(147, 51, 234, 0.2); color: #a855f7; }
.tool-category.general { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.tool-category.tracking { background: rgba(249, 115, 22, 0.2); color: #fb923c; }
.tool-category.fun { background: rgba(236, 72, 153, 0.2); color: #ec4899; }

.tool-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.popular-tool h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.popular-tool p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.5;
}

.usage-stats {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 12px;
}

.usage-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4ade80;
}

.usage-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

.popularity-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.popularity-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 2px;
    transition: width 0.8s ease;
}

/* User Journey Guide */
.user-journey {
    padding: 80px 0;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.journey-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.journey-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74, 222, 128, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.user-type {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 15px;
    display: block;
}

.journey-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.journey-card p {
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.journey-steps {
    margin-bottom: 25px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.step-number {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.journey-btn {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: black;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.journey-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.4);
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(74, 222, 128, 0.05), transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.03), transparent 50%);
    pointer-events: none;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e, #16a34a, #4ade80);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(74, 222, 128, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 
                0 10px 30px rgba(74, 222, 128, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 12px rgba(74, 222, 128, 0.3));
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 6px 20px rgba(74, 222, 128, 0.5));
}

.feature-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-item:hover h4 {
    color: rgba(74, 222, 128, 1);
    text-shadow: 0 2px 8px rgba(74, 222, 128, 0.3);
}

.feature-item p {
    opacity: 0.85;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.feature-item:hover p {
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
}

.feature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(34, 197, 94, 0.2));
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 4px 8px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-badge {
    opacity: 1;
}

.feature-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.stat-mini {
    text-align: center;
}

.stat-mini-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4ade80;
    display: block;
}

.stat-mini-label {
    font-size: 0.75rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .categories-header h1 {
        font-size: 2.5rem;
    }

    .categories-header p {
        font-size: 1rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        padding: 30px 20px;
    }

    .back-button {
        top: 20px;
        left: 20px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    /* Stats Dashboard Mobile */
    .stats-dashboard {
        padding: 30px 20px;
        margin: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    /* Popular Tools Mobile */
    .popular-tools {
        padding: 30px 20px;
        margin: 40px 0;
    }

    .popular-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .popular-tool {
        padding: 20px 15px;
    }

    /* Journey Guide Mobile */
    .user-journey {
        padding: 30px 20px;
        margin: 40px 0;
    }

    .journey-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .journey-card {
        padding: 20px 15px;
    }

    .journey-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Features Section Mobile */
    .features-section {
        padding: 40px 20px;
        margin: 40px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .categories-header {
        padding: 60px 0 40px;
    }

    .categories-header h1 {
        font-size: 2rem;
    }

    .category-icon {
        font-size: 3rem;
    }

    .category-card h3 {
        font-size: 1.5rem;
    }

    .category-card {
        padding: 25px 15px;
    }

    .back-button {
        top: 15px;
        left: 15px;
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    /* Stats Mobile */
    .stats-dashboard {
        padding: 20px 15px;
        margin: 30px 0;
    }

    .stats-grid {
        gap: 12px;
    }

    .stat-card {
        padding: 12px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Popular Tools Mobile */
    .popular-tools {
        padding: 20px 15px;
        margin: 30px 0;
    }

    .popular-tool {
        padding: 15px 10px;
    }

    .popular-tool h4 {
        font-size: 1rem;
    }

    /* Journey Guide Mobile */
    .user-journey {
        padding: 20px 15px;
        margin: 30px 0;
    }

    .journey-card {
        padding: 15px 10px;
    }

    .journey-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Features Section Mobile */
    .features-section {
        padding: 30px 15px;
        margin: 30px 0;
    }

    .feature-item {
        padding: 15px 10px;
    }

    .feature-item h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .categories-header h1 {
        font-size: 1.8rem;
    }

    .category-card {
        padding: 20px 10px;
    }

    .back-button {
        top: 10px;
        left: 10px;
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* FAQ Section */
.faq {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.faq-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-md);
}

.faq-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: var(--space-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xl);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary-color);
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
    margin-right: var(--space-md);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--primary-color);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 var(--space-xl) var(--space-xl);
}

.faq-answer p {
    color: var(--text-secondary-color);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile Responsive FAQ */
@media (max-width: 768px) {
    .faq-header .section-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: var(--space-lg);
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 var(--space-lg) var(--space-lg);
    }
}