    body {
        font-family: 'Droid Serif',  sans-serif;
        line-height: 1.6;
        color: #333;
    }

    /* Container */
    .vol-container {
        max-width: 1100px;
        margin: 50px auto;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin-top: 30px;
    }

    /* Header Section */
    .header {
        background:linear-gradient(
    141deg, #00BC7D 0%, #009689 100%);
        color: white;
        padding: 40px 30px;
        /* text-align: center; */
    }

    .header h1 {
        font-size: 28px;
        font-weight: 600;
        /* margin-bottom: 15px; */
    }

    .header p {
        font-size: 15px;
        line-height: 1.6;
        opacity: 0.95;
        margin-bottom: 10px;
    }

    /* Form Content */
    .form-content {
        padding: 40px 230px;
    
    }

    .form-section {
        margin-bottom: 35px;
        background: #F9FAFB;
        padding: 10px 10px;
        border-radius: 11px;
        
    }

    .form-section h2 {
        font-size: 18px;
        font-weight: 600;
        color: #2d3436;
        margin-bottom: 15px;
    }

    .form-section p {
        font-size: 13px;
        color: #636e72;
        margin-bottom: 15px;
        font-style: italic;
    }

    /* Checkbox Group */
    .checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .checkbox-item {
        display: flex;
        align-items: center;
        padding: 14px 18px;
        border: 1px solid #dfe6e9;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        background:#F9FAFB;
    }

    .checkbox-item:hover {
        border-color: #00b894;
        background: #f8fffe;
    }

    .checkbox-item input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-right: 12px;
        cursor: pointer;
        accent-color: #00b894;
    }

    .checkbox-item label {
        cursor: pointer;
        font-size: 15px;
        color: #2d3436;
        flex: 1;
    }

    /* Text Input Group */
    .text-input-group {
        margin-top: 15px;
    }

    .text-input {
        width: 100%;
        padding: 14px 18px;
        border: 1px solid #dfe6e9;
        border-radius: 8px;
        font-size: 15px;
        font-family: inherit;
        transition: all 0.3s ease;
        resize: vertical;
    }

    .text-input:focus {
        outline: none;
        border-color: #00b894;
        box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.1);
    }

    .text-input.textarea {
        min-height: 120px;
    }

    .emoji-hint {
        display: flex;
        gap: 8px;
        margin-top: 8px;
        font-size: 18px;
    }

    /* Submit Section */
    .submit-section {
        margin-top: 40px;
        text-align: center;
    }

    .submit-btn {
        width: 100%;
        padding: 16px;
        background: linear-gradient(135deg, #009966 0%, #009689 100%);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 184, 148, 0.4);
    }

    .submit-btn:active {
        transform: translateY(0);
    }

    .clear-btn {
        background: none;
        border: none;
        color: #636e72;
        font-size: 14px;
        cursor: pointer;
        margin-top: 15px;
        text-decoration: underline;
    }

    .clear-btn:hover {
        color: #2d3436;
    }

    /* Footer Note */
    .footer-note {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-top: 20px;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
        font-size: 13px;
        color: #636e72;
    }

    .footer-note svg {
        flex-shrink: 0;
        margin-top: 2px;
    }

    /* Modal Overlay */
    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        animation: fadeIn 0.3s ease;
        
    }

    .modal-overlay.active {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        align-content: center

    
    }

    /* Modal */
    .modal {
        background: white;
        border-radius: 12px;
        padding: 50px 40px;
        max-width: 500px;
        width: 100%;
        position: relative;
        text-align: center;
        animation: slideUp 0.4s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        
    
    }

    .modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        color: #b2bec3;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
    }

    .modal-close:hover {
        color: #636e72;
    }

    .modal-icon {
        width: 80px;
        height: 80px;
        background: #00b894;
        border-radius: 50%;
        margin: 0 auto 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-icon svg {
        width: 40px;
        height: 40px;
    }

    .modal h2 {
        font-size: 26px;
        color: #2d3436;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .modal p {
        font-size: 15px;
        color: #636e72;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* Modal Buttons */
    .modal-buttons {
        margin-top: 35px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .modal-btn {
        padding: 14px 30px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
    }

    .modal-btn-primary {
        background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
    }

    .modal-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 184, 148, 0.4);
    }

    .modal-btn-secondary {
        background: white;
        color: #00b894;
        border: none;
    }

    .modal-btn-secondary:hover {
        text-decoration: underline;
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @keyframes slideUp {
        from {
            transform: translateY(30px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Responsive Design for Tablets */
    @media (max-width: 768px) {
        body {
            padding: 10px;
        }

        .header {
            padding: 30px 20px;
        }

        .header h1 {
            font-size: 24px;
        }

        .header p {
            font-size: 14px;
        }

        .form-content {
            padding: 30px 20px;
        }

        .form-section h2 {
            font-size: 17px;
        }

        .checkbox-item {
            padding: 12px 15px;
        }

        .modal {
            padding: 40px 30px;
        }

        .modal h2 {
            font-size: 22px;
        }
    }

    /* Responsive Design for Mobile */
    @media (max-width: 480px) {
        .header h1 {
            font-size: 22px;
        }

        .form-section h2 {
            font-size: 16px;
        }

        .checkbox-item label {
            font-size: 14px;
        }

        .modal {
            padding: 35px 25px;
        }

        .modal-icon {
            width: 70px;
            height: 70px;
        }

        .modal-icon svg {
            width: 35px;
            height: 35px;
        }

        .modal h2 {
            font-size: 20px;
        }

        .modal p {
            font-size: 14px;
        }
    }


    /* ============================================= */

    /* =============================================================== */
    /* Newsletter Section */
    .newsletter-section {
        background:linear-gradient(90deg, #014994 0%, #45b876 100%);
        padding: 30px;
        border-radius: 8px;
        margin-bottom: 40px;
        color: white;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
        width: 95%;
        margin: auto;
    }

    .newsletter-left {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-title {
        font-size: 24px;
        margin: 0;
        font-weight: bold;
    }

    .newsletter-text {
        font-size: 14px;
        margin: 0;
        opacity: 0.95;
        line-height: 1.5;
    }

    .newsletter-right {
        display: flex;
        justify-content: flex-end;
    }

    .newsletter-form {
        display: flex;
        gap: 10px;
        width: 100%;
            background: white;
        padding: 4px;
        border-radius: 5px;
    }

    .email-input {
        flex: 1;
        padding: 12px 16px;
        border: none;
        border-radius: 4px;
        font-size: 14px;
        outline: none;
    }

    .email-input:focus {
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    }

    .subscribe-btn {
        padding: 12px 24px;
        background:#2abf60;
        color: white;
        border: none;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
        white-space: nowrap;
    }

    .subscribe-btn:hover {
        background: #0f4028;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .newsletter-section {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 20px;
        }

        .newsletter-right {
            justify-content: stretch;
        }

        .newsletter-title {
            font-size: 20px;
        }

        .newsletter-text {
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .newsletter-section {
            padding: 20px;
        }

        .newsletter-form {
            flex-direction: column;
        }

        .subscribe-btn {
            width: 100%;
        }

        .newsletter-title {
            font-size: 18px;
        }
    }
    h1 {
        font-size: 2rem !important;
    }

    p {
        font-size: 17px !important;
    }

    /* ── FIX: radio buttons in situation section match checkbox style ── */
    .checkbox-item input[type="radio"] {
        width: 18px;
        height: 18px;
        margin-right: 12px;
        cursor: pointer;
        accent-color: #00b894;
    }