    /* Clean CSS with simple container system */
    :root {
        /* SECTION-SPECIFIC VARIABLES */
        --contact-us-primary: #fbc430;
        --contact-us-primary-hover: #e0af2b;
        --contact-us-heading-color: #383455;
        --contact-us-text-color: #303030;
        --contact-us-light-text: #5b5b5b;
        --contact-us-white: #ffffff;
        --contact-us-light-bg: #f7f7f7;
        --contact-us-border-color: #d4d4d4;
        --contact-us-overlay: rgba(0, 0, 0, 0.6);

        /* Fonts */
        --contact-us-body-font: "Inter", sans-serif;
        --contact-us-heading-font: "Montserrat", sans-serif;

        /* Container variables */
        --container-max-width: 1200px;
        --container-padding-left: 15px;
        --container-padding-right: 15px;
    }

    /* Alert Styles */
    .alert {
        padding: 16px 20px;
        border-radius: 8px;
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 1.5;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .alert-success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }

    .alert-success::before {
        content: "✓";
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        background-color: #28a745;
        color: white;
        border-radius: 50%;
        font-weight: bold;
        font-size: 14px;
        flex-shrink: 0;
    }

    .alert-error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }

    .alert-error::before {
        content: "!";
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        background-color: #dc3545;
        color: white;
        border-radius: 50%;
        font-weight: bold;
        font-size: 14px;
        flex-shrink: 0;
    }

    /* Reset & Base Styles */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: var(--contact-us-body-font);
        color: var(--contact-us-text-color);
        background-color: var(--contact-us-white);
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    p {
        margin: 0;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    /* Container System */
    .container {
        max-width: 1200px;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    /* --- Hero Section --- */
    .contact-hero {
        position: relative;
        width: 100%;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url("../images/hero-certi.png");
        /* Adjusted path */
        background-size: cover;
        background-position: center;
        text-align: center;
    }

    .contact-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--contact-us-overlay);
        z-index: 1;
    }

    .contact-hero .container {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contact-hero h1 {
        font-family: var(--contact-us-heading-font);
        font-weight: 600;
        font-size: 50px;
        line-height: 1.22;
        color: var(--contact-us-primary);
    }

    /* --- Info Section --- */
    .info-section {
        padding: 80px 0;
    }

    .info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
    }

    .info-content {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .section-header {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .section-header h2 {
        font-family: var(--contact-us-heading-font);
        font-weight: 600;
        font-size: 32px;
        color: var(--contact-us-heading-color);
    }

    .divider {
        width: 135px;
        height: 2px;
        background-color: var(--contact-us-primary);
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(251, 196, 48, 0.1);
        /* Light yellow bg */
        border: 1px solid var(--contact-us-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .icon-circle img {
        width: 20px;
        height: 20px;
    }

    .contact-text {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contact-text p {
        font-size: 18px;
        color: #000000;
        line-height: 1.2;
    }

    .social-block {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .social-label {
        font-family: var(--contact-us-heading-font);
        font-weight: 500;
        font-size: 20px;
        color: #000000;
    }

    .social-icons {
        display: flex;
        gap: 15px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid var(--contact-us-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s;
    }

    .social-icon:hover {
        background-color: var(--contact-us-primary);
    }

    .info-image {
        width: 100%;
        height: 100%;
        min-height: 400px;
        border-radius: 12px;
        overflow: hidden;
    }

    .info-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* --- Form Section --- */
    .form-section {
        padding: 100px 0;
        background-color: var(--contact-us-white);
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: stretch;
    }

    .form-image-col {
        border-radius: 12px;
        overflow: hidden;
        height: 100%;
        min-height: 600px;
    }

    .form-image-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

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

    .form-intro h2 {
        font-family: var(--contact-us-heading-font);
        font-weight: 600;
        font-size: 34px;
        color: var(--contact-us-heading-color);
        margin-bottom: 6px;
    }

    .form-intro p {
        font-size: 18px;
        color: #303030;
        /* rgb(48,48,48) */
        margin-top: 16px;
        line-height: 1.6;
    }

    .inquiry-form {
        background-color: var(--contact-us-light-bg);
        border-radius: 16px;
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        flex: 1;
        justify-content: center;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 0;
        /* Input handles padding */
    }

    .form-control {
        width: 100%;
        background-color: var(--contact-us-white);
        border: 1px solid #d4d4d4;
        /* rgb(212,212,212) approx */
        border-radius: 10px;
        padding: 16px;
        font-family: var(--contact-us-body-font);
        font-size: 16px;
        color: var(--contact-us-light-text);
        outline: none;
        transition: border-color 0.3s;
    }

    .form-control:focus {
        border-color: var(--contact-us-primary);
    }

    .form-control::placeholder {
        color: #919191;
        /* rgb(145,145,145) approx */
    }

    textarea.form-control {
        resize: vertical;
        min-height: 100px;
    }

    .submit-btn {
        background-color: var(--contact-us-primary);
        color: #101010;
        font-family: var(--contact-us-body-font);
        font-weight: 500;
        font-size: 18px;
        border: none;
        border-radius: 10px;
        padding: 14px 26px;
        cursor: pointer;
        transition: background-color 0.3s;
        width: 100%;
        text-align: center;
    }

    .submit-btn:hover {
        background-color: var(--contact-us-primary-hover);
    }

    /* --- Responsive Design --- */
    @media (max-width: 991px) {
        .contact-hero h1 {
            font-size: 36px;
        }

        .info-grid,
        .form-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .info-section,
        .form-section {
            padding: 60px 0;
        }

        .section-header h2 {
            font-size: 28px;
        }

        .info-image {
            min-height: 280px;
            order: -1;
        }

        .form-image-col {
            min-height: 280px;
            order: -1;
        }

        .form-intro h2 {
            font-size: 28px;
        }

        .form-intro p {
            font-size: 16px;
        }

        .contact-details {
            gap: 25px;
        }

        .contact-text p {
            font-size: 16px;
        }

        .social-label {
            font-size: 18px;
        }
    }

    @media (max-width: 767px) {
        .contact-hero {
            height: auto;
            padding: 50px 0;
        }

        .contact-hero h1 {
            font-size: 28px;
        }

        .section-header h2,
        .form-intro h2 {
            font-size: 24px;
        }

        .info-section,
        .form-section {
            padding: 40px 0;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .info-image,
        .form-image-col {
            min-height: 220px;
            border-radius: 10px;
        }

        .inquiry-form {
            padding: 16px;
            gap: 16px;
            border-radius: 12px;
        }

        .form-control {
            padding: 14px;
            font-size: 15px;
            border-radius: 8px;
        }

        .submit-btn {
            padding: 12px 22px;
            font-size: 16px;
            border-radius: 8px;
        }

        .divider {
            width: 100px;
        }

        .contact-item {
            gap: 15px;
        }

        .icon-circle {
            width: 36px;
            height: 36px;
        }

        .icon-circle img {
            width: 18px;
            height: 18px;
        }

        .contact-text p {
            font-size: 15px;
        }

        .social-label {
            font-size: 16px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
        }

        .form-intro p {
            font-size: 15px;
        }

        /* Alert */
        .alert {
            padding: 12px 15px;
            font-size: 14px;
        }

        .alert::before {
            width: 20px;
            height: 20px;
            font-size: 12px;
        }
    }