﻿#about {
    padding: 60px 0;
}

    #about h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 1.5rem;
    }

    #about .lead {
        font-size: 0.95rem; /* Smaller for top paragraphs */
        font-weight: 400;
        line-height: 1.5; /* Tighter line-height to reduce wrapping */
        color: #6c757d;
        max-width: 800px; /* Limit width to prevent awkward breaks */
        margin: 0 auto 1.5rem;
        text-align: center;
    }

    #about .founder-description {
        font-size: 1.1rem; /* Bigger for founder paragraphs */
        font-weight: 400;
        line-height: 1.6;
        color: #333;
        margin-top: 1rem;
    }

    #about .founder-placeholder {
        max-width: 200px;
        margin: 0 auto;
    }

    #about .placeholder-image {
        width: 200px;
        height: 200px;
        background-color: #e9ecef;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        color: #6c757d;
        text-align: center;
        margin: 0 auto;
    }

    #about h5 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
        white-space: nowrap; /* Single line, no wrap */
        width: fit-content; /* Shrink-wrap to content */
        margin: 0 auto 1rem; /* Center and space below */
    }

    #about .row {
        gap: 2rem;
        flex-wrap: nowrap; /* Force one line on desktop, no wrapping */
    }

    #about .col-md-4 {
        flex: 0 0 33.333%; /* Equal 1/3 width, no flex-grow */
        max-width: 33.333%; /* Prevent overflow wrapping */
    }

    #about .text-muted {
        font-size: 1rem;
        line-height: 1.6;
    }

@media (max-width: 991px) {
    #about .row {
        flex-wrap: wrap; /* Allow wrapping on mobile */
    }

    #about .col-md-4 {
        flex: 0 0 100%; /* Full width on small screens */
        max-width: 100%;
    }
}

.hero {
    padding: 80px 0; /* Adjusted to match Figma spacing */
}

    .hero .row {
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .hero h2 {
        font-size: 1.5rem;
        color: #6c757d;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        color: #6c757d;
    }

    .hero img {
        border-radius: 10px;
    }
