:root {
    --accent-gold: #d4af37;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f7ef8a 100%);
    --navy-blue: #0a1172;
    --deep-blue: #1a237e;
    --charcoal: #2c3e50;
    --dark-gray: #495057;
    --white: #ffffff;
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: #f8f9fa;
    overflow-x: hidden;
}

main {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px 56px;
}

/* Typography */
h1,
h2,
h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    text-align: center;
    margin-bottom: 2rem;
}

p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

/* Layout */
.modern-layout {
    padding: 0;
}

.page-header {
    text-align: center;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

/* Hero */
.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 20px;
    text-align: center;
}

/* Content Blocks */
.about-content {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.section-title i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.about-text {
    white-space: pre-line;
    font-size: 1.05rem;
}

/* Grids */
.features-grid,
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card,
.mv-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid var(--accent-gold);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--navy-blue);
}

.feature-icon,
.mv-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--navy-blue);
    font-size: 1.4rem;
}

/* Loading & State */
.loading-container {
    text-align: center;
    padding: 50px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 32px 16px 40px;
    }

    .about-content {
        padding: 25px;
    }

    .hero-image {
        height: 250px;
    }
}