/* Modern Reset */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

body {
    margin: 0;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #f5f5f5;
    background-color: #0f0f0f;
}

/* Layout System */
.page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.25;
    margin: 0 0 1.25rem 0;
    color: #ffffff;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 400;
    letter-spacing: -0.015em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -0.008em;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.003em;
}

p {
    margin: 0 0 1.6rem 0;
    color: #d1d5db;
    max-width: 70ch;
    font-weight: 400;
}

a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #3b82f6;
}

/* Typography */
h1, h2, h3 {
    font-weight: bold;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

/* Navigation */
.site-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #374151;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-mark {
    height: 32px;
    width: auto;
}

.brand-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-item:hover,
.nav-item.current {
    color: #ffffff;
}

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

.menu-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    position: relative;
    transition: background-color 0.2s ease;
}

.menu-line::before,
.menu-line::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    transition: all 0.2s ease;
}

.menu-line::before {
    top: -6px;
}

.menu-line::after {
    top: 6px;
}

/* Introduction Section */
.introduction {
    padding: 180px 0 140px;
    background-color: #1a1a1a;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.intro-content {
    padding-top: 4rem;
}

.intro-heading {
    margin-bottom: 2.5rem;
    max-width: 16ch;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.75;
}

.intro-visual {
    position: relative;
}

.visual-frame {
    position: relative;
    padding: 2rem;
    background-color: #2a2a2a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
}

.visual-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission Statement */
.mission-statement {
    padding: 110px 0;
    background-color: #1a1a1a;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start;
}

.mission-content {
    padding-top: 2rem;
}

.mission-title {
    margin-bottom: 2rem;
    max-width: 12ch;
}

.mission-body {
    font-size: 1.125rem;
    line-height: 1.7;
}

.mission-visual {
    position: relative;
}

.mission-figure {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.mission-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Facility Overview */
.facility-overview {
    padding: 130px 0;
    background-color: #0f0f0f;
}

.overview-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start;
}

.overview-metrics {
    padding-top: 3rem;
}

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

.metric-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    min-width: 120px;
}

