* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d7a5e;
    --secondary-color: #1a4d3a;
    --accent-color: #e8a87c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background-color: var(--secondary-color);
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-disclaimer {
    font-size: 12px;
    color: var(--text-light);
}

.ad-label {
    padding: 6px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left, .hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-right {
    position: relative;
    background-color: #d4e4dc;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.intro-section {
    padding: 80px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-image {
    flex: 1;
    background-color: #d4e4dc;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.services-section {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #d4e4dc;
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.btn-select-service {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
}

.experience-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.experience-image, .experience-content {
    flex: 1;
}

.experience-image {
    background-color: #d4e4dc;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-content {
    padding: 80px 60px;
}

.experience-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.experience-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.booking-section {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.booking-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 32px;
}

.form-status {
    padding: 12px;
    margin-bottom: 24px;
    border-radius: 4px;
    display: none;
}

.form-status.error {
    display: block;
    background-color: #fee;
    color: #c33;
    border: 1px solid #c33;
}

.form-status.success {
    display: block;
    background-color: #efe;
    color: #3a3;
    border: 1px solid #3a3;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input, .form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
}

.btn-submit {
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.testimonials-section {
    padding: 80px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
}

.testimonial {
    flex: 1;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.info-section {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.info-block {
    flex: 1;
    padding: 32px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.info-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-final, .cta-about, .booking-cta {
    padding: 80px 24px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-final .cta-secondary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-final .cta-secondary:hover {
    background-color: var(--bg-light);
}

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #aaa;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #aaa;
}

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: #d4e4dc;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay h1 {
    color: white;
    font-size: 56px;
}

.about-intro {
    padding: 80px 24px;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-text-main h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.about-text-main p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.values-image {
    flex: 1;
    background-color: #d4e4dc;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-content {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-light);
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

.value-item {
    margin-bottom: 28px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    justify-content: center;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    background-color: #d4e4dc;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-member p {
    font-size: 16px;
    color: var(--text-light);
}

.philosophy-section {
    padding: 80px 24px;
}

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

.philosophy-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.philosophy-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-block {
    flex: 1;
}

.philosophy-block p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-image {
    flex: 1;
    background-color: #d4e4dc;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.fleet-section {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.fleet-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 32px;
}

.fleet-content {
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-content > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.7;
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.feature {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    padding: 24px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.page-header {
    text-align: center;
    padding: 80px 24px 40px;
    background-color: var(--bg-light);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
}

.service-full {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-full-image {
    flex: 1;
    background-color: #d4e4dc;
}

.service-full-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-full-content {
    flex: 1;
}

.service-full-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.duration {
    padding: 8px 16px;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.price-tag {
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
}

.service-full-content > p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-details h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-details ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-details ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.booking-info {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.info-grid h2 {
    flex-basis: 100%;
    text-align: center;
    font-size: 36px;
    margin-bottom: 24px;
}

.info-item {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    padding: 24px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-section {
    padding: 60px 24px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.map-placeholder {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #d4e4dc;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 24px;
}

.map-overlay p {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.faq-section {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.hours-highlight {
    padding: 80px 24px;
}

.hours-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hours-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.hours-grid {
    display: flex;
    gap: 40px;
}

.hours-block {
    flex: 1;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.hours-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.hours-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-cta {
    padding: 80px 24px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

.thanks-section {
    padding: 100px 24px;
    min-height: 600px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-icon svg {
    display: inline-block;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.booking-summary {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.btn-primary {
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-secondary {
    padding: 16px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.thanks-contact {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-contact p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-email {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.legal-page {
    padding: 60px 24px 100px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-container p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-container ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.cookie-table {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.cookie-table h3 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .hero-split, .intro-container, .experience-split, .values-split, .philosophy-content, .contact-container, .service-full {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex-basis: 100%;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .info-container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .steps-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .hours-grid {
        flex-direction: column;
    }
}