@media (min-width: 1520px) {
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        background-color: #111;
        font-family: 'Bai Jamjuree', sans-serif;
        color: #fff;
    }

    .wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-section {
        padding: 60px 20px;
        text-align: center;
    }

    .contact-header, .form-header {
        margin-bottom: 40px;
    }

        .contact-header h2, .form-header h2 {
            font-size: 2.5rem;
            font-family: 'Black Ops One', sans-serif;
        }

        .contact-header p, .form-header p {
            font-size: 1.1rem;
            font-family: 'Bai Jamjuree', sans-serif;
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 20px;
        }

    .contact-details {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        gap: 20px;
        margin-bottom: 80px;
        padding-left: 100px;
        padding-right: 100px;
    }

    .contact-item-box {
        background-color: #1a1a1a;
        padding: 20px 30px;
        border-radius: 25px;
        border: 1px solid #333;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1rem;
        white-space: nowrap;
        color: #fff;
    }

    .contact-item-box a {
        text-decoration: none;
        color: inherit;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1rem;
        white-space: nowrap;
    }

        .contact-item-box a:hover {
            color: #D67026; /* Optional: Change text color on hover for better UX */
        }

    .contact-item img {
        width: 20px;
        height: 20px;
    }

    .contact-card {
        background-color: #222;
        border: 2px solid #333;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

        .contact-card img {
            width: 40px;
            height: 40px;
            margin-bottom: 10px;
        }

    .contact-form form {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
    }

    .form-group {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        margin-bottom: 20px;
    }

        .form-group input, .form-group select {
            flex: 1;
        }

        .form-group.button-group {
            margin-top: 20px;
        }

    form input, form select, form textarea {
        width: calc(50% - 10px);
        padding: 15px;
        border: none;
        border-radius: 5px;
        background-color: #1a1a1a;
        color: white;
        font-family: 'Bai Jamjuree', sans-serif;
        font-size: 1rem;
    }

    form textarea {
        width: 100%;
        height: 150px;
        resize: none;
    }

    form button {
        background-color: #D67026;
        color: #111;
        padding: 15px 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Bai Jamjuree', sans-serif;
        font-size: 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }

        form button:hover {
            background-color: #e65c00;
        }

    .office-locations-section {
        padding: 60px 20px;
        text-align: center;
    }

    .section-header {
        margin-bottom: 40px;
    }

        .section-header h2 {
            font-size: 2.5rem;
            font-family: 'Black Ops One', sans-serif;
        }

        .section-header p {
            font-size: 1.1rem;
            font-family: 'Bai Jamjuree', sans-serif;
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 20px;
        }

    .locations-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .location-card {
        background-color: #222;
        border: 2px solid #333;
        border-radius: 8px;
        padding: 20px;
        text-align: left;
        width: calc(50% - 10px);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .location-card h3 {
            font-size: 1.8rem;
            font-family: 'Black Ops One', sans-serif;
            margin-bottom: 10px;
        }

        .location-card .location-address {
            font-size: 1.1rem;
            font-family: 'Bai Jamjuree', sans-serif;
            margin-bottom: 10px;
        }

        .location-card p {
            font-size: 1rem;
            font-family: 'Bai Jamjuree', sans-serif;
            margin-bottom: 20px;
        }

        .location-card .contact-details {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .location-card .contact-item-box {
            background-color: #1a1a1a;
            padding: 10px 20px;
            border-radius: 25px;
            border: 1px solid #333;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
        }

        .location-card .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            white-space: nowrap;
            color: #fff;
        }

            .location-card .contact-item img {
                width: 20px;
                height: 20px;
            }

    .directions-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 15px 0;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Bai Jamjuree', sans-serif;
        font-size: 1rem;
        text-align: center;
        width: 100%;
    }

        .directions-button:hover {
            background-color: #e65c00;
        }

    /* CTA Section Styles */
    .cta-section {
        text-align: center;
        padding: 4rem 2rem;
        background-color: #111;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .cta-content {
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 2px solid #777;
        border-top: 2px solid #777;
        padding-bottom: 3rem;
    }

    .cta-title {
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        font-family: 'Bai Jamjuree', sans-serif;
    }

    .cta-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 1rem 2rem;
        cursor: pointer;
        font-size: 1.2rem;
        transition: background-color 0.3s ease;
        border-radius: 8px;
        font-family: 'Bai Jamjuree', sans-serif;
    }

        .cta-button:hover {
            background-color: #e65c00;
        }

    /* Ensuring the correct styles are applied */
    .footer-logo-email {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 350px;
        margin: 0 auto;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-email {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }

    .footer-email-input {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 4px;
        border: none;
        width: 200px;
        box-sizing: border-box;
        background-color: #fff; /* Ensure the input background is white */
        color: #777;
    }

    .footer-email-button {
        background-color: #D67026;
        border: none;
        padding: 0.5rem 1rem;
        cursor: pointer;
        border-radius: 4px;
        font-size: 1rem;
        color: #111;
        font-family: 'Bai Jamjuree', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 62px;
    }

    .map-section {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 0;
        text-align: center;
    }

    .map-title {
        font-size: 2rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
        color: #ffffff;
    }

    .map-container {
        width: 100%;
        height: 450px;
    }
}
@media (min-width: 920px) and (max-width: 1519px) {
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        background-color: #111;
        font-family: 'Bai Jamjuree', sans-serif;
        color: #fff;
    }

    .wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-section {
        padding: 60px 20px;
        text-align: center;
    }

    .contact-header, .form-header {
        margin-bottom: 40px;
    }

        .contact-header h2, .form-header h2 {
            font-size: 2.5rem;
            font-family: 'Black Ops One', sans-serif;
        }

        .contact-header p, .form-header p {
            font-size: 1.1rem;
            font-family: 'Bai Jamjuree', sans-serif;
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 20px;
        }

    .contact-details {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        gap: 20px;
        margin-bottom: 80px;
        padding-left: 100px;
        padding-right: 100px;
    }

    .contact-item-box {
        background-color: #1a1a1a;
        padding: 20px 30px;
        border-radius: 25px;
        border: 1px solid #333;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1rem;
        white-space: nowrap;
        color: #fff;
    }

    .contact-item-box a {
        text-decoration: none;
        color: inherit;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1rem;
        white-space: nowrap;
    }

        .contact-item-box a:hover {
            color: #D67026; /* Optional: Change text color on hover for better UX */
        }

    .contact-item img {
        width: 20px;
        height: 20px;
    }

    .contact-card {
        background-color: #222;
        border: 2px solid #333;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

        .contact-card img {
            width: 40px;
            height: 40px;
            margin-bottom: 10px;
        }

    .contact-form form {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
    }

    .form-group {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        margin-bottom: 20px;
    }

        .form-group input, .form-group select {
            flex: 1;
        }

        .form-group.button-group {
            margin-top: 20px;
        }

    form input, form select, form textarea {
        width: calc(50% - 10px);
        padding: 15px;
        border: none;
        border-radius: 5px;
        background-color: #1a1a1a;
        color: white;
        font-family: 'Bai Jamjuree', sans-serif;
        font-size: 1rem;
    }

    form textarea {
        width: 100%;
        height: 150px;
        resize: none;
    }

    form button {
        background-color: #D67026;
        color: #111;
        padding: 15px 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Bai Jamjuree', sans-serif;
        font-size: 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }

        form button:hover {
            background-color: #e65c00;
        }

    .office-locations-section {
        padding: 60px 20px;
        text-align: center;
    }

    .section-header {
        margin-bottom: 40px;
    }

        .section-header h2 {
            font-size: 2.5rem;
            font-family: 'Black Ops One', sans-serif;
        }

        .section-header p {
            font-size: 1.1rem;
            font-family: 'Bai Jamjuree', sans-serif;
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 20px;
        }

    .locations-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .location-card {
        background-color: #222;
        border: 2px solid #333;
        border-radius: 8px;
        padding: 20px;
        text-align: left;
        width: calc(50% - 10px);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .location-card h3 {
            font-size: 1.8rem;
            font-family: 'Black Ops One', sans-serif;
            margin-bottom: 10px;
        }

        .location-card .location-address {
            font-size: 1.1rem;
            font-family: 'Bai Jamjuree', sans-serif;
            margin-bottom: 10px;
        }

        .location-card p {
            font-size: 1rem;
            font-family: 'Bai Jamjuree', sans-serif;
            margin-bottom: 20px;
        }

        .location-card .contact-details {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .location-card .contact-item-box {
            background-color: #1a1a1a;
            padding: 10px 20px;
            border-radius: 25px;
            border: 1px solid #333;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
        }

        .location-card .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            white-space: nowrap;
            color: #fff;
        }

            .location-card .contact-item img {
                width: 20px;
                height: 20px;
            }

    .directions-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 15px 0;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Bai Jamjuree', sans-serif;
        font-size: 1rem;
        text-align: center;
        width: 100%;
    }

        .directions-button:hover {
            background-color: #e65c00;
        }

    /* CTA Section Styles */
    .cta-section {
        text-align: center;
        padding: 4rem 2rem;
        background-color: #111;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cta-content {
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 2px solid #777;
        border-top: 2px solid #777;
        padding-bottom: 3rem;
    }

    .cta-title {
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        font-family: 'Bai Jamjuree', sans-serif;
    }

    .cta-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 1rem 2rem;
        cursor: pointer;
        font-size: 1.2rem;
        transition: background-color 0.3s ease;
        border-radius: 8px;
        font-family: 'Bai Jamjuree', sans-serif;
    }

        .cta-button:hover {
            background-color: #e65c00;
        }

    /* Ensuring the correct styles are applied */
    .footer-logo-email {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 350px;
        margin: 0 auto;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-email {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }

    .footer-email-input {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 4px;
        border: none;
        width: 200px;
        box-sizing: border-box;
        background-color: #fff; /* Ensure the input background is white */
        color: #777;
    }

    .footer-email-button {
        background-color: #D67026;
        border: none;
        padding: 0.5rem 1rem;
        cursor: pointer;
        border-radius: 4px;
        font-size: 1rem;
        color: #111;
        font-family: 'Bai Jamjuree', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 62px;
    }

    .map-section {
        width: 100%;
        max-width: 1200px;
        margin: 0;
        padding: 2rem 0;
        text-align: center;
    }

    .map-title {
        font-size: 2rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
        color: #ffffff;
    }

    .map-container {
        width: 100%;
        height: 450px;
        margin: 0; /* This centers the map */
    }
}
@media (max-width: 919px) {
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        background-color: #111;
        font-family: 'Bai Jamjuree', sans-serif;
        color: #fff;
    }

    .wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-section {
        padding: 60px 20px;
        text-align: center;

    }

    .contact-header, .form-header {
        margin-bottom: 40px;
    }

        .contact-header h2, .form-header h2 {
            font-size: 2.5rem;
            font-family: 'Black Ops One', sans-serif;
        }

        .contact-header p, .form-header p {
            font-size: 1.1rem;
            font-family: 'Bai Jamjuree', sans-serif;
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 20px;
        }

    .contact-details {
        display: grid;
        justify-content: center;
        gap: 10px;
        margin-bottom: 80px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .contact-item-box {
        background-color: #1a1a1a;
        padding: 5px 5px;
        border-radius: 25px;

        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1rem;
        white-space: nowrap;
        color: #fff;
    }

    .contact-item-box a {
        text-decoration: none;
        color: inherit;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1rem;
        white-space: nowrap;
    }

        .contact-item-box a:hover {
            color: #D67026; /* Optional: Change text color on hover for better UX */
        }

    .contact-item img {
        width: 20px;
        height: 20px;
    }

    .contact-card {
        background-color: #222;
        border: 2px solid #333;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

        .contact-card img {
            width: 40px;
            height: 40px;
            margin-bottom: 10px;
        }

    .contact-form form {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;

    }
 
    .form-group {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        margin-bottom: 20px;

    }

        .form-group input, .form-group select {
            flex: 1;
        }

        .form-group.button-group button{
            margin-top: 20px;
            width: 100%;
            background-color: #D67026;
        }

    form input, form select, form textarea {
        width: calc(50% - 10px);
        padding: 15px;
        border: none;
        border-radius: 5px;
        background-color: #1a1a1a;
        color: white;
        font-family: 'Bai Jamjuree', sans-serif;
        font-size: 1rem;
    }

    form textarea {
        width: 100%;
        height: 150px;
        resize: none;
    }

    form button {
        background-color: #D67026;
        color: #111;
        padding: 15px 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Bai Jamjuree', sans-serif;
        font-size: 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }

        form button:hover {
            background-color: #e65c00;
        }

    .office-locations-section {
        padding: 60px 20px;
        text-align: center;
    }

    .section-header {
        margin-bottom: 40px;
    }

        .section-header h2 {
            font-size: 2.5rem;
            font-family: 'Black Ops One', sans-serif;
        }

        .section-header p {
            font-size: 1.1rem;
            font-family: 'Bai Jamjuree', sans-serif;
            max-width: 800px;
            margin: 0 auto;
            margin-bottom: 20px;
        }

    .locations-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .location-card {
        background-color: #222;
        border: 2px solid #333;
        border-radius: 8px;
        padding: 20px;
        text-align: left;
        width: calc(50% - 10px);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .location-card h3 {
            font-size: 1.8rem;
            font-family: 'Black Ops One', sans-serif;
            margin-bottom: 10px;
        }

        .location-card .location-address {
            font-size: 1.1rem;
            font-family: 'Bai Jamjuree', sans-serif;
            margin-bottom: 10px;
        }

        .location-card p {
            font-size: 1rem;
            font-family: 'Bai Jamjuree', sans-serif;
            margin-bottom: 20px;
        }

        .location-card .contact-details {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .location-card .contact-item-box {
            background-color: #1a1a1a;
            padding: 10px 20px;
            border-radius: 25px;
            border: 1px solid #333;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
        }

        .location-card .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            white-space: nowrap;
            color: #fff;
        }

            .location-card .contact-item img {
                width: 20px;
                height: 20px;
            }

    .directions-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 15px 0;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Bai Jamjuree', sans-serif;
        font-size: 1rem;
        text-align: center;
        width: 100%;
    }

        .directions-button:hover {
            background-color: #e65c00;
        }

    /* CTA Section Styles */
    .cta-section {
        text-align: center;
        padding: 4rem 2rem;
        background-color: #111;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cta-content {
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 2px solid #777;
        border-top: 2px solid #777;
        padding-bottom: 3rem;
    }

    .cta-title {
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        font-family: 'Bai Jamjuree', sans-serif;
    }

    .cta-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 1rem 2rem;
        cursor: pointer;
        font-size: 1.2rem;
        transition: background-color 0.3s ease;
        border-radius: 8px;
        font-family: 'Bai Jamjuree', sans-serif;
    }

        .cta-button:hover {
            background-color: #e65c00;
        }

    /* Ensuring the correct styles are applied */
    .footer-logo-email {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 350px;
        margin: 0 auto;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-email {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }

    .footer-email-input {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 4px;
        border: none;
        width: 200px;
        box-sizing: border-box;
        background-color: #fff; /* Ensure the input background is white */
        color: #777;
    }

    .footer-email-button {
        background-color: #D67026;
        border: none;
        padding: 0.5rem 1rem;
        cursor: pointer;
        border-radius: 4px;
        font-size: 1rem;
        color: #111;
        font-family: 'Bai Jamjuree', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 62px;
    }

    .map-section {
        width: 100%;
        max-width: 1200px;
        margin: 0;
        padding: 2rem 0;
        text-align: center;
    }

    .map-title {
        font-size: 2rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
        color: #ffffff;
    }

    .map-container {
        width: 100%;
        height: 450px;
        margin: 0; /* This centers the map */
    }
}