*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat', sans-serif;
}

.about-hero {
    margin-top: 150px;     
    width: 100%;
    height: 100vh;       
    overflow: hidden;
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.about-text {
    background: #f5f5f5;          /* light luxury grey */
    padding: 150px 20px;          /* big vertical spacing */
    text-align: center;
}

.about-wrapper {
    max-width: 850px;             /* narrow reading width */
    margin: 0 auto;
}

/* Title */
.about-wrapper h1 {
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

/* Subtitle */
.about-wrapper h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 70px;
}

.about-wrapper p {
    font-size: 18px;
    line-height: 2;
    color: #222;
    margin-bottom: 45px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {

    .about-hero {
        margin-top: 60px; 
        height: auto;
    }

    .about-hero img {
        height: auto;
        width: 100%;
        object-fit: contain;
    }

    .about-text {
        padding: 70px 25px;
    }

    .about-wrapper h1 {
        font-size: 30px;
    }

    .about-wrapper h3 {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .about-wrapper p {
        font-size: 15px;
        line-height: 1.8;
    }
}

.history-section {
    padding: 10px 60px;
    background: #f5f5f5;
    font-family: 'Montserrat', sans-serif;
}

/* Images Row */
.history-images {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    margin-top: -40px;
}

.history-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-left,
.image-right {
    flex: 1;
    max-height: 600px;
    overflow: hidden;
}

/* Text Section */
.history-text {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.history-wrapper {
    max-width: 850px;
    text-align: center;
    margin-bottom: 50px;
}

.history-wrapper h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 500;
}

.history-wrapper p {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 45px;
}

.history-wrapper-2 {
    max-width: 850px;
    text-align: center;
    margin-bottom: 50px;
}

.history-wrapper-2 h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 500;
}

.history-wrapper-2 p {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 5px;
}

@media (max-width: 768px) {

    .about-hero{
        margin-top: 0px;
    }

    .history-section {
        padding: 0px 20px;
    }

    .history-images {
        flex-direction: column;
        gap: 20px;
        margin-top: -40px;
    }

    .image-left,
    .image-right {
        max-height: 350px;
    }

    .history-wrapper{
        margin-top: -20px;
    }
    .history-wrapper h2 {
        font-size: 28px;
    }

    .history-wrapper p {
        font-size: 15px;
    }
}


.founder-section{
    margin-top: -100px;
    padding: 80px 20px;
    background: #f8f8f8;
    text-align: center;
}

.founder-wrapper{
    max-width: 1100px;
    margin: auto;
}

.founder-wrapper h2{
    color: #0a4049;
    margin-bottom: 50px;
    font-size: 32px;
}

.founder-container{
    display: flex;
    justify-content: center;
    gap: 150px;
    flex-wrap: wrap;
}

.founder-card{
    text-align: center;
    max-width: 250px;
}

.founder-card img{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.founder-card h3{
    font-size: 20px;
    margin-bottom: 5px;
    color: #000;
}

.founder-card p{
    font-size: 15px;
    color: #555;
}

@media (max-width: 1024px){

    .founder-container{
        gap: 40px;
    }

    .founder-card img{
        width: 180px;
        height: 180px;
    }

}

@media (max-width: 767px){

    .founder-container{
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .founder-card img{
        width: 160px;
        height: 160px;
    }

    .founder-wrapper h2{
        font-size: 26px;
    }

}