/* about.css */

.founder-hero-section {
    background-color: #034948;
    color: #fff;
    padding: 80px 20px;
}

.founder-hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-image {
    flex: 1;
    text-align: center;
}

.founder-image img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.founder-message {
    flex: 2;
    padding-left: 50px;
}

.founder-message h1 {
    font-size: 2.8rem;
    color: #bfa24b;
    margin-bottom: 20px;
}

.founder-message p {
    font-size: 1.2rem;
    line-height: 1.7;
    font-family: 'Segoe UI', serif;
}

.founder-message .founder-name {
    font-size: 1.1rem;
    margin-top: 20px;
    color: #bfa24b;
    font-weight: bold;
}

.about-section {
    padding: 60px 20px;
    background-color: #f9f7f1;
    min-height: 80vh;
}

.about-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.about-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #034948;
}

.about-content {
    font-family: 'Segoe UI', serif;
    color: #333;
    line-height: 1.8;
}

.about-block {
    margin-bottom: 40px;
}

.about-block h2 {
    color: #bfa24b;
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

/* Responsive styles for about page */
@media (max-width: 768px) {
    .founder-hero-section .container {
        flex-direction: column;
    }

    .founder-message {
        padding-left: 0;
        padding-top: 30px;
    }
}
