.fw-logo img {
    max-height: 118px !important;
}
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

        .contect_body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #e0f2f1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            color: #333333;
        }

        .contact_page_form-container {
            max-width: 1000px;
            width: 90%;
            background-color: #ffffff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: transform 0.3s ease-in-out;
            margin: 50px auto;
        }

        .contact_page_form-container:hover {
            transform: translateY(-5px);
        }
        
        @media (min-width: 768px) {
            .contact_page_form-container {
                flex-direction: row;
            }
        }

        .contact_page_form-left-panel {
            flex: 1;
            background-color: #004d40;
            padding: 40px 30px;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .contact_page_form-field {
            margin-bottom: 20px;
        }

        .contact_page_form-label {
            font-size: 14px;
            margin-bottom: 5px;
            display: block;
            color: #e0e0e0;
            font-weight: 600;
        }

        .contact_page_form-input,
        .contact_page_form-select,
        .contact_page_form-textarea {
            width: 100%;
            padding: 12px;
            border: none;
            background-color: #00695c;
            color: #ffffff;
            border-radius: 8px;
            font-size: 16px;
            box-sizing: border-box;
            outline: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            transition: all 0.3s ease;
        }
        
        .contact_page_form-input:focus,
        .contact_page_form-select:focus,
        .contact_page_form-textarea:focus {
            box-shadow: 0 0 0 3px rgba(0, 182, 165, 0.5);
        }

        .contact_page_form-input::placeholder,
        .contact_page_form-textarea::placeholder {
            color: #e0e0e0;
        }

        .contact_page_form-select {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1em center;
            background-size: 0.8em;
        }
        
        .contact_page_form-select option {
            background-color: #004d40;
            color: #ffffff;
        }

        .contact_page_form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .contact_page_form-submit-btn {
            width: 100%;
            padding: 15px 20px;
            background-color: #00bfa5;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .contact_page_form-submit-btn:hover {
            background-color: #009688;
            transform: translateY(-2px);
        }
        
        .contact_page_form-submit-icon {
            margin-right: 10px;
            font-size: 20px;
        }

        .contact_page_form-right-panel {
            flex: 1.5;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

        .contact_page_form-contact-label {
            background-color: #eceff1;
            color: #666666;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .contact_page_form-contact-label i {
            margin-right: 8px;
            font-size: 16px;
        }

        .contact_page_form-title {
            font-size: 40px;
            font-weight: 700;
            margin: 0;
            margin-bottom: 10px;
        }

        .contact_page_form-subtitle {
            font-size: 18px;
            font-weight: 600;
            color: #004d40;
        }

        .contact_page_form-description {
            font-size: 16px;
            line-height: 1.6;
            color: #666666;
            margin: 20px 0;
        }

        .contact_page_form-info-items {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        
        .contact_page_form-info-item {
            display: flex;
            align-items: flex-start;
        }
        
        .contact_page_form-info-item.contact_page_form-address-item {
            align-items: flex-start;
        }
        
        .contact_page_form-info-text {
            font-size: 16px;
            font-weight: 600;
            color: #333333;
            max-width: 250px;
            line-height: 1.5;
        }

        .contact_page_form-info-icon {
            width: 40px;
            height: 40px;
            background-color: #eceff1;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            color: #004d40;
            font-size: 18px;
            flex-shrink: 0;
        }

        .contact_page_form-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background-color: #ffffff;
            border-radius: 50% 50% 0 0;
            transform: translateY(50%);
        }
        
        @media (min-width: 768px) {
            .contact_page_form-wave {
                display: none;
            }
            .contact_page_form-info-items {
                flex-direction: column;
                gap: 20px;
            }
            .contact_page_form-info-item {
                display: flex;
                align-items: center;
            }
            .contact_page_form-info-item.contact_page_form-address-item {
                align-items: flex-start;
            }
        }

        @media (max-width: 767px) {
            .contact_page_form-container {
                padding: 20px;
                box-shadow: none;
                border-radius: 0;
            }
            .contact_page_form-info-item.contact_page_form-address-item {
                align-items: flex-start;
            }
        }

        /* Modal specific styles */
        .contact_page_form-modal {
            display: none; /* Hidden by default */
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        .contact_page_form-modal-show {
            display: flex;
            opacity: 1;
        }

        .contact_page_form-modal-content {
            background-color: #ffffff;
            margin: auto;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            animation: contact_page_form-bounce-in 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }

        @keyframes contact_page_form-bounce-in {
            0% {
                transform: scale(0.5);
                opacity: 0;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        .contact_page_form-modal-icon {
            font-size: 60px;
            color: #00bfa5;
            margin-bottom: 20px;
            animation: contact_page_form-scale-up 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
            animation-delay: 0.2s;
        }

        @keyframes contact_page_form-scale-up {
            0% {
                transform: scale(0);
            }
            100% {
                transform: scale(1);
            }
        }

        .contact_page_form-modal-title {
            font-size: 24px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 10px;
        }

        .contact_page_form-modal-message {
            font-size: 18px;
            color: #666666;
        }