.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.about-story__content h2 { font-size: var(--text-3xl); color: var(--color-blue); margin: var(--space-3) 0 var(--space-6); }
.about-story__content .lead { margin-bottom: var(--space-6); }
.about-quote { border-left: 4px solid var(--color-yellow); padding: var(--space-4) var(--space-6); margin: var(--space-8) 0 0; font-size: var(--text-xl); font-family: var(--font-heading); font-style: italic; color: var(--color-blue); }
.about-quote cite { display: block; font-size: var(--text-sm); font-style: normal; color: var(--color-mid-grey); margin-top: var(--space-2); }
.about-story__image { position: relative; }
.about-story__image img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--card-radius); background: var(--color-blue-light); }
.about-story__badge { position: absolute; bottom: var(--space-6); left: var(--space-6); background: var(--color-yellow); color: var(--color-blue); padding: var(--space-4) var(--space-6); border-radius: var(--card-radius); }
.about-story__badge-number { font-family: var(--font-heading); font-size: var(--text-3xl); font-weight: 800; line-height: 1; }
.about-story__badge-text { font-size: var(--text-xs); font-weight: 600; }
@media (max-width: 1024px) { .about-story { grid-template-columns: 1fr; } .about-story__image img { height: 300px; } }

.vmv-card { background: var(--color-white); border-radius: var(--card-radius); padding: var(--space-8); box-shadow: var(--card-shadow); border-top: 4px solid var(--color-yellow); }
.vmv-card__icon { width: 60px; height: 60px; background: var(--color-blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-blue); margin-bottom: var(--space-4); }
.vmv-card h3 { font-size: var(--text-2xl); color: var(--color-blue); margin-bottom: var(--space-4); }
.vmv-card p, .vmv-card ul { color: var(--color-dark-grey); line-height: 1.7; }
.values-list { padding-left: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.values-list li { display: flex; align-items: flex-start; gap: var(--space-2); font-size: var(--text-sm); }
.values-list li::before { content: ''; width: 6px; height: 6px; background: var(--color-yellow); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }

.ownership-block { display: flex; gap: var(--space-8); align-items: flex-start; }
.ownership-block__icon { width: 80px; height: 80px; background: rgba(245,197,24,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-yellow); flex-shrink: 0; }
.ownership-block__content h2 { font-size: var(--text-3xl); color: var(--color-white); margin-bottom: var(--space-4); }
.ownership-block__content p { color: rgba(255,255,255,0.8); margin-bottom: var(--space-4); }
@media (max-width: 768px) { .ownership-block { flex-direction: column; } }

.details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-1); }
.detail-item { padding: var(--space-4) var(--space-6); border-bottom: 1px solid var(--color-border); display: flex; gap: var(--space-6); align-items: baseline; }
.detail-item:nth-child(odd) { background: var(--color-light-grey); }
.detail-item__label { font-family: var(--font-heading); font-size: var(--text-sm); font-weight: 700; color: var(--color-blue); min-width: 180px; flex-shrink: 0; }
.detail-item__value { color: var(--color-dark-grey); font-size: var(--text-base); }
@media (max-width: 768px) { .details-grid { grid-template-columns: 1fr; } .detail-item { flex-direction: column; gap: var(--space-1); } }

.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-8); flex-wrap: wrap; }
.cta-banner__text .section__title { margin-bottom: var(--space-3); }
.cta-banner__actions { display: flex; gap: var(--space-4); flex-wrap: wrap; flex-shrink: 0; }
@media (max-width: 768px) { .cta-banner__inner { flex-direction: column; align-items: flex-start; } .cta-banner__actions { width: 100%; } .cta-banner__actions .btn { flex: 1; justify-content: center; } }
