/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
}

.logo:hover {
    color: #1d4ed8;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: #333;
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-menu {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    padding: 1rem 0;
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    padding: 0;
}

.nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    font-weight: 500;
    transition: background 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #f3f4f6;
    color: #2563eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero */
.page-hero {
    background: #f9fafb;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.page-hero h1 {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: #6b7280;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background: #1d4ed8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.btn-secondary {
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #fff;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    font-size: 1.875rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

h2 {
    font-size: 1.875rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

/* Philosophy Section */
.philosophy {
    background: #f9fafb;
}

.principles-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.principle-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.principle-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.principle-icon img {
    width: 100%;
    height: 100%;
}

/* Two Column Layout */
.two-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.column-content,
.column-visual {
    flex: 1;
}

.column-content p {
    margin-bottom: 1rem;
}

.column-visual img {
    width: 100%;
    border-radius: 0.75rem;
}

/* Overview Section */
.overview-alt {
    background: #fff;
}

/* Services Featured */
.services-featured {
    background: #fff;
}

.featured-services {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-highlight {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid #2563eb;
}

.service-highlight h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.service-features {
    list-style: disc;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.link-arrow {
    color: #2563eb;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.link-arrow:hover {
    color: #1d4ed8;
}

/* Stats Section */
.stats-section {
    background: #1e40af;
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Industries */
.industries {
    background: #f9fafb;
}

.industry-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.industry-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 280px;
}

.industry-card h3 {
    font-size: 1.25rem;
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.industry-card p {
    color: #6b7280;
    font-size: 0.9375rem;
}

/* Testimonials */
.testimonials {
    background: #fff;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid #2563eb;
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 1.5rem;
}

.testimonial footer {
    display: flex;
    flex-direction: column;
}

.testimonial strong {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial span {
    color: #6b7280;
    font-size: 0.9375rem;
}

/* Process */
.process {
    background: #f9fafb;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

/* Benefits */
.benefits {
    background: #fff;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item img {
    width: 56px;
    height: 56px;
}

.benefit-content h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

/* FAQ */
.faq {
    background: #f9fafb;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-icon {
    font-size: 1.5rem;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: #4b5563;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    padding: 0.75rem 1.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Story Section */
.story,
.commitment {
    background: #fff;
}

.content-block {
    max-width: 800px;
}

.content-block p {
    margin-bottom: 1.25rem;
    color: #4b5563;
}

.content-text {
    margin-bottom: 1.25rem;
    color: #4b5563;
}

/* Values */
.values-section {
    background: #f9fafb;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 280px;
}

.value-card h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #6b7280;
}

/* Team */
.team-intro,
.leadership {
    background: #fff;
}

.leader-profiles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.leader-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid #2563eb;
}

.leader-title {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-card p {
    color: #4b5563;
}

/* Milestones */
.milestones {
    background: #f9fafb;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    min-width: 80px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #6b7280;
}

/* Accreditations */
.accreditations {
    background: #fff;
}

.accreditation-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.accreditation-item {
    flex: 1;
    min-width: 280px;
}

.accreditation-item h3 {
    color: #1e40af;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.accreditation-item p {
    color: #6b7280;
}

/* Services Page */
.services-intro {
    background: #f9fafb;
}

.services-list {
    background: #fff;
}

.service-item {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    color: #1e40af;
    margin-bottom: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.service-description {
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-column h4 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.detail-column ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.detail-column li {
    margin-bottom: 0.5rem;
    color: #6b7280;
}

/* Service Benefits */
.service-benefits {
    background: #f9fafb;
}

.benefits-comparison {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-point {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.benefit-point h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.benefit-point p {
    color: #6b7280;
}

/* Delivery Options */
.delivery-options {
    background: #fff;
}

.format-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.format-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    flex: 1;
    min-width: 240px;
}

.format-card h3 {
    color: #1e40af;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.format-card p {
    color: #6b7280;
    font-size: 0.9375rem;
}

/* Custom Programmes */
.custom-programmes {
    background: #f9fafb;
}

/* Contact Page */
.contact-main {
    background: #fff;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2,
.contact-details h2 {
    margin-bottom: 1rem;
}

.contact-method {
    margin-bottom: 2rem;
}

.contact-method h3 {
    color: #1e40af;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-method p {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: #2563eb;
    font-weight: 600;
}

.contact-note {
    font-size: 0.9375rem;
    color: #6b7280;
    font-style: italic;
}

.enquiry-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.enquiry-list li {
    margin-bottom: 0.75rem;
    color: #4b5563;
}

/* Location Info */
.location-info {
    background: #f9fafb;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-description,
.location-note {
    flex: 1;
}

.location-description h3,
.location-note h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.location-description p,
.location-note p {
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Company Info Section */
.company-info-section {
    background: #fff;
}

.company-details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.company-detail {
    flex: 1;
    min-width: 240px;
}

.company-detail h3 {
    color: #1e40af;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.company-detail p {
    color: #6b7280;
    margin-bottom: 0.25rem;
}

/* Contact FAQ */
.contact-faq {
    background: #f9fafb;
}

/* Alternative Contact */
.alternative-contact {
    background: #fff;
}

/* Thank You Page */
.thank-you-content {
    background: #fff;
    padding: 5rem 0;
    text-align: center;
}

.thank-you-message {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-message h1 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.thank-you-message p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Next Steps */
.next-steps {
    background: #f9fafb;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 240px;
}

.step-card .step-number {
    margin-bottom: 1rem;
}

.step-card h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #6b7280;
    font-size: 0.9375rem;
}

/* Explore More */
.explore-more {
    background: #fff;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resource-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid #2563eb;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.resource-card h3 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.resource-card p {
    color: #6b7280;
}

/* Legal Content */
.legal-content {
    background: #fff;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-text p {
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.legal-text ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.legal-text li {
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.legal-text a {
    color: #2563eb;
    text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.9375rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.cookie-table thead {
    background: #f3f4f6;
}

.cookie-table th {
    font-weight: 600;
    color: #1f2937;
}

.cookie-table td {
    color: #6b7280;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        box-shadow: none;
        padding: 0;
        display: flex;
        gap: 2rem;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu a {
        padding: 0.5rem 0;
        background: none !important;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .principles-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .principle-card {
        flex: 1;
        min-width: 280px;
    }

    .two-column {
        flex-direction: row;
        align-items: center;
    }

    .featured-services {
        flex-direction: row;
    }

    .service-highlight {
        flex: 1;
    }

    .testimonial-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1;
        min-width: 300px;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: 280px;
    }

    .benefit-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-actions {
        flex-shrink: 0;
    }

    .leader-profiles {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .leader-card {
        flex: 1;
        min-width: 300px;
    }

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
    }

    .service-details {
        flex-direction: row;
    }

    .detail-column {
        flex: 1;
    }

    .benefits-comparison {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-point {
        flex: 1;
        min-width: 280px;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info,
    .contact-details {
        flex: 1;
    }

    .location-content {
        flex-direction: row;
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .resource-links {
        flex-direction: row;
    }

    .resource-card {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    section {
        padding: 5rem 0;
    }
}