 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, Helvetica, sans-serif;
    }


    /* Section Header */
    .contact-us-section-header {
        background-color:#14B8A6;
        color: white;
        text-align: center;
        padding: 18px;
        font-size: 22px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    /* Container */
    .contact-us-contact-container {
        max-width: 1100px;
        margin: 40px auto;
        display: flex;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        overflow: hidden;
    }


/* Left Panel */
.contact-info {
    flex: 1;
    padding: 40px;
    background-color:#14B8A6;
    /*background: linear-gradient(90deg, #0F766E, #14B8A6); /* MATCHED */*/
    color: white;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    transition: 0.3s ease;
}

/* Updated hover color to match teal theme */
.info-item:hover .info-icon {
    background: white;
    color: #0F766E;
}

    .contact-info h2 {
        margin-bottom: 30px;
        font-size: 22px;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
        font-size: 14px;
        line-height: 1.6;
    }

    .info-text span {
        font-weight: bold;
        display: block;
        margin-bottom: 3px;
    }

    /* Right Panel */
    .contact-form {
        flex: 1.5;
        padding: 40px;
    }

    .contact-form h2 {
        margin-bottom: 25px;
        color: #1F2937;
        font-size: 22px;
    }

    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 12px;
        border: 1px solid #E5E7EB;
        border-radius: 6px;
        font-size: 14px;
        transition: 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: #14B8A6;
        outline: none;
        box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.15);
    }

    textarea {
        resize: none;
        min-height: 120px;
    }

    /* Button */
    .contact-us-btn {
        background: #15803D;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        transition: 0.3s ease;
        margin-top: 10px;
    }

    .contact-us-btn:hover {
        background: #166534;
    }

    /* Responsive */
    @media (max-width: 900px) {
        .contact-us-contact-container {
            flex-direction: column;
        }

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