@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');

:root {
    /* Color Palette */
    --primary-color: #2c3e50;
    /* Deep Blue/Gray for text */
    --accent-color: #e67e22;
    /* Warm Orange/Amber simulating light */
    --accent-secondary: #27ae60;
    /* Natural Green */
    --bg-color: #fcfcfc;
    /* Off-white background */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;

    /* Typography */
    --font-main: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --font-heading: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "MS P明朝", "MS PMincho", serif;
    /* Elegant serif for headings */

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    /* Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --blur-amt: 12px;
}

/* Header Logo */
.logo {
    font-family: 'Prata', 'Didot', 'Bodoni MT', var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    /* Prata is natively elegant and uses 400 */
    color: #df8a48;
    /* Exact rich, warm copper-gold from the reference */
    letter-spacing: 0.1em;
    /* Balanced, luxurious tracking */
    text-decoration: none;
    transition: all 0.3s ease;
    padding-left: 0.1em;
}

.logo:hover {
    opacity: 0.7;
}

/* Page Header (Common) */
.page-header {
    background-image: url('../assets/images/glass_texture_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    padding-top: 80px;
    /* Offset for fixed header to ensuring optical centering */
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.4);
    /* Deep subtle overlay */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    /* Wider spacing like the reference */
    padding-left: 0.4em;
    /* Optical centering for letter-spacing */
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: center !important;
    width: 100%;
    margin: 0;
    font-family: var(--font-heading);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: url('../assets/images/glass_texture_bg.png');
    background-size: cover;
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: normal;
    color: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    border-radius: 2px;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amt));
    -webkit-backdrop-filter: blur(var(--blur-amt));
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 12px;
    padding: var(--spacing-lg);
}

.glass-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #d35400);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Navigation Styles */
.desktop-nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.desktop-nav ul li a:hover {
    color: var(--accent-color);
}

.desktop-nav ul li a.btn {
    color: var(--white);
}

.desktop-nav ul li a.btn:hover {
    color: var(--white);
}

.mobile-menu-toggle {
    display: none !important;
}

