/* FAQ Page Redesign Styles */
#app {
    padding-top: 0px!important;
}

.faq-page {
    background-color: #ffffff;
    min-height: 100vh;
    padding: 20px 0;
}

.breadscrumb__list {
    list-style-type: none;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 60px;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadscrumb__list li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: 5px;
    color: #999999;
    white-space: nowrap;
}

.breadscrumb__list li:last-child a {
    color: #191E1D;
}

.breadscrumb__list img {
    margin-right: 5px;
}

.elipsis {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #D9D9D9;
    margin-right: 5px;
}

.active {
    display: flex;
    align-items: center;
    color: #495057;
}

.active .elipsis {
    margin-left: 5px;
}

/* FAQ Header */
.faq-header {
    margin-bottom: 40px;
}

.faq-title {
    width: 100%;
    max-width: 1320px;
    height: 52px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 52px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #191E1D;
    margin: 0;
}

/* Search and Filter Section - Updated to match design system specs */
.faq-search-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 0px;
    width: 100%;
    height: 180px;
    background: #F8F8F8;
    border-radius: 12px;
    margin: 0 auto;
    box-sizing: border-box;
}

.search-container {
    width: 100%;
    margin-bottom: 25px;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 32px 4px 32px 36px;
    gap: 24px;
    height: 72px;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 120px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #999999;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #999999;
    font-weight: 600;
}

.search-input:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 24px;
    gap: 24px;
    width: 64px;
    height: 64px;
    background: rgba(39, 151, 96, 0.1);
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #279760;
}

.search-btn:hover {
    background-color: rgba(39, 151, 96, 0.15);
    transform: translateY(-50%) scale(1.03);
}

/* Category Filters - Updated to match design system specs */
.category-filters {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 5px;
    width: auto;
    height: 38px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.filter-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px;
    gap: 6px;
    background: #E9E9E9;
    border-radius: 60px;
    border: none;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #191E1D;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: 38px;
}

.filter-btn.active {
    background: #279760;
    color: #FFFFFF;
}

.filter-btn:hover {
    background-color: #dee2e6;
    transform: translateY(-2px);
}

/* FAQ Content - Updated to match design system specs */
.faq-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 0px 0px;
    gap: 30px;
    height: auto;
    margin: 0 auto;
    box-sizing: border-box;
}

.faq-content-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    width: 100%;
    height: 48px;
}

/* Questions list (table of contents) */
.faq-toc {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px 16px;
}

.faq-toc li a {
    display: block;
    padding: 10px 14px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    background: #fff;
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
}

.faq-toc li a:hover {
    border-color: #28a745;
    color: #28a745;
    box-shadow: 0 2px 10px rgba(40,167,69,.12);
}

.faq-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.faq-content-title {
    width: 239px;
    height: 40px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #191E1D;
    margin: 0;
}

.ask-question-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    gap: 24px;
    width: 164px;
    height: 48px;
    background: #279760;
    border: none;
    border-radius: 60px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ask-question-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* FAQ Accordion - Updated to match design system specs */
.faq-accordion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 100%;
    height: auto;
}

/* Ensure proper accordion animation */
details.faq-item {
    display: block;
    width: 100%;
    margin: 0 auto 0 0;
    border-bottom: 1px solid #E1E1E1;
}

/* Smooth animation for opening/closing */
details.faq-item[open] .faq-answer {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure the answer is hidden by default and shows when details is open */
details.faq-item:not([open]) .faq-answer {
    display: none;
}

details.faq-item[open] .faq-answer {
    display: block;
}

summary.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    cursor: pointer;
    list-style: none;
    transition: all 0.3s ease;
}

summary.faq-question::-webkit-details-marker {
    display: none;
}

summary.faq-question::after {
    content: "+";
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #191E1D;
    font-weight: 400;
    font-size: 20px;
    flex-shrink: 0;
}

details[open] summary.faq-question::after {
    content: "−";
}

.faq-answer {
    padding: 0 0 30px 0;
    background: transparent;
}

.answer-content {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #191E1D;
    padding: 0;
}

/* Load More Button - Updated to match design system specs */
.load-more-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    gap: 10px;
    width: 100%;
    height: 88px;
}

.load-more-btn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    gap: 5px;
    width: 163px;
    height: 48px;
    border: 1px solid #E8E8E8;
    border-radius: 60px;
    background: transparent;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    text-align: center;
    color: #191E1D;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background-color: #f8f9fa;
    border-color: #28a745;
    color: #28a745;
    transform: translateY(-2px);
}

