.page-hero {
    margin-top: 72px;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.page-hero-title {
    font-size: 48px;
    color: #ffffff; /* Ensure white text */
    margin-bottom: 16px;
}


.page-hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

.our-story {
    padding: 50px 0;
    text-align: center;

}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 600px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--accent-color);
    padding: 20px 30px;
    border-radius: 8px;
}

.story-year {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
}

.story-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--background-light);
    border-radius: 8px;
}

.stat-item h3 {
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-light);
    margin: 0;
}

.vision-mission {
    padding: 100px 0;
    background: var(--background-light);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1); /* light transparent white background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3); /* icon stroke color */
    margin-bottom: 24px;
}


.vm-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.why-choose {
    padding: 100px 0;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.choose-item {
    padding: 40px;
    background: var(--background-light);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 41, 71, 0.05), rgba(26, 41, 71, 0.02));
    transition: width 0.3s ease;
}

.choose-item:hover::before {
    width: 100%;
}

.choose-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.choose-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.2;
    margin-bottom: 16px;
}

.choose-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.choose-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.core-values {
    padding: 100px 0;
    background: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.1); /* transparent white background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    stroke: rgba(255, 255, 255, 0.3); /* light transparent white icon */
}


.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.founder-section {
    padding: 100px 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.founder-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.founder-name {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.founder-title {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 24px;
}

.founder-quote {
    margin-top: 32px;
    padding: 24px 32px;
    background: var(--background-light);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1.7;
}

.founder-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 600px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-achievement {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.founder-achievement svg {
    color: var(--accent-color);
}

.founder-achievement span {
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 968px) {
    .page-hero-title {
        font-size: 36px;
    }

    .story-grid,
    .vm-grid,
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image,
    .founder-image {
        height: 400px;
    }

    .choose-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .our-story,
    .vision-mission,
    .why-choose,
    .core-values,
    .founder-section {
        padding: 60px 0;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero-title {
        font-size: 28px;
    }

    .page-hero-subtitle {
        font-size: 16px;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vm-card {
        padding: 40px 24px;
    }

    .choose-item {
        padding: 24px;
    }

    .founder-quote {
        padding: 16px 20px;
        font-size: 16px;
    }
}