@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* FAQ Page Styles - Clean & Responsive */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #363C4F;
    background: #fff;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 40px 45px;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

/* INTRO */
.faq-intro {
    text-align: left;
    margin-bottom: 40px;
}

.faq-intro h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #363C4F;
}

.faq-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    /* max-width: 700px; */
    margin: 0 auto;
}

/* FAQ LIST */
.faq-list {
    /* max-width: 900px; */
    margin: 0 auto;
}

/* FAQ ITEM */
.faq-item {
    border-bottom: 1px solid rgba(109, 129, 170, 0.2);
    padding: 25px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #f8f9fa;
}

.faq-item.active {
    background-color: #f8f9fa;
}

/* FAQ CONTENT LAYOUT */
.faq-item {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    gap: 15px;
    align-items: flex-start;
}

.faq-left {
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.faq-number {
    width: 40px;
    height: 40px;
    /* border: 2px solid #D3A31C; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #363C4F;
}

/* QUESTION CONTENT */
.faq-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #363C4F;
    line-height: 1.4;
}

.faq-answer {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    opacity: 1;
    max-height: 5000px;
    margin-top: 15px;
}

.faq-answer p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer strong {
    color: #363C4F;
    font-weight: 600;
}

/* DELIVERY STAGES */
.delivery-stages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.delivery-stage {
    background: #fff;
    border-left: 4px solid #D3A31C;
    padding: 15px;
    border-radius: 0 4px 4px 0;
}

.stage-number {
    display: inline-block;
    background: #D3A31C;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.stage-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #363C4F;
    margin-bottom: 5px;
}

.stage-content p {
    font-size: 0.95rem;
    color: #6D81AA;
    margin: 0;
}

/* TOGGLE BUTTON */
.faq-toggle {
    font-size: 1.6rem;
    font-weight: 600;
    color: #D3A31C;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .faq-section {
        padding: 40px 30px;
    }
}

@media (max-width: 992px) {
    .faq-section {
        padding: 35px 25px;
    }
    
    .faq-intro h2 {
        font-size: 2rem;
    }
    
    .faq-intro p {
        font-size: 1.05rem;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 30px 20px;
        margin-top: 80px;
    }
    
    .faq-intro h2 {
        font-size: 1.8rem;
    }
    
    .faq-intro p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .faq-item {
        grid-template-columns: 50px 1fr 40px;
        gap: 12px;
        padding: 20px 0;
    }
    
    .faq-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .faq-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .delivery-stages {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 25px 15px;
        margin-top: 70px;
    }
    
    .faq-intro {
        margin-bottom: 30px;
    }
    
    .faq-intro h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .faq-intro p {
        font-size: 0.95rem;
        padding: 0;
    }
    
    .faq-item {
        grid-template-columns: 40px 1fr 35px;
        gap: 10px;
        padding: 18px 0;
    }
    
    .faq-content h3 {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    
    .faq-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .delivery-stage {
        padding: 12px;
    }
    
    .stage-number {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .stage-content h4 {
        font-size: 1rem;
    }
    
    .stage-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .faq-section {
        padding: 20px 12px;
    }
    
    .faq-intro h2 {
        font-size: 1.5rem;
    }
    
    .faq-item {
        grid-template-columns: 35px 1fr 30px;
        gap: 8px;
    }
    
    .faq-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
}

/* PRINT STYLES */
@media print {
    .faq-section {
        padding: 20px;
    }
    
    .faq-item {
        break-inside: avoid;
        border: 1px solid #ddd;
        margin-bottom: 15px;
    }
    
    .faq-item.active .faq-answer {
        max-height: none;
        display: block;
    }
    
    .faq-toggle {
        display: none;
    }
}