body {
    background: #0c0c0c;
}
.about-container {
    margin-top: 60px;
    margin-bottom: 60px;
    font-family: 'Quicksand', sans-serif;
}

.about-section-container {
    background-color: transparent;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    background-color: rgba(46, 46, 46, 0.644);
    border-radius: 60px;
    padding: 30px;
    font-size: 14px;
    height: 500px;
    align-content: center;
    margin-top: 10px;
}

.about-section.about {
    background-color: rgb(0, 0, 0);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 60px;
    padding: 30px;
    font-size: 14px;
    height: 500px;
    align-content: center;
    border-left: 4px solid #4bc59d;
    box-shadow: 0 2px 5px 0 rgb(102, 102, 102);

}

.about-section.alt {
    background-color: rgb(0, 0, 0);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 60px;
    padding: 30px;
    font-size: 14px;
    height: 500px;
    border-right: 4px solid #4bc59d;
    box-shadow: 0 2px 5px 0 rgb(102, 102, 102);

}

h1 {
    color: #4bc59d;
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px;
}

h1.alt{
    color: #4bc59d;
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px;
}

.alt.text-metallic {
    position: relative;
    background: repeating-linear-gradient(0deg, #cacaca 0%, #ffffff 50%, #cacaca 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.bold {
    font-weight: 550;
    font-size: 16px;
    letter-spacing: 0.4px;
    position: relative;
    padding-left: 30px;
    margin-top: 30px;
}

a:hover {
    color: #4bc59d;
}

.bold::before {
    content: "\276F";
    color: #3faa86;
    font-size: 16px;
    position: absolute;
    left: 0;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    font-size: 14px;
}

.offer-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.offer-list li::before {
    content: "\276F";
    color: #4bc59d;
    font-size: 15px;
    position: absolute;
    left: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid.other {
    grid-template-columns: 1fr 1fr;
    align-items: baseline;
    justify-content: center;
    padding: 20px;
}

.about-grid.reverse {
    direction: rtl;
    grid-template-columns: 1fr 1fr;
}

.about-grid.reverse .about-text {
    direction: ltr;
}

.about-text {
   max-width: 450px;
   margin: 0 auto;
}

.about-text p {
    font-size: 14.4px;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 450;
}

.about-image {
    margin: 0 auto;
    padding: 0;
}

.about-image img {
    object-fit: cover;
    width: 100%;
    height: 300px;
    border-radius: 8px;
}


.about-text-contact {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

.about-grid.reverse .about-text-contact {
    direction: ltr;
}

.contact-us {
    background-color: #00ad88;
    border:#00ad88 1px solid;
    padding: 12px 26px;
    color: #fff;
    border-radius: 12px;
}

.contact-us:hover {
    background-color: #00c499;
    border: #00c499 1px solid;
    color: #fff;
}

a {
    text-decoration: none;
    color: #fff;
}

@media (max-width: 900px) {
    .about-section.about {
        height: 700px;
    }
}

@media (max-width: 700px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .about-grid.other {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-image-logo img {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-image img {
        max-width: 100%;
        margin: 0 auto;
    }
    .about-section {
        height: 800px;
    }
    
    .about-section.alt {
        height: 800px;
    }
    .about-section.about {
        height: 900px;
    }
}

@media (max-width: 500px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-image-logo img {
        max-width: 100%;
        object-fit: contain;
        margin: 0 auto;
    }
    .about-image img {
        height: 200px;
    }
    .about-grid.reverse {
        direction: ltr;
    }
    .about-section {
        height: 600px;
    }
    
    .about-section.alt {
        height: 600px;
    }

    h1 {
        font-size: 24px;
    }
}