/* =============================================
   ABOUT PAGE CSS - Simplified Blackwatch Layout
   ============================================= */

.about-simplified-page {
    padding: 60px 0 80px 0;
    background: #ffffff;
    color: #000;
}

.page-about .about-simplified-page {
    padding-top: 120px;
}

.about-main-title {
    text-align: center;
    font-family: var(--font-heading, "Arial", sans-serif);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 0.02em;
    color: #111;
}

/* Vision and Mission Grid */
.vm-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 80px auto;
}

.vm-text {
    text-align: center;
}

.vm-heading {
    font-family: var(--font-heading, "Arial", sans-serif);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.vm-text p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #000;
}

.vm-image-container img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Founder Section */
.founder-simple {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.founder-title {
    font-family: var(--font-heading, "Arial", sans-serif);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111;
}

.founder-paragraphs p {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .vm-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-main-title {
        font-size: 1.8rem;
    }

    .founder-title {
        font-size: 1.4rem;
    }

    .founder-paragraphs p {
        font-size: 0.94rem;
        line-height: 1.75;
        word-break: break-word;
    }

    .founder-paragraphs br {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-about .about-simplified-page {
        padding-top: 105px;
    }

    .about-main-title {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }

    .vm-heading {
        font-size: 1.25rem;
    }

    .founder-title {
        font-size: 1.25rem;
        margin-bottom: 30px;
    }
}