/* Consultation Form Container - Updated to match design system specs */
.consultation-form-container {
    position: absolute;
    width: 762px;
    height: 510px;
    right: -20px;
    top: 0;
    z-index: 2;
}

.consultation-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    padding: 30px;
    gap: 20px;
    isolation: isolate;
    width: 100%;
    height: 100%;
    background: #F8F8F8;
    box-sizing: border-box;
}

/* Bottom consultation block layout - Updated to match design system specs */
.consultation-block {
    position: relative;
    width: 100%;
    height: 510px;
    margin: 0 auto;
    background: #FFFFFF;
    overflow: hidden;
    background-image: url('/assets/img/contacts-line.png');
    background-repeat: no-repeat;
    background-position-y: bottom;
    background-size: contain;
    margin-bottom: 100px;
}

.consultation-hero-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #191E1D;
    z-index: 2;
}

.consultation-hero-subtitle {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #191E1D;
    z-index: 2;
    margin-top: 54px;
}

.consultation-hero-decoration {
    position: absolute;
    height: 4px;
    width: 60%;
    background: linear-gradient(90deg, #1e7e34 0%, #2ca24f 100%);
    border-radius: 2px;
    left: 60px;
    top: 320px;
    z-index: 2;
}

.consultation-form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #191E1D;
    margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #999999;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    padding: 24px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-input,
.form-select {
    width: 340px;
    height: 64px;
}

.form-textarea {
    width: 700px;
    height: 120px;
    resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #279760;
    box-shadow: 0 0 0 3px rgba(39, 151, 96, 0.1);
}

.submit-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 24px;
    gap: 24px;
    width: 241px;
    height: 64px;
    background: #279760;
    border: none;
    border-radius: 60px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 151, 96, 0.3);
}

.privacy-text {
    position: absolute;
    width: 441px;
    height: 34px;
    left: 291px;
    top: 434px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 120%;
    color: #191E1D;
    opacity: 0.3;
    margin: 0;
}

/* Decorative Lines */
.decorative-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.line {
    position: absolute;
    background-color: #28a745;
    border-radius: 2px;
}

.line-1 {
    width: 4px;
    height: 200px;
    top: 50%;
    left: -20px;
    transform: rotate(15deg);
    opacity: 0.8;
}

.line-2 {
    width: 4px;
    height: 150px;
    top: 30%;
    left: -10px;
    transform: rotate(-10deg);
    opacity: 0.6;
}

/* Responsive Design - Updated for new layout specs */
@media (max-width: 1440px) {
    .faq-search-section {
        width: 100%;
        max-width: 1320px;
    }
}

@media (max-width: 768px) {
    .faq-page {
        padding: 15px 0;
    }
    
    .breadscrumb__list {
        margin-top: 15px;
        margin-bottom: 30px;
        gap: 3px;
    }
    
    .breadscrumb__list li a {
        font-size: 11px;
        margin-left: 3px;
    }
    
    .breadscrumb__list img {
        width: 10px;
        height: 10px;
        margin-right: 3px;
    }
    
    .faq-title {
        font-size: 28px;
        height: auto;
        line-height: 120%;
        margin-bottom: 20px;
    }
    
    .faq-search-section {
        width: 100%;
        height: auto;
        padding: 16px;
        gap: 16px;
    }
    
    .search-input-wrapper {
        max-width: 100%;
    }
    
    .search-input {
        padding: 24px 4px 24px 24px;
        height: 60px;
        font-size: 14px;
    }
    
    .search-btn {
        width: 52px;
        height: 52px;
        right: 2px;
    }
    
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px;
        gap: 8px;
        height: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .filter-btn {
        flex-shrink: 0;
        padding: 10px 14px;
        font-size: 12px;
        white-space: nowrap;
        height: 36px;
    }
    
    .faq-content {
        padding: 60px 0px 0px;
        gap: 20px;
    }
    
    .faq-content-header {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 15px;
    }
    
    .faq-content-title {
        width: auto;
        height: auto;
        font-size: 28px;
    }
    
    .ask-question-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .consultation-form {
        padding: 20px;
    }
    
    .consultation-title {
        font-size: 1.3rem;
    }
    
    .decorative-lines {
        display: none;
    }
}

