:root {
    --primary-orange: #f3811f;
    --white: #ffffff;
    --text-dark: #222222;
    --text-light: #666666;
}

.about-hero {
    height: max-content;
    background-size: cover;
    background-position: center;
    background-color: #032475;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 50px;
    padding-bottom: 50px;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    top: 70%;
    transform: translateY(-70%);
    margin-left: 15px;
    margin-right: 10px;
}

.hero-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-grid {
    display: block;
    gap: 60px;
    max-width: calc(100% - 20%);
    left: 10%;
    margin: 0 auto;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.4rem;
    line-height: 1.8;
}

.about-image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image-container {
        order: 2;
    }
}

#content ol {
    list-style-position: inside;
    padding-left: 0;
    margin-top: 20px;
}

#content ol li {
    margin-bottom: 12px;
    font-weight: 500;
}

#content ul {
    list-style-type: "✔ ";
    list-style-position: inside;
    padding-left: 0;
}

#content ul li {
    margin-bottom: 8px;
}

.hero-logo {
    position: relative;
    display: inline-block;
    height: 100px;
}

@media screen and (max-width: 768px) {
    .about-hero {
        height: 200px;
    }

    .hero-logo {
        display: none;
    }

    .about-hero h1 {
        font-size: 2.5rem;
        top: 0;
        transform: translateY(0);
    }
}