
:root {
    --Gold: #ffd700;
    --White: #ffffff;
    --Black: #000000;
    --Gray: #f0f0f0;
}

.about-section {
    max-width: 100%;
    padding: 10px 20px;
    text-align: center;
    background-image: url('https://worldmasteritravel.site/assets/img/src/about-us/awycircle.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-container {
    max-width: 1100px;
    margin: 50px auto;
    text-align: center;
    background-color: var(--White);
    padding: 70px 20px;
    border: 3px solid gold;
    color: var(--Black);
    position: relative;
    border-radius: 15px;
    background-image: url('https://worldmasteritravel.site/assets/img/src/about-us/awybox.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
}

.about-heading span {
    color: var(--Gold);
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    margin-bottom: 20px;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1200px) {
    .about-container {
        max-width: 900px;
        padding: 60px 20px;
    }
    .about-text {
        max-width: 700px;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 992px) {
    .about-container {
        max-width: 90%;
        padding: 50px 15px;
        margin: 40px auto;
    }
    .about-heading {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    .about-text {
        font-size: 1.1rem;
        line-height: 1.5;
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .about-section {
        padding: 5px 15px;
    }
    .about-container {
        padding: 40px 15px;
        margin: 30px auto;
        border-radius: 20px;
    }
    .about-heading {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .about-text {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 576px) {
    .about-section {
        padding: 5px 10px;
    }
    .about-container {
        padding: 30px 12px;
        margin: 20px auto;
        border-radius: 15px;
        border-width: 1px;
    }
    .about-heading {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    .about-text {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    .about-text small {
        font-size: 0.9rem;
    }
}