/* About Page Styles (Intro & Gods) */

.intro-page {
    padding-bottom: 80px;
    background-color: #fff;
}

/* Hero Section */
.intro-page .hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdfaf5 0%, #f7f1e6 100%);
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.intro-page .page-title {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.intro-page .page-subtitle {
    font-size: 1.2rem;
    color: var(--subtext-color);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Content Area */
.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-hero-image {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.intro-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.intro-body {
    font-size: 1.2rem;
    line-height: 2;
    color: #444;
    text-align: justify;
}

.intro-body p {
    margin-bottom: 30px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .intro-page .hero-section {
        padding: 60px 0;
    }

    .intro-page .page-title {
        font-size: 2.2rem;
    }

    .intro-page .page-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .intro-hero-image {
        margin-bottom: 30px;
        border-radius: 12px;
    }

    .intro-body {
        font-size: 1.1rem;
        line-height: 1.8;
    }
}