/* Page Hero Styles - Centralized styling for all page templates */
/* Based on contact page styling for consistent spacing and visual hierarchy */

/* Page Wrapper - provides background and overall structure */
.page-wrapper {
    background: #f8f8f8;
}

/* Hero Section */
.page-hero {
    background: linear-gradient(135deg, #0082c3 0%, #005a8a 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 10px;
}

.page-hero .container {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .page-title {
    font-size: 3em;
    margin: 0 0 20px 0;
    font-weight: 700;
    color: white;
}

.page-hero .page-subtitle {
    font-size: 1.3em;
    margin: 0;
    opacity: 0.95;
    color: white;
}

/* Content Section - provides proper spacing below hero */
.page-content {
    padding: 0 20px 80px;
}

/* Responsive adjustments - matching contact page breakpoints */
@media (max-width: 968px) {
    .page-hero .page-title {
        font-size: 2em;
    }

    .page-hero .page-subtitle {
        font-size: 1.1em;
    }
}

@media (max-width: 600px) {
    .page-hero {
        padding: 40px 20px;
    }

    .page-hero .page-title {
        font-size: 1.8em;
    }
}