.about-wrap {
    width: 98%;
    height: 87%;

    margin: 0 auto;
    margin-top: 70px;
}

.about-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.about-left {
    margin-left: 100px;
}

.about-left img {
    width: 500px
}

.about-right {
    margin-right: 150px;
}

.about-subtitle {
    color: #F79346;
    font-family: 'GeneraLight';

    margin: 0;
}

.about-title {
    color: #fff;
    font-family: 'GeneraBold';
    font-size: 55px;

    margin: 0;
    margin-top: 18px;
    margin-bottom: 18px;
}

.about-paragraph {
    max-width: 500px;
    width: 100%;
    color: #ffffffb7;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;

    margin: 0;
}

.about-paragraph2 {
    max-width: 500px;
    width: 100%;
    color: #ffffff80;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;

    margin: 0;
    margin-top: 20px;
}

.about-btn {
    padding: 15px 45px;
    margin-top: 20px;

    border-radius: 9999px;
    border: none;
    background-color: #F79346;

    cursor: pointer;

    text-decoration: none;
    color: #fff;
    font-family: 'Godber';
    font-size: 22px;

    transition: all 0.3s ease;
}

.about-btn:hover {
    background-color: #6f4e37;
    transform: scale(1.05);
}

.about-btn:active {
    background-color: #F79346;
    transform: scale(0.95);
}

/* --- Media Queries for about.css --- */
@media screen and (max-width: 1200px) {
    .about-left img {
        width: 400px;
    }
    .about-left { margin-left: 50px; }
    .about-right { margin-right: 50px; }
}
@media screen and (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 50px;
    }
    .about-left, .about-right {
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about-title {
        font-size: 45px;
    }
    .about-wrap {
        height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
@media screen and (max-width: 768px) {
    .about-left img {
        width: 90%;
    }
    .about-title {
        font-size: 35px;
    }
    .about-paragraph, .about-paragraph2 {
        width: 90%;
        font-size: 16px;
    }
    .about-paragraph2 {
        margin-bottom: 20px;
    }
}