/* Responsive Navigation */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: block !important;
        cursor: pointer;
        z-index: 1001;
        /* Keep above the slide-out menu */
        position: relative;
    }

    .desktop-nav {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden off-screen by default */
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        /* Premium glass look */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 40px 40px;
        overflow-y: auto;
    }

    .desktop-nav.nav-active {
        right: 0;
        /* Slide in */
    }

    .desktop-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .desktop-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .desktop-nav ul li:last-child {
        border-bottom: none;
        margin-top: 20px;
    }

    .desktop-nav ul li a {
        display: block;
        padding: 18px 0;
        font-size: 1.15rem;
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .desktop-nav ul li a:hover {
        color: var(--accent-color);
    }

    .desktop-nav ul li a.btn {
        text-align: center;
        padding: 15px 30px;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

/* New Section Layouts for Top Page */
@media (max-width: 768px) {
    .section-row {
        flex-direction: column !important;
        gap: 30px !important;
    }

}

/* Philosophy Section Enhancements */
.philosophy-panel {
    padding: 60px 40px;
    margin-bottom: 80px;
    text-align: center;
    /* Ensure centering */
}

/* Service Page Premium Styles */
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    margin: 0 auto 60px auto;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    border: none;
    transition: box-shadow 0.4s ease;
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .service-card {
        flex-direction: row;
        align-items: stretch;
    }

    .service-img-wrapper {
        width: 45%;
        overflow: hidden;
    }

    .service-content {
        width: 55%;
        padding: 60px 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.service-img {
    background-color: #eee;
    background-size: cover;
    background-position: center;
    min-height: 250px;
    height: 100%;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-img {
    transform: scale(1.05);
    /* Elegant inner zoom effect */
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
}

.service-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 80%;
    background: var(--accent-color);
    border-radius: 2px;
}

.service-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Company Page Styles */
.philosophy-section {
    padding: 80px 0;
}

.philosophy-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 80px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    border: none;
}

.philosophy-box::after {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(230, 126, 34, 0.08);
    /* Accent color faint */
    font-family: serif;
    line-height: 1;
}

.philosophy-box h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.5;
}

.company-table {
    max-width: 900px;
    width: 100%;
    margin: 40px auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    /* Much softer shadow */
    border-radius: 12px;
    /* Sharper roundness like the image */
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.company-table th,
.company-table td {
    padding: 25px 30px;
    /* More airy */
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    /* Faint line */
    text-align: left;
    color: #444;
    /* Softer text */
    font-size: 0.95rem;
    /* Clean modern sizing */
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

.company-table th {
    width: 30%;
    color: #555;
    background: white;
    /* No background color! */
    font-weight: 500;
}

/* Store Card Styles */
.store-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 60px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.store-card>p {
    text-align: center;
    margin-bottom: 40px;
    color: #444;
}

.store-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.store-item {
    flex: 0 1 auto;
    text-align: left;
}

.store-item h4 {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: #4a5a6a;
    /* Subtle sophisticated dark grey-blue */
    margin-bottom: 8px;
    font-weight: 500;
}

.store-item p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

/* Generic Info Card (Used for Achievements etc) */
.info-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 60px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.info-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

/* Access Premium Card Styles */
.access-premium-card {
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.access-map-panel {
    flex: 1.2;
    /* Map takes slightly more space */
    min-height: 400px;
    position: relative;
}

.access-map-panel iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.access-info-panel {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.access-section-title {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    display: inline-block;
    align-self: flex-start;
}

.access-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.access-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    display: inline-block;
}

.access-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.access-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.transport-badge {
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    margin-top: 2px;
}

.bg-subway {
    background: var(--accent-color);
}

.bg-car {
    background: #10b981;
}

@media (max-width: 850px) {
    .access-premium-card {
        flex-direction: column;
    }

    .access-map-panel {
        min-height: 350px;
    }

    .access-info-panel {
        padding: 50px 30px;
    }
}

@media (max-width: 600px) {
    .philosophy-box {
        padding: 40px 20px;
        border-radius: 12px;
    }

    .philosophy-box::after {
        left: 10px;
        font-size: 6rem;
    }

    .company-table th,
    .company-table td {
        padding: 15px;
        font-size: 0.9rem;
    }

    .store-card,
    .info-card {
        padding: 40px 20px;
    }

    .store-grid {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }

    .store-item {
        text-align: center;
    }

    .map-container {
        height: 300px;
        /* Smaller map on mobile */
    }

    .access-details {
        gap: 40px;
        /* Reduced gap on mobile */
    }
}

.text-highlight {
    background: linear-gradient(transparent 70%, rgba(230, 126, 34, 0.2) 70%);
    font-weight: 500;
    padding: 0 4px;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.concept-item {
    text-align: center;
    padding: 2px;
}

.concept-item h4 {
    margin-bottom: 15px;
    font-size: 1.15rem;
    color: var(--primary-color);
    display: inline-block;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

.concept-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

/* News List Styles (New) */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Subtle base shadow */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Smooth spring-like ease */
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.news-item:hover {
    transform: translateY(-8px);
    /* Float effect */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    /* Deep shadow on hover */
}

.news-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.news-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 120px;
    margin-right: 30px;
}

.news-date {
    font-size: 1rem;
    color: #888;
    font-family: 'Georgia', serif;
    font-weight: 500;
}

.news-title {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
    flex: 1;
    line-height: 1.5;
}

.news-arrow {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-left: 20px;
}

.news-item:hover .news-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 600px) {
    .news-item {
        flex-direction: column;
        /* Stack vertically on mobile */
        align-items: flex-start;
    }

    .news-meta {
        flex-direction: row;
        /* Horizontal meta on mobile */
        align-items: center;
        margin-bottom: 10px;
        gap: 15px;
        width: 100%;
    }

    .news-category {
        margin-top: 0;
    }

    .news-arrow {
        display: none;
        /* Hide arrow on mobile to save space */
    }
}

/* School Page Styles */
.school-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.school-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.school-card:hover {
    transform: translateY(-5px);
}

.school-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    text-align: center;
}

/* Modern Schedule Table */
.schedule-table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.schedule-table-modern th {
    text-align: left;
    padding: 10px;
    color: #888;
    font-weight: normal;
    font-size: 0.9rem;
}

.schedule-table-modern td {
    background: #fcfcfc;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--primary-color);
    border: 1px solid #eee;
}

.schedule-time {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Pricing List Styled */
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.pricing-label {
    font-weight: bold;
    color: #555;
    font-size: 1rem;
}

.pricing-value {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
    line-height: 1.4;
}

/* Workshop Flow Styles */
.flow-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.flow-card {
    background: white;
    border-radius: 12px;
    padding: 30px 30px 30px 100px;
    /* Add Left Padding for number */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: left;
    /* Left align text */
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.flow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.flow-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.flow-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.flow-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* 
 * =====================================
 * GLOBAL FOOTER STYLES
 * =====================================
 */
.site-footer {
    background-color: #1a202c;
    /* Deep elegant navy/charcoal */
    color: #e2e8f0;
    /* Soft off-white for text readability */
    padding: 80px 0 30px;
    font-size: 0.95rem;
    margin-top: 60px;
    /* Space from page content */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.site-footer .footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    border: none;
    padding-bottom: 0;
}

.site-footer .footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.site-footer .footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--accent-color);
}

.site-footer .footer-col p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #cbd5e1;
}

.site-footer .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-col ul li {
    margin-bottom: 15px;
}

.site-footer .footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.site-footer .footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
    /* Subtle interaction */
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: #64748b;
    letter-spacing: 0.05em;
}

/* =====================================
 * COMPREHENSIVE MOBILE OVERRIDES
 * =====================================
 */
@media (max-width: 768px) {

    /* Page Headers */
    .page-header {
        height: 200px;
        padding-top: 60px;
    }

    .page-header h1 {
        font-size: 1.6rem;
        letter-spacing: 0.2em;
        padding-left: 0.2em;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    /* Workshop Flow Cards */
    .flow-card {
        padding: 25px 25px 25px 80px;
    }

    .flow-number {
        font-size: 2.5rem;
    }

    /* Pricing Rows (School) */
    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pricing-value {
        align-self: flex-start;
    }

    /* Mobile Containers */
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    /* Top Page Hero */
    .hero h1 {
        font-size: 2rem !important;
        letter-spacing: 0px !important;
    }

    .hero p {
        font-size: 1.1rem !important;
    }

    .hero {
        height: 80vh !important;
        background-attachment: scroll !important;
        /* Fix for some mobile browsers parallax jumping */
    }
}