@media (max-width: 576px) {
    .faq-page {
        padding: 10px 0;
    }
    
    .faq-page .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .breadscrumb__list {
        margin-top: 10px;
        margin-bottom: 20px;
    }
    
    .breadscrumb__list li a {
        font-size: 10px;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-search-section {
        padding: 12px;
        gap: 12px;
    }
    
    .search-input-wrapper {
        max-width: 100%;
    }
    
    .search-input {
        padding: 20px 4px 20px 20px;
        height: 56px;
        font-size: 14px;
    }
    
    .search-btn {
        width: 48px;
        height: 48px;
        padding: 16px;
    }
    
    .category-filters {
        gap: 6px;
        padding-bottom: 8px;
    }
    
    .filter-btn {
        padding: 8px 12px;
        font-size: 11px;
        height: 32px;
    }
    
    .faq-content {
        padding: 40px 0px 0px;
        gap: 15px;
    }
    
    .faq-content-title {
        font-size: 24px;
    }
    
    .ask-question-btn {
        width: 100%;
        font-size: 14px;
        padding: 14px 20px;
        height: 44px;
    }
    
    .question-text {
        font-size: 14px;
    }
    
    summary.faq-question {
        padding: 20px 0;
    }
    
    .faq-answer {
        padding: 0 0 20px 0;
    }
    
    .consultation-form {
        padding: 15px;
    }
}

/* Animation for FAQ items */
details.faq-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

details.faq-item.hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

/* Smooth transitions for accordion */
.collapse {
    transition: height 0.3s ease;
}

.collapsing {
    transition: height 0.3s ease;
}

/* Custom scrollbar for category filters */
.category-filters::-webkit-scrollbar {
    height: 4px;
}

.category-filters::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.category-filters::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 2px;
}

.category-filters::-webkit-scrollbar-thumb:hover {
    background: #218838;
}

/* Additional enhancements */
.faq-page {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.faq-page * {
    font-family: inherit;
}

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.search-input:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.filter-btn:focus,
.ask-question-btn:focus,
.submit-btn:focus {
    outline: 2px solid #28a745;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success states */
.success {
    background-color: #d4edda !important;
    border-color: #c3e6cb !important;
    color: #155724 !important;
}

/* Error states */
.error {
    background-color: #f8d7da !important;
    border-color: #f5c6cb !important;
    color: #721c24 !important;
}

.question-text {
    color: #191E1D;
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
}

/* Hover effects for better UX */
.faq-item:hover .question-text {
    color: #191E1D;
    opacity: 0.3;
}

.filter-btn:hover {
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.ask-question-btn:hover {
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3);
}

.submit-btn:hover {
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3);
}

/* Print styles */
@media print {
    .consultation-form-container,
    .ask-question-btn,
    .load-more-container {
        display: none !important;
    }
    
    .faq-page {
        background: white !important;
    }
    
    .faq-item {
        break-inside: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .faq-title,
    .question-text {
        color: #000000;
    }
    
    .filter-btn.active {
        background-color: #000000;
        color: #ffffff;
    }
    
    .search-input,
    .form-input,
    .form-select,
    .form-textarea {
        border-color: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-container {
    position: relative;
    width: 520px;
    height: auto;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-close-btn:hover {
    background-color: #e9ecef;
    transform: scale(1.05);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #191E1D;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.field-label {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #191E1D;
    margin-bottom: 10px;
}

.field-input {
    width: 100%;
    height: 56px;
    padding: 18px;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #191E1D;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field-input::placeholder {
    color: #999999;
    font-weight: 600;
}

.field-input:focus {
    outline: none;
    border-color: #279760;
    box-shadow: 0 0 0 3px rgba(39, 151, 96, 0.1);
}

.field-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23999999' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 18px center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    cursor: pointer;
}

.field-textarea {
    height: 100px;
    resize: vertical;
    min-height: 100px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.submit-button {
    width: 160px;
    height: 50px;
    background-color: #279760;
    color: #FFFFFF;
    border: none;
    border-radius: 60px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.submit-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 151, 96, 0.3);
}

.privacy-notice {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    color: #222B45;
    line-height: 16px;
    margin: 0;
    flex: 1;
}

.privacy-notice a {
    color: #279760;
    text-decoration: none;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-container {
        width: 90%;
        height: auto;
        max-height: 90vh;
        padding: 20px;
        min-height: auto;
    }
    
    .modal-close-btn {
        top: 8px;
        right: 8px;
        width: 35px;
        height: 35px;
    }
    
    .modal-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .form-fields {
        gap: 18px;
    }
    
    .field-input {
        height: 50px;
        padding: 16px;
        font-size: 14px;
    }
    
    .field-textarea {
        height: 90px;
        min-height: 90px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .submit-button {
        width: 100%;
        height: 48px;
        font-size: 14px;
    }
    
    .privacy-notice {
        text-align: center;
        font-size: 11px;
        line-height: 14px;
    }
}