.metric-label {
    font-size: 1rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.metric-description {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.5;
}

.overview-visual {
    position: relative;
}

.facility-figure {
    position: relative;
    overflow: hidden;
}

.facility-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Pricing Information */
.pricing-information {
    padding: 130px 0;
    background-color: #1a1a1a;
}

.pricing-structure {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing-heading {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 20ch;
    margin-left: auto;
    margin-right: auto;
}

.service-category {
    margin-bottom: 6rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    margin-bottom: 3rem;
    font-size: 1.5rem;
    color: #f5f5f5;
    border-bottom: 1px solid #374151;
    padding-bottom: 1rem;
}

.service-offerings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-offering {
    background-color: #2a2a2a;
    padding: 2.75rem;
    border: 1px solid #374151;
    border-radius: 6px;
    transition: box-shadow 0.2s ease;
}

.service-offering:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.offering-details {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offering-name {
    margin-bottom: 1rem;
    color: #ffffff;
}

.offering-price {
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.price-period {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 400;
}

.offering-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.offering-features li {
    padding: 0.25rem 0;
    color: #4a4a4a;
    font-size: 0.875rem;
}

.offering-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.offering-text {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.service-offering.highlighted {
    background-color: #374151;
    border-color: #60a5fa;
}

/* Environment Section */
.environment-section {
    padding: 120px 0;
    background-color: #1a1a1a;
}

.environment-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 8rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start;
}

.environment-visual {
    order: 2;
}

.environment-figure {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.environment-image {
    width: 100%;
    height: auto;
    display: block;
}

.environment-content {
    order: 1;
    padding-top: 3rem;
}

.environment-heading {
    margin-bottom: 2.5rem;
    max-width: 12ch;
}

.environment-text {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Contact Form */
.inquiry-section {
    padding: 120px 0;
    background-color: #0f0f0f;
}

.inquiry-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.inquiry-content {
    text-align: center;
}

.inquiry-heading {
    margin-bottom: 1.5rem;
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
}

.inquiry-intro {
    margin-bottom: 3rem;
    font-size: 1.125rem;
    color: #9ca3af;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    max-width: 480px;
    margin: 0 auto;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
}

.field-input,
.field-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #374151;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #2a2a2a;
    color: #ffffff;
    transition: border-color 0.2s ease;
}

.field-input:focus,
.field-textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.field-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    padding: 0.875rem 2rem;
    background-color: #60a5fa;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    justify-self: start;
}

.submit-button:hover {
    background-color: #3b82f6;
}

.response-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-size: 0.875rem;
}

.response-message.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.response-message.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.hidden {
    display: none;
}

/* Facilities Section */
.facilities-section {
    padding: 120px 0;
    background-color: #1a1a1a;
}

.facilities-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start;
}

.facilities-content {
    padding-top: 2rem;
}

.facilities-heading {
    margin-bottom: 3rem;
    max-width: 12ch;
}

.facilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 480px;
}

.facility-feature {
    padding-bottom: 2rem;
    border-bottom: 1px solid #374151;
}

.facility-feature:last-child {
    border-bottom: none;
}

.feature-title {
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.feature-description {
    color: #d1d5db;
    line-height: 1.6;
}

.facilities-visual {
    position: relative;
}

.facilities-figure {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.facilities-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonials Section */
.testimonials-section {
    padding: 130px 0;
    background-color: #1a1a1a;
}

.testimonials-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonials-heading {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.testimonial-item {
    background-color: #2a2a2a;
    padding: 2.75rem;
    border: 1px solid #374151;
    border-radius: 6px;
    transition: box-shadow 0.2s ease;
}

.testimonial-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 0.875rem;
    color: #9ca3af;
}

.author-name {
    display: block;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-detail {
    font-weight: 400;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background-color: #0f0f0f;
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.location-heading {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
}

.map-frame {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #374151;
    background-color: #2a2a2a;
}

/* Information Section */
.information-section {
    padding: 120px 0;
    background-color: #1a1a1a;
}

.information-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.information-heading {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
}

.faq-collection {
    display: grid;
    gap: 1rem;
}

.faq-entry {
    border: 1px solid #374151;
    border-radius: 4px;
}

.faq-question {
    padding: 1.5rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #374151;
}

.faq-answer {
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-top: 1px solid #374151;
    color: #d1d5db;
    line-height: 1.6;
}

/* Training Section */
.training-section {
    padding: 120px 0;
    background-color: #0f0f0f;
}

.training-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start;
}

.training-visual {
    order: 2;
}

.training-figure {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.training-image {
    width: 100%;
    height: auto;
    display: block;
}

.training-content {
    order: 1;
    padding-top: 3rem;
}

.training-heading {
    margin-bottom: 2.5rem;
    max-width: 12ch;
}

.training-text {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 130px 0;
    background-color: #1a1a1a;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 8rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start;
}

.contact-visual {
    order: 2;
}

.contact-figure {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.contact-image {
    width: 100%;
    height: auto;
    display: block;
}

.contact-content {
    order: 1;
    padding-top: 2rem;
}

.contact-heading {
    margin-bottom: 2rem;
    max-width: 12ch;
}

.contact-intro {
    margin-bottom: 3rem;
}

.contact-intro p {
    margin-bottom: 1rem;
    color: #d1d5db;
    max-width: 60ch;
}

.contact-details {
    display: grid;
    gap: 2rem;
    max-width: 320px;
}

.contact-detail {
    padding-bottom: 2rem;
    border-bottom: 1px solid #374151;
}

.contact-detail:last-child {
    border-bottom: none;
}

.detail-title {
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.detail-text {
    color: #d1d5db;
    line-height: 1.6;
}

/* Legal Pages */
.terms-section,
.privacy-section {
    background-color: #0f0f0f;
    padding: 100px 0 80px;
    min-height: calc(100vh - 200px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-intro {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #374151;
    margin-bottom: 3rem;
}

.legal-intro p {
    margin-bottom: 1rem;
    color: #d1d5db;
    line-height: 1.6;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 3rem;
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #374151;
}

.legal-section h2 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.4rem;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #d1d5db;
    line-height: 1.6;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.last-updated {
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 2rem;
}

/* Site Footer */
.site-footer {
    padding: 4rem 0 3rem;
    background-color: #0f0f0f;
    color: #ffffff;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand-mark {
    height: 28px;
    width: auto;
}

.footer-brand-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-navigation {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-credits {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Header Styles for Privacy/Terms Pages */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #374151;
    z-index: 100;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

.nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.current {
    color: #ffffff;
}

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

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    position: relative;
    transition: background-color 0.2s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    transition: all 0.2s ease;
}

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

.hamburger::after {
    top: 6px;
}

/* Footer Styles for Privacy/Terms Pages */
.footer {
    background-color: #0f0f0f;
    color: #ffffff;
    padding: 3rem 0 2rem;
    border-top: 1px solid #374151;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    height: 28px;
    width: auto;
}

.footer-logo-text {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .intro-layout,
    .mission-grid,
    .overview-layout,
    .environment-layout,
    .facilities-layout,
    .training-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .intro-visual,
    .overview-visual,
    .environment-visual,
    .facilities-visual,
    .training-visual,
    .contact-visual {
        order: -1;
    }

    .intro-content,
    .overview-metrics,
    .environment-content,
    .facilities-content,
    .training-content,
    .contact-content {
        order: 1;
        padding-top: 0;
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .footer-layout {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav-list {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        padding: 1rem 24px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .introduction {
        padding: 100px 0 80px;
    }

    .intro-layout {
        gap: 3rem;
    }

    .visual-frame {
        padding: 1rem;
    }

    .mission-grid,
    .facilities-layout,
    .training-layout {
        gap: 3rem;
    }

    .pricing-structure,
    .testimonials-layout,
    .information-layout {
        padding: 0 20px;
    }

    .service-offerings {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-collection {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        max-width: none;
    }

    .footer-layout {
        padding: 0 20px;
    }

    .header-content {
        padding: 1rem 0;
    }

    .logo-text {
        font-size: 1rem;
    }

    .footer-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .nav-wrapper {
        padding: 0.75rem 20px;
    }

    .introduction {
        padding: 80px 0 60px;
    }

    .intro-layout {
        gap: 2rem;
        padding: 0 20px;
    }

    .mission-grid,
    .overview-layout,
    .environment-layout,
    .facilities-layout,
    .training-layout,
    .contact-layout {
        padding: 0 20px;
        gap: 2rem;
    }

    .pricing-heading,
    .testimonials-heading,
    .information-heading,
    .location-heading {
        margin-bottom: 3rem;
    }

    .service-offering {
        padding: 2rem;
    }

    .offering-price {
        font-size: 1.75rem;
    }

    .testimonial-item {
        padding: 2rem;
    }

    .contact-details {
        max-width: none;
    }
}
