/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --tertiary-color: #2a2a2a;
    --accent-color: #e74c3c;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --border-radius: 10px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

/* ===== Memorial Circle ===== */
.memorial-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 4px solid var(--secondary-color);
    overflow: hidden;
    margin: 0 auto 30px;
    background-color: var(--white);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.memorial-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.memorial-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: var(--secondary-color);
    font-size: 3rem;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(42, 42, 42, 0.7)), url('images/healthcare.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
}

@keyframes slideshow {
    0%, 50% {
        background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(42, 42, 42, 0.7)), url('images/healthcare.jpg');
        background-size: cover;
        background-position: center;
    }
    50.1%, 100% {
        background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(42, 42, 42, 0.7)), url('images/community%20outreach.jpg');
        background-size: cover;
        background-position: center;
    }
}

/* ===== Memorial Circle ===== */
.memorial-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 5px solid var(--secondary-color);
    overflow: hidden;
    margin: 0 auto 30px;
    background-color: var(--white);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.memorial-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.memorial-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--primary-color) 100%);
    color: var(--secondary-color);
    font-size: 4rem;
    flex-direction: column;
}

.memorial-placeholder p {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-top: 10px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-images img {
    max-width: 45%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-success {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.btn-success:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* ===== Stats Section ===== */
.stats {
    background-color: var(--light-gray);
    padding: 60px 20px;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== Section Styles ===== */
.impact-stories,
.how-we-help,
.eligibility,
.problem-section,
.transparency-section,
.donation-section,
.contact-section {
    padding: 80px 20px;
}

.impact-stories {
    background-color: var(--light-gray);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

/* ===== Story Cards ===== */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.story-image {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto 20px;
}

.story-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.story-diagnosis {
    color: var(--tertiary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.story-text {
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.story-author {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== Help Cards ===== */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.help-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.help-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-top: 4px solid var(--secondary-color);
}

.help-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.help-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.help-card p {
    color: var(--text-light);
}

/* ===== Eligibility Section ===== */
.eligibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.eligibility-requirements,
.eligibility-process {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
}

.eligibility-requirements h3,
.eligibility-process h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 1rem;
}

.requirements-list i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.process-step {
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
}

.step-number {
    background-color: var(--secondary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.process-step h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.1);
}

textarea {
    resize: vertical;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
}

input[type="radio"],
input[type="checkbox"] {
    cursor: pointer;
}

.amount-input {
    display: flex;
    align-items: center;
}

.amount-input span {
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 10px;
    color: var(--primary-color);
}

.amount-input input {
    flex: 1;
}

/* ===== Donation Amount Buttons ===== */
.amount-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.amount-btn {
    background-color: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.amount-btn:hover,
.amount-btn.active {
    border-color: var(--secondary-color);
    background-color: #f0fdf4;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
}

.amount-btn span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.amount-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== Contact Section ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-container,
.contact-info-container {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--medium-gray);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-info-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.hotline-number {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.small-text {
    font-size: 0.85rem;
    font-style: italic;
}

/* ===== Social Links ===== */
.social-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--medium-gray);
}

.social-section h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.social-links i {
    font-size: 1.2rem;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.service-card i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ===== Mission Section ===== */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mission-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    text-align: center;
}

/* ===== Values Grid ===== */
.values-section {
    background-color: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.value-icon {
    font-size: 2rem;
    color: var(--tertiary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* ===== Problem Section ===== */
.problem-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.problem-stat {
    text-align: center;
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
}

.problem-stat h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* ===== Team Grid ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
}

.member-image {
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    margin: 0 auto 20px;
}

.team-member h3 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== Transparency Section ===== */
.transparency-section {
    background-color: var(--light-gray);
}

.transparency-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.transparency-content p {
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.expense-chart {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
}

.expense-item {
    margin-bottom: 25px;
    text-align: left;
}

.expense-item p {
    margin-top: 8px;
    text-align: left;
    color: var(--text-dark);
    font-weight: 600;
}

.expense-bar {
    height: 30px;
    border-radius: 6px;
    margin-bottom: 5px;
}

/* ===== Impact Section ===== */
.impact-section {
    background-color: var(--light-gray);
    padding: 60px 20px;
}

.impact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.impact-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.impact-item h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 60px 20px;
}

.faq-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.faq-item {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Form Messages ===== */
.form-message {
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== Payment Section ===== */
.payment-section {
    background-color: var(--light-gray);
    padding: 60px 20px;
}

.payment-card {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.payment-form {
    background-color: var(--white);
    padding: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons a {
        width: 100%;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .mission-content,
    .eligibility-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu a.active::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .amount-buttons {
        grid-template-columns: 1fr;
    }

    .stats .container {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 15px;
    }

    .social-links {
        justify-content: center;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }
}
