/* FAQ Section */
.safe-faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.safe-faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #1f2937;
}

.safe-faq-title .safe-highlight {
    color: #6366f1;
}

.safe-faq-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.safe-faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.safe-faq-category {
    padding: 12px 16px;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.safe-faq-category:hover {
    background: #f3f4f6;
}

.safe-faq-category.safe-active {
    background: #eef2ff;
    color: #6366f1;
    font-weight: 600;
    position: relative;
}

.safe-faq-category.safe-active::before {
    content: '▶';
    position: absolute;
    left: 0;
    font-size: 0.7rem;
}

.safe-faq-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.safe-faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.safe-faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #1f2937;
    font-size: 0.95rem;
}

.safe-faq-question:hover {
    background: #fafafa;
}

.safe-faq-icon {
    font-size: 1.2rem;
    color: #6b7280;
    transition: transform 0.3s;
}

.safe-faq-item.safe-open .safe-faq-icon {
    transform: rotate(45deg);
}

.safe-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

.safe-faq-item.safe-open .safe-faq-answer {
    padding: 0 20px 18px 20px;
    max-height: 200px;
}

/* Contact Form Section */
.safe-contact-section {
    background: white;
    padding: 60px 40px;
    margin-top: 60px;
}

.safe-contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.safe-contact-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.safe-contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 40px;
}

.safe-form-group {
    margin-bottom: 25px;
}

.safe-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.safe-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
}

.safe-form-input:focus {
    outline: none;
    border-color: #6366f1;
}

.safe-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

.safe-form-textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.safe-char-count {
    text-align: right;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 5px;
}

.safe-submit-btn {
    padding: 14px 32px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.safe-submit-btn:hover {
    background: #4f46e5;
}

/* Responsive */
@media (max-width: 768px) {
    .safe-faq-container {
        grid-template-columns: 1fr;
    }
}
