        :root {
            --color-primary: #ffb81f;
            --color-secondary: #40b748;
            --color-dark: #121212;
            --color-light: #FFFFFF;
            --color-gray-light: #F8F9FA;
            --color-gray-medium: #E9ECEF;
            --color-gray-dark: #6C757D;
            --color-text-dark: #212529;
            --color-text-light: #FFFFFF;
            --color-yellow: #F9C74F;
            --color-green: #00D289;
            --font-family: 'Signika', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            /* Base font size for rem calculations */
        }

        body {
            font-family: var(--font-family);
            background-color: var(--color-light);
            color: var(--color-text-dark);
            line-height: 1.6;
        }

        .container {
            max-width: 80rem;
            /* 1280px */
            margin: 0 auto;
            padding: 0 1.5rem;
            /* 24px */
        }

        section {
            padding: 6.25rem 0;
            /* 100px */
        }

        .section-tag {
            display: inline-block;
            padding: 0.375rem 0.875rem;
            /* 6px 14px */
            background-color: #FFF9E6;
            color: var(--color-primary);
            border-radius: 1.25rem;
            /* 20px */
            font-size: 0.875rem;
            /* 14px */
            font-weight: 500;
            margin-bottom: 1rem;
            /* 16px */
        }

        .section-title {
            font-size: 3rem;
            /* 48px */
            font-weight: 700;
            margin-bottom: 1.5rem;
            /* 24px */
            line-height: 1.2;
        }

        .dark-section {
            background-color: var(--color-dark);
            color: var(--color-text-light);
            background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
            background-repeat: repeat;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            /* 8px */
            padding: 0.75rem 1.5rem;
            /* 12px 24px */
            border-radius: 0.5rem;
            /* 8px */
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            /* 16px */
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--color-primary);
            color: var(--color-dark);
        }

        .btn-primary:hover {
            background-color: #ffa500;
        }

        .btn-dark {
            background-color: #212529;
            color: var(--color-light);
        }

        .btn-dark:hover {
            background-color: #343a40;
        }

        .btn-light {
            background-color: var(--color-light);
            color: var(--color-dark);
        }

        .btn-light:hover {
            background-color: #f0f0f0;
        }

        /* Header */
        header {
            position: fixed;
            top: 1.25rem;
            /* 20px */
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 1.5rem;
            /* 24px */
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            margin-right: 2.5rem;
            /* 40px */
        }

        .logo img {
            height: 3.75rem;
            /* 60px */
        }

        .header-container {
            background-color: rgba(33, 37, 41, 0.3);
            backdrop-filter: blur(0.5rem);
            /* 8px */
            border-radius: 0.75rem;
            /* 12px */
            padding: 0.75rem 2rem;
            /* 12px 32px */
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            /* 32px */
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            /* 32px */
        }

        nav ul li a {
            color: var(--color-light);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.375rem;
            /* 6px */
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--color-primary);
        }

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 1.875rem;
            /* 30px */
            right: 1.875rem;
            /* 30px */
            width: 3.125rem;
            /* 50px */
            height: 3.125rem;
            /* 50px */
            background-color: var(--color-primary);
            color: var(--color-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.25rem;
            /* 20px */
            box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
            /* 4px 12px */
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: #ffa500;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 50rem;
            /* 800px */
            position: relative;
            display: flex;
            align-items: center;
            color: var(--color-light);
            padding-top: 7.5rem;
            /* 120px */
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }

        .hero-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2.5rem;
            /* 40px */
            width: 100%;
        }

        .hero-text {
            max-width: 50rem;
            /* 800px */
        }

        .hero-text .section-tag {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--color-light);
        }

        .hero-text h1 {
            font-size: 4.5rem;
            /* 72px */
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            /* 24px */
        }

        .hero-text h1 .highlight {
            color: var(--color-secondary);
        }

        .hero-text p {
            font-size: 1.25rem;
            /* 20px */
            margin-bottom: 2rem;
            /* 32px */
            max-width: 37.5rem;
            /* 600px */
        }

        /* Partners Section */
        .partners {
            padding: 3.75rem 0;
            /* 60px */
            text-align: center;
        }

        .partners h3 {
            font-size: 1rem;
            /* 16px */
            font-weight: 500;
            color: var(--color-gray-dark);
            margin-bottom: 2rem;
            /* 32px */
        }

        .partner-logos {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 2.5rem;
            /* 40px */
        }

        .partner-logos img {
            height: 2.5rem;
            /* 40px */
            filter: none;
            /* Remove grayscale and contrast filters */
            opacity: 1;
            /* Make logos fully visible */
            transition: all 0.3s ease;
        }

        /* Navigate Section */
        .navigate {
            display: flex;
            align-items: center;
            gap: 5rem;
            /* 80px */
        }

        .navigate-text {
            flex: 1;
        }

        .navigate-text p {
            color: var(--color-gray-dark);
            margin-bottom: 1.5rem;
            /* 24px */
        }

        .navigate-images {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            /* 20px */
        }

        .navigate-images img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0.75rem;
            /* 12px */
        }

        .navigate-images .img-large {
            grid-row: span 2;
            height: 26.25rem;
            /* 420px */
        }

        .navigate-images .img-small {
            height: 12.5rem;
            /* 200px */
        }

        /* Full Width Image Section */
        .full-width-image-section {
            padding: 1.875rem 0;
            /* 30px */
        }

        .full-width-image-section .container {
            max-width: 90rem;
            /* 1440px */
        }

        .full-width-image-section img {
            width: 100%;
            height: 18.75rem;
            /* 300px */
            object-fit: cover;
            border-radius: 1.5rem;
            /* 24px */
            display: block;
        }

        /* About Section */
        .about {
            background-color: var(--color-gray-light);
            border-radius: 1.5rem;
            /* 24px */
            padding: 5rem;
            /* 80px */
        }

        .about-content {
            display: flex;
            gap: 3.75rem;
            /* 60px */
            align-items: center;
        }

        .about-text {
            flex: 1;
        }

        .about-text .section-title {
            font-size: 2.5rem;
            /* 40px */
        }

        .about-text p {
            margin-bottom: 1.5rem;
            /* 24px */
        }

        .about-values {
            margin-top: 2.5rem;
            /* 40px */
        }

        .about-values h3 {
            font-size: 1.5rem;
            /* 24px */
            margin-bottom: 1.25rem;
            /* 20px */
            color: var(--color-secondary);
        }

        .values-list {
            list-style: none;
        }

        .values-list p {
            position: relative;
            padding-left: 1.25rem;
            /* 20px */
            margin-bottom: 0.75rem;
            /* 12px */
        }

        .values-list p::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--color-primary);
            font-weight: bold;
        }

        .about-video-container {
            width: 21.875rem;
            /* 350px */
            height: 26.25rem;
            /* 420px */
            border-radius: 1rem;
            /* 16px */
            overflow: hidden;
        }

        .about-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Services Section */
        .services {
            text-align: center;
        }

        .services-grid {
            margin-top: 3.75rem;
            /* 60px */
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            /* 32px */
            text-align: left;
        }

        .service-card {
            background-color: var(--color-gray-light);
            border-radius: 1rem;
            /* 16px */
            padding: 2.5rem;
            /* 40px */
            display: flex;
            align-items: center;
            gap: 2rem;
            /* 32px */
        }

        .service-card-content {
            flex: 1;
        }

        .service-card h3 {
            font-size: 1.75rem;
            /* 28px */
            font-weight: 700;
            margin-bottom: 1rem;
            /* 16px */
        }

        .service-card ul {
            list-style: none;
            margin-bottom: 1.5rem;
            /* 24px */
        }

        .service-card p {
            position: relative;
            padding-left: 1.25rem;
            /* 20px */
            color: var(--color-gray-dark);
            margin-bottom: 0.5rem;
            /* 8px */
        }

        .service-card p::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--color-primary);
            font-weight: bold;
        }

        .service-card-image {
            width: 12.5rem;
            /* 200px */
            height: 12.5rem;
            /* 200px */
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0.75rem;
            /* 12px */
        }

        .service-card:nth-child(2) {
            background-color: #E3F8FF;
        }

        /* How We Move Section */
        .how-we-move .section-title {
            max-width: 25rem;
            /* 400px */
        }

        .how-we-move-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2.5rem;
            /* 40px */
            margin-bottom: 5rem;
            /* 80px */
        }

        .how-we-move-images {
            display: flex;
            gap: 1.25rem;
            /* 20px */
        }

        .how-we-move-images img {
            width: 15.625rem;
            /* 250px */
            height: 18.75rem;
            /* 300px */
            object-fit: cover;
            border-radius: 0.75rem;
            /* 12px */
        }

        .how-we-move-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
            /* 200px */
            gap: 2rem;
            /* 32px */
        }

        .step-card {
            text-align: left;
        }

        .step-card .step-tag {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            /* 4px 12px */
            background-color: var(--color-yellow);
            color: var(--color-dark);
            border-radius: 1.25rem;
            /* 20px */
            font-size: 0.875rem;
            /* 14px */
            font-weight: 600;
            margin-bottom: 1rem;
            /* 16px */
        }

        .step-card h4 {
            font-size: 1.375rem;
            /* 22px */
            margin-bottom: 0.5rem;
            /* 8px */
        }

        .step-card p {
            color: #adb5bd;
            font-size: 0.875rem;
            /* 14px */
            margin-bottom: 1.5rem;
            /* 24px */
        }

        .step-video-container {
            width: 100%;
            height: 11.25rem;
            /* 180px */
            border-radius: 0.75rem;
            /* 12px */
            overflow: hidden;
        }

        .step-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Benefits Section */
        .benefits {
            text-align: center;
        }

        .benefits-card {
            margin-top: 3.75rem;
            /* 60px */
            display: flex;
            background-color: var(--color-gray-light);
            border-radius: 1rem;
            /* 16px */
            padding: 2.5rem;
            /* 40px */
            justify-content: space-around;
            align-items: center;
        }

        .benefit-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            /* 16px */
            flex: 1;
            padding: 1.25rem;
            /* 20px */
        }

        .benefit-item .icon {
            font-size: 2rem;
            /* 32px */
            color: var(--color-text-dark);
        }

        .benefit-item h4 {
            font-size: 1.5rem;
            /* 24px */
            font-weight: 600;
        }

        .benefit-item p {
            font-size: 0.875rem;
            /* 14px */
            color: var(--color-gray-dark);
            max-width: 12.5rem;
            /* 200px */
        }

        .benefit-item.highlight {
            background-color: var(--color-primary);
            color: var(--color-dark);
            border-radius: 0.75rem;
            /* 12px */
            padding: 2.5rem 1.25rem;
            /* 40px 20px */
            margin: -2.5rem 0;
            /* -40px 0 */
            /* background-image: url('images/Agricultural\ Produce\ Handling.webp'); */
            background-blend-mode: overlay;
            background-size: 150%;
            background-position: center;
        }

        .benefit-item.highlight .icon,
        .benefit-item.highlight p {
            color: var(--color-dark);
        }

        .benefit-item:not(:last-child) {
            border-right: 1px solid var(--color-gray-medium);
        }

        .benefit-item.highlight,
        .benefit-item.highlight+.benefit-item {
            border-right: none;
        }

        /* Success Section */
        .success {
            border-radius: 1.5rem;
            /* 24px */
            padding: 5rem;
            /* 80px */
        }

        .success-content {
            display: flex;
            gap: 3.75rem;
            /* 60px */
            align-items: center;
            margin-bottom: 5rem;
            /* 80px */
        }

        .success-testimonial {
            flex: 1;
        }

        .success-testimonial .section-title {
            font-size: 2.5rem;
            /* 40px */
        }

        .success-testimonial blockquote {
            font-size: 1.25rem;
            /* 20px */
            font-style: italic;
            margin: 2rem 0;
            /* 32px 0 */
            border-left: 0.1875rem solid var(--color-primary);
            /* 3px */
            padding-left: 1.5rem;
            /* 24px */
        }

        .success-testimonial .author {
            font-weight: 600;
        }

        .success-testimonial .author-title {
            color: #adb5bd;
            font-size: 0.875rem;
            /* 14px */
        }

        .success-testimonial .btn {
            margin-top: 2rem;
            /* 32px */
        }

        .success-image {
            width: 21.875rem;
            /* 350px */
            height: 26.25rem;
            /* 420px */
        }

        .success-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 1rem;
            /* 16px */
        }

        .success-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            /* 32px */
        }

        .stat-card {
            padding: 2rem;
            /* 32px */
            border-radius: 1rem;
            /* 16px */
        }

        .stat-card .stat-number {
            font-size: 3rem;
            /* 48px */
            font-weight: 700;
            margin-bottom: 0.5rem;
            /* 8px */
        }

        .stat-card p {
            font-size: 1rem;
            /* 16px */
        }

        .stat-card.yellow {
            background-color: var(--color-yellow);
            color: var(--color-dark);
        }

        .stat-card.white {
            background-color: var(--color-light);
            color: var(--color-dark);
        }

        .stat-card.green {
            background-color: var(--color-secondary);
            color: var(--color-light);
        }

        /* FAQ Section */
        .faq {
            text-align: center;
        }

        .faq .section-tag {
            border-radius: 0.5rem 0.5rem 0.5rem 0;
            /* 8px */
        }

        .faq-list {
            margin-top: 3.75rem;
            /* 60px */
            max-width: 50rem;
            /* 800px */
            margin-left: auto;
            margin-right: auto;
            text-align: left;
        }

        .faq-item {
            display: flex;
            gap: 1.5rem;
            /* 24px */
            padding: 1.5rem 0;
            /* 24px 0 */
            border-bottom: 1px solid var(--color-secondary);
        }

        .faq-number {
            width: 2.5rem;
            /* 40px */
            height: 2.5rem;
            /* 40px */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            flex-shrink: 0;
        }

        .faq-number.active {
            background-color: var(--color-primary);
            color: var(--color-dark);
        }

        .faq-number.inactive {
            background-color: var(--color-gray-medium);
            color: var(--color-gray-dark);
        }

        .faq-content h4 {
            font-size: 1.125rem;
            /* 18px */
            font-weight: 600;
            margin-bottom: 0.5rem;
            /* 8px */
        }

        .faq-content p {
            color: var(--color-gray-dark);
        }

        /* CTA Section */
        .cta {
            border-radius: 1.5rem;
            /* 24px */
            padding: 6.25rem 5rem;
            /* 100px 80px */
            background-image: linear-gradient(90deg, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 0.6) 50%, rgba(18, 18, 18, 0) 100%), url('images/Ready to Export.webp');
            background-size: cover;
            background-position: center right;
        }

        .cta .section-title {
            font-size: 3rem;
            /* 48px */
            max-width: 31.25rem;
            /* 500px */
            margin-bottom: 2rem;
            /* 32px */
        }

        .contact-details {
            margin-top: 2.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .contact-icon {
            color: var(--color-primary);
            width: 1.25rem;
            text-align: center;
        }

        .contact-link {
            color: var(--color-text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-link:hover {
            color: var(--color-primary);
        }

        /* Footer */
        footer {
            padding-top: 5rem;
            /* 80px */
            background-color: var(--color-light);
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            /* 32px */
            padding-bottom: 2.5rem;
            /* 40px */
        }

        .footer-col h5 {
            font-size: 1rem;
            /* 16px */
            font-weight: 600;
            margin-bottom: 1rem;
            /* 16px */
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col p {
            margin-bottom: 0.75rem;
            /* 12px */
            display: flex;
            align-items: center;
            gap: 0.5rem;
            /* 8px */
        }

        .footer-col p a {
            text-decoration: none;
            color: var(--color-gray-dark);
        }

        .footer-col p a:hover {
            color: var(--color-primary);
        }

        .footer-col .contact-icon {
            width: 1.25rem;
            /* 20px */
            color: var(--color-secondary);
        }

        .footer-middle {
            padding: 2rem 0;
            /* 32px 0 */
            border-top: 0.125rem solid var(--color-primary);
            /* 2px */
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-middle .logo {
            color: var(--color-dark);
        }

        .footer-middle-left {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            /* 8px */
        }

        .footer-middle-left p {
            font-size: 0.875rem;
            /* 14px */
            color: var(--color-gray-dark);
        }

        .footer-middle-right {
            display: flex;
            align-items: center;
            gap: 1rem;
            /* 16px */
        }

        .footer-middle-right p {
            font-size: 1.125rem;
            /* 18px */
            font-weight: 600;
        }

        .footer-bottom {
            padding: 1.5rem 0;
            /* 24px 0 */
            border-top: 1px solid var(--color-gray-medium);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
            /* 14px */
            color: var(--color-gray-dark);
        }

        .footer-socials {
            display: flex;
            gap: 0.5rem;
            /* 8px */
        }

        .footer-socials a {
            width: 2.25rem;
            /* 36px */
            height: 2.25rem;
            /* 36px */
            border: 1px solid var(--color-gray-medium);
            border-radius: 0.5rem;
            /* 8px */
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text-dark);
            text-decoration: none;
        }

        .footer-socials a:hover {
            background-color: var(--color-primary);
            color: var(--color-dark);
            border-color: var(--color-primary);
        }

        /* Video optimization */
        .video-placeholder {
            width: 100%;
            height: 100%;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-gray-dark);
            font-size: 1rem;
        }

        .video-loading {
            position: relative;
            overflow: hidden;
        }

        .video-loading::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        /* Responsive */
        @media (max-width: 64rem) {

            /* 1024px */
            .section-title {
                font-size: 2.25rem;
                /* 36px */
            }

            .hero-text h1 {
                font-size: 3.5rem;
                /* 56px */
            }

            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .navigate {
                flex-direction: column;
            }

            .about-content {
                flex-direction: column;
                text-align: center;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                flex-direction: column;
                text-align: center;
            }

            .how-we-move-top {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .how-we-move .section-title {
                max-width: 100%;
            }

            .how-we-move-images {
                flex-direction: row;
                justify-content: center;
                width: 100%;
            }

            .how-we-move-images img {
                width: 100%;
                max-width: 300px;
                height: 250px;
                object-fit: cover;
            }

            .benefits-card {
                flex-direction: column;
            }

            .benefit-item {
                border-right: none !important;
                border-bottom: 1px solid var(--color-gray-medium);
                width: 100%;
            }

            .benefit-item:last-child {
                border-bottom: none;
            }

            .benefit-item.highlight {
                margin: 0;
            }

            .success-content {
                flex-direction: column;
                text-align: center;
            }

            .success-stats {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 48rem) {

            /* 768px */
            section {
                padding: 3.75rem 0;
                /* 60px */
            }

            header {
                top: 0.625rem;
                /* 10px */
                padding: 0 0.625rem;
                /* 10px */
                flex-direction: column;
                gap: 0.625rem;
                /* 10px */
            }

            .logo {
                margin-right: 0;
            }

            .logo img {
                height: 3.125rem;
                /* 50px */
            }

            .header-container {
                padding: 0.5rem 1rem;
                /* 8px 16px */
                width: 100%;
                gap: 1rem;
                /* 16px */
                flex-wrap: wrap;
                justify-content: center;
            }

            nav ul {
                gap: 1rem;
                /* 16px */
            }

            nav ul li a {
                font-size: 0.875rem;
                /* 14px */
            }

            .header-container .btn {
                font-size: 0.875rem;
                /* 14px */
                padding: 0.625rem 1rem;
                /* 10px 16px */
            }

            .hero {
                min-height: 37.5rem;
                /* 600px */
            }

            .hero-text h1 {
                font-size: 2.5rem;
                /* 40px */
            }

            .partner-logos {
                justify-content: center;
            }

            .navigate-images {
                grid-template-columns: 1fr;
            }

            .navigate-images .img-large,
            .navigate-images .img-small {
                height: auto;
            }

            .how-we-move-images {
                flex-direction: column;
                align-items: center;
            }

            .how-we-move-images img {
                width: 100%;
                max-width: 400px;
                height: 250px;
            }

            .about,
            .success,
            .cta {
                padding: 2.5rem 1.5rem;
                /* 40px 24px */
            }

            .footer-middle,
            .footer-bottom {
                flex-direction: column;
                gap: 1.25rem;
                /* 20px */
                text-align: center;
            }

            /* Left align text on mobile for all sections except benefits */
            .navigate-text,
            .about-text,
            .service-card-content,
            .how-we-move-top>div,
            .success-testimonial,
            .faq-list,
            .cta {
                text-align: left;
            }

            .services {
                text-align: center;
            }

            .services .section-tag,
            .services .section-title {
                text-align: center;
            }

            .faq .section-tag,
            .faq .section-title {
                text-align: center;
            }
        }

        @media (max-width: 30rem) {
            /* 480px */
            .how-we-move-images img {
                height: 200px;
            }
        }

        /* Style for agricultural text */
        .agricultural-text {
            color: var(--color-secondary);
        }