/* About Hero Section */
.about-hero {
    text-align: center;
    padding: 100px 10% 60px;
    background-color: #ffffff;
}

.about-hero h1 {
    font-size: 3rem;
    color: #001d3d; /* Dark Navy */
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.about-hero p {
    font-size: 1.15rem;
    color: #555;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Palakihin ang container ng image */
.story-image {
    flex: 2.5; /* Gawin itong 1.5 o 2 para mas malaki kaysa sa text column */
}

.story-image img {
    width: 100%; /* Susunod ito sa laki ng container */
    max-width: 600px; /* Pwede mong lagyan ng limit kung gaano lang kalaki */
    height: auto; /* Para hindi ma-stretch ang picture */
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.our-story .container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.story-image { flex: 1; min-width: 350px; }
.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.story-content { flex: 1; min-width: 350px; }
.story-content h2 {
    font-size: 2.2rem;
    color: #001d3d;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-content p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr; /* Pwedeng 1fr 1fr kung gusto mo ng two columns */
    gap: 10px;
}

.activity-list li {
    font-size: 1rem;
    color: #444;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
}

/* Custom Bullet Point (Orange Check) */
.activity-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .our-story .container { flex-direction: column; text-align: center; }
    .about-hero h1 { font-size: 2.2rem; }
}