
body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    color: white;
    line-height: 1.6;
}

.about-container {
    margin-top: 80px;
    margin-bottom: 80px;
}

.about-section-container {
    background-color: rgba(20, 20, 20, 0.6);
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    background-color: rgba(46, 46, 46, 0.644);
    border-radius: 12px;
    padding: 30px 20px;
    font-size: 13px;
    height: 500px;
    align-content: center;
    margin-top: 10px;
}

.about-section.about {
    background-color: rgba(83, 77, 77, 0.705);
    border-radius: 12px;
    padding: 30px 20px;
    font-size: 13px;
    height: 600px;
    align-content: center;
}

.about-section.alt {
    background-color: rgba(25, 25, 25, 0.6);
    border-radius: 12px;
    font-size: 13px;
    height: 500px;
    border-top: 1px solid #BD0000;
}

h1 {
    color: #d6ad60;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.text-metallic {
    background: repeating-linear-gradient(0deg, #d6ad60 0%, #f5d48e 20%, #d6ad60 40%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    font-size: 13px;
}

.offer-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.offer-list li::before {
    content: "\2713";
    color: #d6ad60;
    position: absolute;
    left: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid.reverse {
    direction: rtl;
    grid-template-columns: 400px 1fr;
}

.about-grid.reverse .about-text {
    direction: ltr;
}

.about-text {
   max-width: 450px;
   margin: 0 auto;
}

.about-text p {
    font-size: 13px;
    line-height: 1.8;
}

.about-image {
    margin: 0 auto;
    padding: 20px;
}

.about-image img {
    object-fit: cover;
    width: 100%;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.about-image-logo {
    margin: 0 auto;
    padding: 20px;
}

.about-image-logo img {
    object-fit: cover;
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

.about-text-contact {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}


.contact-us {
    background-color: rgb(212, 0, 0);
    border: rgb(212, 0, 0) 1px solid;
    padding: 12px 26px;
    color: #fff;
    border-radius: 12px;
}

.contact-us:hover {
    background-color: rgb(201, 0, 0);
    border: rgb(201, 0, 0) 1px solid;
    color: #fff;
}

a {
    text-decoration: none;
}

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