        /* FAQ Section */
.faq-section {
    padding: 5rem 0; /* 80px */
    background-color: #ffffff;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem; /* 32px */
    margin: 3rem 0;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem; /* 20px */
}

.faq-item {
    background: #f9f9f9;
    border-radius: 0.5rem; /* 8px */
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    /* cursor: pointer; */
    /* background: #ffffff; */
    /* transition: background 0.3s ease; */
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.02);
}

.faq-question h3 {
    font-size: 1.2rem; /* 19.2px */
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    padding-right: 2rem; /* 32px - vietos rodyklei */
    line-height: 1.4;
}

.faq-question h3 strong {
    color: #D4AF37;
    font-weight: 700;
}

.faq-toggle {
    color: #D4AF37;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem; /* 0 24px 20px 24px */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    text-align: left;
    font-size: 1rem; /* 16px */
    color: #444444;
    line-height: 1.7;
    margin-bottom: 1rem; /* 16px */
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #D4AF37;
    font-weight: 600;
}

.faq-answer a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-answer a:hover {
    border-bottom-color: #D4AF37;
}

.faq-list {
    margin: 1rem 0;
    padding: 0;
    list-style: none;
}

.faq-list li {
    text-align: left;
    font-size: 1rem;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 0.75rem; /* 12px */
    padding-left: 1.5rem; /* 24px */
    position: relative;
}

.faq-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem; /* ~9px */
    width: 0.5rem; /* 8px */
    height: 0.5rem; /* 8px */
    background: #D4AF37;
    border-radius: 0.125rem; /* 2px */
}

.faq-list li strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Kainų blokas */
.faq-price {
    background: rgba(212, 175, 55, 0.05);
    padding: 1.25rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.faq-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.faq-price-item:last-child {
    border-bottom: none;
}

.faq-price-item .service {
    font-weight: 500;
    color: #1a1a1a;
}

.faq-price-item .price {
    font-weight: 700;
    color: #D4AF37;
    font-size: 1.1rem;
}

/* Papildomi klausimai */
.faq-more {
    margin: 3rem 0 2rem;
    text-align: center;
}

.faq-more h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.faq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.faq-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #f5f5f5;
    border-radius: 2rem;
    font-size: 0.9rem;
    color: #444444;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.faq-tag:hover {
    background: #D4AF37;
    color: #ffffff;
    border-color: #D4AF37;
}

/* CTA */
.faq-cta {
    text-align: center;
    background: #f9f9f9;
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 2rem;
}

.faq-cta .cta-text {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.faq-cta .cta-text strong {
    color: #D4AF37;
}

.faq-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 62rem) { /* 992px */
    .faq-grid {
        gap: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 48rem) { /* 768px */
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
        padding-right: 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }
    
    .faq-tag {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
    }
    
    .faq-cta .cta-text {
        font-size: 1.2rem;
    }
    
    .faq-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-contact .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 30rem) { /* 480px */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p,
    .faq-list li {
        font-size: 0.9375rem;
    }
    
    .faq-tags {
        gap: 0.75rem;
    }
    
    .faq-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.875rem;
    }
    
    .faq-cta {
        padding: 1.5rem 1rem;
    }
    
    .faq-cta .cta-text {
        font-size: 1.1rem;
    }
}