
.rollout-banner {
    background-image: url('https://storage.googleapis.com/giffycms-adirondack/images/rollout/Asset%2078%20(1).png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: white;
    width: 100%;
    margin-top: 6rem;
}

.legacy-container {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
}

.text-section {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.text-content {
    max-width: 500px;
}

.text-content h1 {
    font-size: 4.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-content h1 span {
    display: block;
}

.text-content p {
    font-size: 2rem;
    line-height: 1.5;
}

.image-section img {
    display: none;
    width: 100%;
    height: auto;
}

.advanced-solution-heading {
    margin-bottom: 5rem;
    font-size: 4rem;
    font-weight: 400;
}

.advanced-solution-heading span {
    display: block;
}

.tech-card {
    background: white;
    color: black;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    height: 360px;
    border: 1px solid black;
    position: relative;
}

.tech-img {
    height: 80px;
    margin-bottom: 15px;
}

.tech-card h4 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1C5739;
    margin-bottom: 10px;
}

.tech-card h4 span {
    display: block;
}

.tech-card p {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: #000;
}

.why-choose-us {
    color: black;
    background-color: white;
    margin-bottom: 8rem;
}

.why-choose-us h3 {
    font-size: 6rem;
    font-weight: 300;
}

.why-choose-us p {
    margin-top: 20px;
    font-size: 2rem;
    line-height: 1.7;
}

.button-custom a {
    display: block;
    background-color: #fff;
    color: #000;
    margin-top: 25px;
    border-radius: 20px;
    font-weight: 600;
    border: 1.2px solid black;
    width: fit-content;
    padding: 8px 30px;
    font-size: 1.8rem;
    position: relative;
    transition: all .35s;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.button-custom a span {
    position: relative;
    z-index: 2;
}

.button-custom a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #1C5739;
    border-radius: 20px;
    transition: all .35s;
}

.button-custom a:hover {
    color: #fff;
}

.button-custom a:hover:after {
    width: 100%;
}

.divider-arrow img {
    margin-top: 5rem;
    width: 25%;
}


/* Tablet view */
@media (max-width: 1024px) {
    .text-content h1 {
        font-size: 3.8rem;
    }

    .legacy-container {
        grid-template-columns: 1fr;
    }

    .image-section {
       
        background-attachment: scroll;
    }

}

/* Mobile view */
@media (max-width: 768px) {
    .rollout-banner {
        background-image: url('https://storage.googleapis.com/giffycms-adirondack/images/about/about-background.png');
        background-attachment: scroll;
    }

    .text-content h1 {
        font-size: 3.5rem;
        margin-top: 7rem;
    }

    .text-content p {
        font-size: 1.8rem;
    }

    .image-section {
        background: none;
    }

    .image-section img {
        display: block;
    }

    .legacy-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .btn-custom {
        margin: 20px 0 0;
    }

    .divider-arrow img {
        margin-top: 5rem;
        width: 50%;
    }

}
