/* ==========================================================================
   Page Template Styles
   ========================================================================== */

.page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.page-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.page-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: #000;
    font-weight: 600;
    margin: 2.5rem 0 1.25rem;
    line-height: 1.3;
}

.page-content h2 {
    font-size: 2rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.page-content h3 {
    font-size: 1.625rem;
}

.page-content h4 {
    font-size: 1.375rem;
}

.page-content h5 {
    font-size: 1.25rem;
}

.page-content h6 {
    font-size: 1.125rem;
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content ul,
.page-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.75rem;
}

.page-content ul li::marker {
    color: #007cba;
}

.page-content blockquote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #007cba;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    border-radius: 0 12px 12px 0;
    position: relative;
}

.page-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #007cba;
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.3;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-content a {
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-content a:hover {
    color: #005a87;
    text-decoration: underline;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.page-content th,
.page-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.page-content th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.page-content tr:hover {
    background: #f8f9fa;
}

/* Call-to-Action Sections */
.page-cta {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
}

.page-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.page-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.page-cta-button {
    display: inline-block;
    background: white;
    color: #007cba;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .page-container {
        padding: 1.5rem 1rem;
    }
    
    .page-title {
        font-size: 2.25rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .page-featured-image {
        max-height: 300px;
        margin-bottom: 2rem;
    }
    
    .page-content {
        font-size: 1rem;
    }
    
    .page-content h2 {
        font-size: 1.75rem;
    }
    
    .page-content h3 {
        font-size: 1.5rem;
    }
    
    .page-content h4 {
        font-size: 1.25rem;
    }
    
    .page-content blockquote {
        padding: 1rem 1.5rem;
        margin: 2rem 0;
    }
    
    .page-cta {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .page-content table {
        font-size: 0.875rem;
    }
    
    .page-content th,
    .page-content td {
        padding: 0.75rem 0.5rem;
    }
} 