/* FAQ Section Styles */
.faq-section {
    margin-top: 60px;
    padding: 40px 0;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #2d2d2d;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    user-select: none;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    flex: 1;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 20px 20px 20px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

/* Footer Styles */
.main-footer {
    background-color: #2d2d2d;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-section h3 {
    font-size: 24px;
}

.footer-section h4 {
    font-size: 18px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

/* Language Selector with Flag Images - Custom Dropdown Style */
.language-selector {
    position: relative;
}

.language-dropdown {
    padding: 10px 40px 10px 10px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
    cursor: pointer;
    font-size: 14px;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1 1L6 6L11 1" stroke="%23333" stroke-width="2" stroke-linecap="round"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* Note: HTML select options don't support images natively
   For better UX, consider using a custom dropdown library
   or show flags as emoji/text prefix */

@media (max-width: 768px) {
    .faq-title {
        font-size: 24px;
    }
    
    .faq-question span {
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

