/* Contact Page Specific Styles - Green Theme */
.contact-page {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--font-default);
}

/* Color Variables - Green Theme */
:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --accent-color: #059669;
    --accent-light: #34d399;
    --heading-color: #1f2937;
    --text-light: #6b7280;
    --default-color: #374151;
    --background-color: #ffffff;
    --light-background: #f9fafb;
    --dark-background: #065f46;
    --border-color: #e1e5e9;
    --border-dark: #d1d5db;
    --font-default: "Inter", sans-serif;
}

.dark-background {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
}

.light-background {
    background-color: var(--light-background);
}

/* Section Base Styles */
.section {
    padding: 60px 0;
}

/* Page Header */
.contact-header {
    padding: 130px 0 60px;
    position: relative;
    overflow: hidden;
}

.contact-header .page-header-content {
    position: relative;
    z-index: 2;
    margin-top: -70px;
}

.page-badge {
    display: inline-block;
    padding: 8px 20px;
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    line-height: 1.2;
}

.contact-header .lead {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.header-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);

}

.btn-primary {
   background: #169665;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, #169665, transparent 5%);
  color: var(--contrast-color);
}

.btn-primary:hover {
   background: #169665;
  transform: translateY(-2px);
  box-shadow: 0 18px 205px color-mix(in srgb, white, transparent 5%);
  color: var(--contrast-color);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
   background: color-mix(in srgb, var(--contrast-color), transparent 5%);
  box-shadow: 0 18px 205px color-mix(in srgb, white, transparent 5%);
  transform: translateX(5px);
  color: #065f46;
}

.header-visual {
    position: relative;
    text-align: center;
}

.header-visual img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Contact Info - Enhanced Cards */
.contact-info {
    padding: 60px 0;
}

.info-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
    border-color: var(--primary-light);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    border: 2px solid white;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--heading-color);
    position: relative;
}

.info-card h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.location-item, .contact-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.location-item:hover, .contact-item:hover {
    background: #f8fafc;
    margin-left: -5px;
    margin-right: -5px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 6px;
}

.location-item:last-child, .contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.location-item h5, .contact-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.location-item p, .contact-item a {
    color: var(--text-light);
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.info-note {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 5px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.response-time, .working-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #f0fdf4, #f8fafc);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.response-time i, .working-hours i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Contact Form Section - Enhanced */
.contact-form-section {
    padding: 60px 0;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-dark);
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px 15px 0 0;
}

.form-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
}

.form-header .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
}

.form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.form-header p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--heading-color);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-icon {
    position: absolute;
    right: 15px;
    top: 40px;
    color: var(--text-light);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.form-control:focus + .form-icon {
    color: var(--primary-color);
}

.textarea-icon {
    top: 15px;
    transform: none;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-check-input {
    margin-top: 0.2em;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    padding: 15px;
    background: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #dcfce7;
}

.form-footer p {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.form-footer i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Sidebar Info - Enhanced */
.sidebar-info {
    position: sticky;
    top: 100px;
}

.info-widget {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-dark);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.info-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.info-widget:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.info-widget:last-child {
    margin-bottom: 0;
}

.info-widget h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color);
    position: relative;
    padding-bottom: 8px;
}

.info-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.info-widget p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.quick-link:hover {
    border-color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.quick-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.quick-link.phone:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.quick-link.email:hover {
    background: #EA4335;
    border-color: #EA4335;
    color: white;
}

.quick-link i {
    font-size: 1.25rem;
    width: 20px;
    transition: transform 0.3s ease;
}

.quick-link:hover i {
    transform: scale(1.2);
}

.quick-link div span {
    display: block;
    font-weight: 600;
    color: var(--heading-color);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.quick-link div small {
    color: var(--text-light);
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.quick-link:hover div span,
.quick-link:hover div small {
    color: white;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-item:hover {
    background: #f0fdf4;
    border-color: #dcfce7;
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.benefit-item span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.hour-item:hover {
    background: #f8fafc;
    padding-left: 12px;
    padding-right: 12px;
}

.hour-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.hour-item span:first-child {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.hour-item span:last-child {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.hour-item.emergency {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: 12px;
    margin-top: 8px;
}

.hour-item.emergency span:last-child {
    color: #dc2626;
    font-weight: 600;
}

/* Map Section - Enhanced */
.map-section {
    padding: 60px 0;
    margin-top: -35px;
}

.section-title {
    margin-bottom: 40px;
}

.section-title .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.section-title p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    margin-top: 40px;
}

.location-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-dark);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card.active::before,
.location-card:hover::before {
    opacity: 1;
}

.location-card.active,
.location-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
}

.location-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.location-header i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.location-header h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: var(--heading-color);
}

.location-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.location-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.location-meta span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.location-meta i {
    color: var(--primary-color);
}

.btn-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-location:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
    color: white;
}

.map-wrapper {
    margin-top: 30px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-dark);
}

.map-placeholder {
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.map-placeholder h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.map-placeholder p {
    margin-bottom: 20px;
}

.map-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-map {
    padding: 10px 18px;
    background: white;
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    font-weight: 500;
}

.btn-map:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* FAQ Section - Enhanced */
.contact-faq {
    padding: 60px 0;
    margin-top: -35px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.faq-question:hover {
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
    border-bottom: 1px solid var(--primary-light);
}

.faq-question h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--heading-color);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ???????? form */
/* Message containers for both forms */
/* Message containers for both forms */
.message-container,
.message-container-lead {
  display: none;
  padding: 12px;
  margin: 10px 0;
  border-radius: 5px;
  text-align: center;
}

.message-container.loading,
.message-container-lead.loading {
  display: block;
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid #bbdefb;
}

.message-container.success,
.message-container-lead.success {
  display: block;
  background: #e8f5e8;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.message-container.error,
.message-container-lead.error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

/* Button loading states */
.btn-loading {
  display: none;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
/* Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .contact-header {
        padding: 80px 0 40px;
        text-align: center;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .header-actions {
        justify-content: center;
    }
    
    .form-container {
        padding: 30px 25px;
    }
    
    .sidebar-info {
        position: static;
        margin-top: 40px;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-map {
        width: 200px;
    }
    
    .info-card,
    .form-container,
    .info-widget,
    .location-card {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    
    .info-card:hover,
    .location-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(16, 185, 129, 0.12);
    }
}

@media (max-width: 576px) {
    .section {
        padding: 40px 0;
    }
    
    .contact-header {
        padding: 70px 0 30px;
    }
    
    .contact-header h1 {
        font-size: 1.75rem;
    }
    
    .header-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .quick-link {
        padding: 12px;
    }
    
    .location-card,
    .info-card {
        padding: 20px 15px;
    }
}
/* FAQ Section Styles */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item.active {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
    padding-right: 20px;
}

.faq-question .bi {
    transition: transform 0.3s ease;
    color: #007bff;
    font-size: 18px;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 200px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
    font-size: 14px;
}

/* Smooth opening animation */
.faq-answer {
    display: block !important; /* Override the inline display:none */
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust based on your content */
    opacity: 1;
}