
:root {
    --Gold: #ffd700;
    --White: #ffffff;
    --Gray: #f0f0f0;
}

.about-section {
    max-width: 100%;
    padding: 20px 20px;
    text-align: center;
    background-color: var(--White);
    background-image: url('https://worldmasteritravel.site/assets/img/src/home/awycirclee.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/home/awynboxx.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;
}
     
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.about-btn {
    padding: 12px 18px;
    font-size: 16px;
    background-color: var(--Gold);
    color: var(--Black);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-btn:hover {
    transform: scale(1.03);
}
  
/* Media Queries for Responsiveness */
@media screen and (max-width: 1200px) {
    .about-container {
        max-width: 90%;
        padding: 60px 15px;
    }
    .about-text {
        max-width: 700px;
    }
}

@media screen and (max-width: 992px) {
    .about-container {
        margin: 40px auto;
        padding: 50px 15px;
    }
    .about-heading {
        font-size: 2rem;
    }
    .about-text {
        font-size: 1.1rem;
        max-width: 600px;
    }
}

@media screen and (max-width: 768px) {
    .about-section {
        padding: 5px 10px;
    }
    .about-container {
        margin: 30px auto;
        padding: 40px 15px;
        border-radius: 20px;
    }
    .about-heading {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .about-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    .about-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media screen and (max-width: 576px) {
    .about-container {
        margin: 20px auto;
        padding: 30px 12px;
        border-radius: 15px;
    }
    .about-heading {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    .about-text {
        font-size: 0.9rem;
    }
    .button-container {
        margin-top: 20px;
    }
    .about-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
}