/**
 * Inner Pages Unified Styles
 * Version: 1.0.0
 */

/* Header Section */
.page-header-section {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 50%, #059669 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.page-header-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumbs {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .separator {
    margin: 0 10px;
    opacity: 0.6;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

/* Content Section */
.page-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.page-content-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* Typography */
.content-wrapper h2 {
    font-size: 2rem;
    color: #1E293B;
    margin: 40px 0 20px;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    color: #334155;
    margin: 30px 0 15px;
}

.content-wrapper p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #52525B;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header-section {
        padding: 80px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content-wrapper {
        padding: 40px 20px;
    }
}
