/* Dynamic Page Styles */

/* Hero Section */
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero .hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff !important; /* Forced White */
}

.page-hero .hero-lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    color: #e2e8f0; /* Light Slate */
}

/* Content Body */
.page-text {
    padding: 60px 0;
    background-color: #ffffff;
}

.content-body {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
}

.content-body h2, 
.content-body h3, 
.content-body h4 {
    color: #0f172a;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-body ul, 
.content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-body li {
    margin-bottom: 0.5rem;
}

/* Feature Grid */
.page-features {
    padding: 60px 0;
    background-color: #f8fafc;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: #10b981;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}