/* Portrait Tablets */
@media (min-width: 577px) and (max-width: 768px) {
    /* Adventure Section */
    .adventure-section {
        flex-direction: column;
        align-items: center;
        padding: 50px;
    }

    .text-section {
        width: 100%;
        text-align: left;
    }

    .text-section h2 {
        width: 100%;
    }

    .image-section img {
        width: 100%;
        max-width: 100%;
        padding-top: 20px;
    }

    /* Review Section */
    .reviews-section {
        padding: 50px;
        padding-top: 50px;
        text-align: Left;
        position: relative;
    }

    .reviewer {
        font-size: 1rem;
        text-align: right;
        padding-top: 10px;
        color: white;
        margin: 0;
    }

    .review-wrapper {
        height: 100%;
        padding-top: 30px;
    }

    .main-box {
        width: 100%;
        height: 500px;
        overflow: hidden;
    }

    .paragraph-box {
        width: 100%;
        flex-shrink: 0;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .review-wrapper {
        transition: transform 0.3s ease-in-out;
    }

    .arrow {
        z-index: 2;
        background-color: white;
        color: #493866;
        font-size: 1em;
        padding: 8px;
        bottom: -360px;
    }

    .arrow-left {
        left: 200px;
    }

    .arrow-right {
        right: 200px;
    }

    .pagination {
        bottom: -475px;
        flex-direction: row;
        z-index: 2;
        gap: 20px;
    }

    .indicator {
        width: 20px;
        height: 20px;
    }

    .indicator {
        background-color: white;
        border-radius: 50%;
        border: 2px solid #8286CF;
        transition: background-color 0.3s;
    }

    .indicator.active {
        background-color: #8286CF;
    }

    .top-left-image {
        width: 50%;
        left: -50px;
        top: 50px;
    }

    .hero-title {
        position: absolute;
        bottom: 80px;
        color: white;
        font-size: 2.5rem;
        z-index: 4;
        width: 100%;
        text-shadow: 0px 3px 6px #452B0A;
        text-align: center;
    }

    .boundaries-section {
        padding: 50px;
    }

    .blend-section {
        padding: 50px;
    }

    .order-section {
        padding: 50px;
    }
	.two-col {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

/* Landscape Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Styles for landscape tablets */
    .hero-section {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    .hero-title {
        position: absolute;
        bottom: 80px;
        color: white;
        font-size: 2.5rem;
        z-index: 4;
        width: 100%;
        text-shadow: 0px 3px 6px #452B0A;
        text-align: center;
    }

    /* Adventure Section */
    .adventure-section {
        padding: 50px;
    }

    .text-section {
        width: 100%;
        text-align: left;
    }

    .text-section h2 {
        width: 100%;
    }

    .image-section img {
        width: 100%;
        max-width: 100%;
    }

    /* Review Section */
    .reviews-section {
        padding: 50px;
        padding-top: 50px;
        text-align: Left;
        position: relative;
    }

    .reviews-section h2 {
        text-align: center;
    }

    .reviewer {
        font-size: 1rem;
        text-align: right;
        padding-top: 10px;
        color: white;
        margin: 0;
    }

    .review-wrapper {
        height: 100%;
        padding-top: 30px;
    }

    .main-box {
        width: 100%;
        height: 420px;
        overflow: hidden;
    }

    .paragraph-box {
        width: 100%;
        flex-shrink: 0;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .review-wrapper {
        transition: transform 0.3s ease-in-out;
    }

    .pagination {
        bottom: -400px;
        flex-direction: row;
        z-index: 2;
        gap: 20px;
    }

    .arrow {
        z-index: 3;
        background-color: white;
        color: #493866;
        font-size: 1em;
        padding: 8px;
        bottom: -290px;
    }

    .arrow-left {
        left: 325px;
    }

    .arrow-right {
        right: 325px;
    }

    .indicator {
        width: 20px;
        height: 20px;
    }

    .indicator {
        background-color: white;
        border-radius: 50%;
        border: 2px solid #8286CF;
        transition: background-color 0.3s;
    }

    .indicator.active {
        background-color: #8286CF;
    }

    .top-left-image {
        width: 50%;
        left: -120px;
        top: 20px;
    }

    .boundaries-section {
        padding: 50px;

        /* Reduce padding for mobile */
    }

    .blend-section {
        padding: 50px;
    }

    .order-section {
        padding: 50px;
    }
}