/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.faq-item {
    margin-bottom: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    padding-left: 30px;
}

.faq-question::before {
    content: "Q:";
    position: absolute;
    left: 0;
    top: 0;
    color: #60c6c7;
    font-weight: 700;
    font-size: 20px;
}

.faq-answer {
    padding-left: 30px;
    position: relative;
}

.faq-answer::before {
    content: "A:";
    position: absolute;
    left: 0;
    top: 0;
    color: #60c6c7;
    font-weight: 700;
    font-size: 16px;
}

.faq-answer p {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #333;
    font-weight: 600;
}

.faq-answer ul, .faq-answer ol {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.faq-answer li strong {
    color: #333;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .faq-item {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 20px;
        padding-left: 25px;
    }
    
    .faq-question::before {
        font-size: 18px;
    }
    
    .faq-answer {
        padding-left: 25px;
    }
    
    .faq-answer::before {
        font-size: 14px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-answer li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .faq-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .faq-question {
        font-size: 18px;
        padding-left: 20px;
    }
    
    .faq-question::before {
        font-size: 16px;
    }
    
    .faq-answer {
        padding-left: 20px;
    }
    
    .faq-answer::before {
        font-size: 12px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .faq-answer li {
        font-size: 14px;
    }
}
