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

    /* Common Section Styles */
    .section {
        text-align: center;
        padding: 4rem 2rem;
        background-color: #111;
        color: #fff;
    }

    .hover-button {
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

        .hover-button:hover {
            transform: scale(1.05);
            background-color: #292929;
        }

    .category-link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

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

    .section-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        font-family: 'Bai Jamjuree', sans-serif;
        max-width: 800px;
    }

    .section-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Services Section */
    .services-section {
        display: flex;
        justify-content: center;
        align-content: center;
        gap: 40px; /* Adjust gap for better spacing */
        padding: 4rem 2rem;
        background-color: #111;
        color: #fff;
    }

    .services-section-centered {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .services-section-left {
        max-width: 60%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 50px;
    }

    .categories {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        width: 100%;
        margin-bottom: 40px;
    }

    .categories-left {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        margin-bottom: 40px;
    }

    .categories-centered {
        display: flex;
        gap: 20px;
        justify-content: center;
        width: 100%;
        margin-bottom: 40px;
    }

    .category {
        background-color: #1a1a1a;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        border: 1px solid #333;
        font-family: 'Bai Jamjuree', sans-serif;
        flex: 1;
        width: 250px;
        height: 150px; /* Set a specific height */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centers the content vertically */
        align-items: center;
    }

        .category h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .category p {
            font-size: 1rem;
        }

    .row {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    /* Promo Section */
    .promo {
        background-color: #1a1a1a;
        padding: 20px;
        border-radius: 8px;
        border: 1px solid #333;
    }

    .promo-content {
        max-width: 100%;
    }

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

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

    .image-container {
        max-width: 45%;
    }

    .promo-image {
        width: 100%;
        border-radius: 8px;
        object-fit: cover;
        margin-top: 40px;
    }

        .promo-image.shortened {
            margin-top: 30px;
            height: 700px; /* Set the desired height */
            object-fit: cover; /* Ensure the image covers the area */
        }

    /* CTA Section */
    .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;
        }
}

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

    /* Common Section Styles */
    .section {
        text-align: center;
        padding: 4rem 2rem;
        background-color: #111;
        color: #fff;
    }

    .hover-button {
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

        .hover-button:hover {
            transform: scale(1.05);
            background-color: #292929;
        }

    .category-link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

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

    .section-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        font-family: 'Bai Jamjuree', sans-serif;
        max-width: 800px;
    }

    .section-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Services Section */
    .services-section {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-color: #111;
        color: #fff;
    }

    .services-section-centered {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .services-section-left {
        max-width: 70%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .categories-left {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .categories-centered {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-content: center;
        margin-bottom: 40px;
        width: 90%;
    }

    .category {
        background-color: #1a1a1a;
        border-radius: 8px;
        text-align: center;
        border: 1px solid #333;
        font-family: 'Bai Jamjuree', sans-serif;
        flex: 1;
        width: 100%;
        height: 150px; /* Set a specific height */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centers the content vertically */
        align-items: center;
    }

        .category h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .category p {
            font-size: 1rem;
        }

    .row {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .services-section .services-section-left, .services-section .image-container {
        flex: 1;
    }

    /* Promo Section */
    .promo {
        background-color: #1a1a1a;
        padding: 20px;
        border-radius: 8px;
        border: 1px solid #333;
    }

    .promo-content {
        max-width: 100%;
    }

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

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

    .image-container {
        max-width: 45%;
        display: none;
    }

    .promo-image {
        width: 100%;
        border-radius: 8px;
        object-fit: cover;
        margin-top: 40px;
        display: none;
    }

        .promo-image.shortened {
            margin-top: 30px;
            height: 700px; /* Set the desired height */
            object-fit: cover; /* Ensure the image covers the area */
        }

    /* CTA Section */
    .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;
    }

    .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;
        }
}

@media (max-width: 919px) {
    /* Base Styles */
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        background-color: #111;
        font-family: 'Bai Jamjuree', sans-serif;
    }

    /* Common Section Styles */
    .section {
        text-align: center;
        padding: 4rem 2rem;
        background-color: #111;
        color: #fff;
    }

    .hover-button {
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

        .hover-button:hover {
            transform: scale(1.05);
            background-color: #292929;
        }

    .category-link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

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

    .section-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        font-family: 'Bai Jamjuree', sans-serif;
        max-width: 800px;
    }

    .section-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Services Section */
    .services-section {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-color: #111;
        color: #fff;
    }

    .services-section-centered {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .services-section-left {
        max-width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .categories-left {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .categories-centered {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-content: center;
        margin-bottom: 40px;
        width: 90%;
    }

    .category {
        background-color: #1a1a1a;
        border-radius: 8px;
        text-align: center;
        border: 1px solid #333;
        font-family: 'Bai Jamjuree', sans-serif;
        flex: 1;
        width: 100%;
        height: 250px; /* Set a specific height */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centers the content vertically */
        align-items: center;
    }

        .category h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .category p {
            font-size: 1rem;
        }

    .row {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .services-section .services-section-left, .services-section .image-container {
        flex: 1;
    }

    /* Promo Section */
    .promo {
        background-color: #1a1a1a;
        padding: 20px;
        border-radius: 8px;
        border: 1px solid #333;
    }

    .promo-content {
        max-width: 100%;
    }

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

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

    .image-container {
        max-width: 45%;
        display: none;
    }

    .promo-image {
        width: 100%;
        border-radius: 8px;
        object-fit: cover;
        margin-top: 40px;
        display: none;
    }

        .promo-image.shortened {
            margin-top: 30px;
            height: 700px; /* Set the desired height */
            object-fit: cover; /* Ensure the image covers the area */
        }

    /* CTA Section */
    .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;
    }

    .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;
        }
}