    .webdev-faq-section {
        padding: 180px 8% 100px;
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }

    .webdev-faq-section .webdev-headline {
        margin-bottom: 10px;
    }

    .webdev-faq-list {
        margin-top: 50px;
    }

    .webdev-faq-item {
        margin-bottom: 16px;
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 10px;
        overflow: hidden;
        background: #141b24;
        box-shadow: 0 4px 20px rgba(0,0,0,0.45);
        transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        cursor: pointer;
    }

    @media (hover:hover) {
        .webdev-faq-item:hover {
            border-color: var(--webdev-accent);
            box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 0 0 1px var(--webdev-accent);
        }
    }

    .webdev-faq-item.open {
        border-color: var(--webdev-accent);
        box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 0 0 1px var(--webdev-accent);
        background: rgba(0, 168, 255, 0.1);
    }

    .webdev-faq-question {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 24px 28px;
        cursor: pointer;
        transition: background 0.3s ease;
        user-select: none;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        font: inherit;
        color: inherit;
    }

    .webdev-faq-question * {
        cursor: pointer;
    }

    @media (hover:hover) {
        .webdev-faq-question:hover {
            background: rgba(51, 184, 255, 0.03);
        }
    }

    .webdev-faq-number {
        font-family: 'Geist Mono', monospace;
        font-size: 0.75rem;
        color: rgba(255,255,255,0.7);
        letter-spacing: 1px;
        flex-shrink: 0;
        width: 32px;
        transition: color 0.4s ease;
    }

    .webdev-faq-item.open .webdev-faq-number {
        color: rgba(255,255,255,0.7);
    }

    .webdev-faq-question h3 {
        font-size: 1.1rem;
        font-weight: 400;
        color: #f8fafc;
        margin: 0;
        padding-right: 20px;
        line-height: 1.4;
        flex: 1;
    }

    .webdev-faq-toggle {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        color: rgba(255,255,255,0.6);
    }

    .webdev-faq-item.open .webdev-faq-toggle {
        transform: rotate(180deg);
        color: #fff;
    }

    .webdev-faq-toggle svg {
        width: 20px;
        height: 20px;
    }

    .webdev-faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.4s ease;
    }

    .webdev-faq-item.open .webdev-faq-answer {
        max-height: 2000px;
        padding: 0 28px 24px;
    }

    .webdev-faq-answer p {
        color: #94a3b8;
        font-size: 1rem;
        line-height: 1.8;
        margin: 0;
    }

    .webdev-faq-answer a {
        color: #fff;
        text-decoration: underline;
        text-underline-offset: 2px;
        transition: opacity 0.3s ease;
    }

    .webdev-faq-answer a:hover {
        opacity: 0.8;
        color: var(--webdev-accent-light);
    }

    .webdev-faq-cta {
        margin-top: 60px;
        padding: 45px 40px;
        background: rgba(0,0,0,0.3);
        border: 1px solid var(--webdev-border-color);
        border-radius: 8px;
        text-align: center;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .webdev-faq-cta:hover {
        border-color: var(--webdev-accent);
        box-shadow: 0 0 0 1px var(--webdev-accent-dim);
    }

    .webdev-faq-cta p {
        color: #94a3b8;
        font-size: 1rem;
        margin: 0 0 24px;
    }

    @media (max-width: 768px) {
        .webdev-faq-section {
            padding: 120px 5% 60px;
        }

        .webdev-faq-question {
            padding: 18px 20px;
            gap: 12px;
        }

        .webdev-faq-question h3 {
            font-size: 0.95rem;
        }

        .webdev-faq-number {
            width: 24px;
            font-size: 0.7rem;
        }

        .webdev-faq-answer p {
            font-size: 0.9rem;
        }

        .webdev-faq-item.open .webdev-faq-answer {
            padding: 0 20px 20px;
        }

        .webdev-faq-cta {
            padding: 30px 20px;
        }

        .webdev-faq-cta p {
            font-size: 1rem;
        }
    }
