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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b4513;
    --accent-color: #c39361;
    --text-color: #333;
    --light-bg: #f9f7f4;
    --white: #ffffff;
    --border-color: #e0d9d0;
    --success-color: #27ae60;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-magazine {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 11px;
    color: #666;
    padding: 4px 8px;
    background-color: #f0f0f0;
    border-radius: 3px;
    order: 3;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: var(--text-color);
    font-size: 15px;
    text-transform: none;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-magazine {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.hero-content-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.hero-text-column {
    flex: 1;
}

.hero-text-column h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.hero-image-column {
    flex: 1;
    width: 100%;
}

.hero-image-column img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-primary {
    display: inline-block;
    padding: 16px 35px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 17px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #6d3610;
    color: var(--white);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.cta-primary-large {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary-large:hover {
    background-color: #6d3610;
    color: var(--white);
}

.intro-asymmetric {
    padding: 80px 0;
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.intro-sidebar {
    background-color: var(--light-bg);
    padding: 30px;
    border-left: 4px solid var(--accent-color);
}

.intro-sidebar h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefits-compact {
    list-style: none;
}

.benefits-compact li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.benefits-compact li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.intro-main h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-main p {
    margin-bottom: 18px;
    font-size: 18px;
}

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

.section-title-center {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.services-magazine-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card-large,
.service-card-medium {
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card-large img,
.service-card-medium img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

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

.service-content p {
    margin-bottom: 15px;
    color: #555;
}

.price-tag {
    display: inline-block;
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.btn-select-service {
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.cta-section-inline {
    text-align: center;
    margin-top: 40px;
}

.experience-showcase {
    padding: 80px 0;
}

.experience-columns {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.experience-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.experience-text p {
    font-size: 18px;
    line-height: 1.8;
}

.experience-image img {
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.testimonials-editorial {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonials-editorial h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonial-block {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--white);
    border-left: 4px solid var(--accent-color);
}

.testimonial-block blockquote {
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
}

.testimonial-block footer {
    margin-top: 15px;
    font-style: normal;
    color: #666;
    font-size: 15px;
}

.booking-section {
    padding: 80px 0;
}

.booking-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.booking-info h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.booking-form-container {
    background-color: var(--light-bg);
    padding: 35px;
    border-radius: 4px;
}

.booking-form-full {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.btn-submit:hover {
    background-color: #6d3610;
}

.why-choose-us {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    padding: 25px;
    background-color: var(--white);
    border-radius: 4px;
}

.feature-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.cta-final {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.cta-final h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-final p {
    font-size: 20px;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
}

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

.cta-final .cta-primary-large:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    text-align: center;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.btn-accept:hover {
    background-color: #229954;
}

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

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

.page-hero {
    padding: 60px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-intro {
    font-size: 20px;
    color: #555;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail-image img {
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-duration {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail-content p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin-bottom: 25px;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-price-box {
    margin-bottom: 20px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 4px;
    display: inline-block;
}

.price-amount {
    display: block;
    font-size: 34px;
    font-weight: bold;
    color: var(--secondary-color);
}

.price-note {
    display: block;
    font-size: 14px;
    color: #666;
}

.booking-cta {
    padding: 60px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.booking-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-story {
    padding: 60px 0;
}

.story-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-main h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-main p {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.8;
}

.stat-box {
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 4px;
    text-align: center;
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.our-philosophy {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.our-philosophy h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
}

.our-philosophy p {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.team-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.team-role {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p {
    font-size: 16px;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
}

.our-approach {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.our-approach h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.approach-columns {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-item {
    padding: 25px;
    background-color: var(--white);
    border-radius: 4px;
}

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

.values-section {
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 4px;
}

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

.contact-info-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-main h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
}

.contact-email {
    color: var(--text-color);
    font-weight: 600;
    pointer-events: none;
}

.contact-note {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

.info-box {
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 4px;
    margin-bottom: 20px;
}

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

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.info-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

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

.location-info h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.thanks-hero {
    padding: 80px 0;
    text-align: center;
    background-color: var(--light-bg);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--white);
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 20px;
    color: #555;
}

.thanks-details {
    padding: 60px 0;
}

.thanks-content h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.selected-service-box {
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 4px;
    margin-bottom: 30px;
    display: none;
}

.selected-service-box.show {
    display: block;
}

.thanks-note {
    padding: 20px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.thanks-explore {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.thanks-explore h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-explore p {
    font-size: 18px;
    margin-bottom: 30px;
}

.thanks-cta-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.legal-content {
    padding: 60px 0;
}

.legal-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-update {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: #777;
}

@media (min-width: 768px) {
    .ad-notice {
        order: 0;
        width: auto;
        margin-top: 0;
    }

    .hero-content-split {
        flex-direction: row;
        align-items: center;
    }

    .hero-text-column h1 {
        font-size: 52px;
    }

    .intro-grid {
        flex-direction: row;
        gap: 50px;
    }

    .intro-sidebar {
        flex: 0 0 280px;
    }

    .services-magazine-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card-large {
        flex: 1 1 100%;
        flex-direction: row;
    }

    .service-card-large img {
        width: 50%;
        height: auto;
    }

    .service-card-medium {
        flex: 1 1 calc(50% - 15px);
    }

    .experience-columns {
        flex-direction: row;
        align-items: center;
    }

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

    .booking-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .booking-info,
    .booking-form-container {
        flex: 1;
    }

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

    .feature-item {
        flex: 1 1 calc(50% - 15px);
    }

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

    .footer-column {
        flex: 1;
    }

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .service-detail-card {
        flex-direction: row;
        align-items: center;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: row-reverse;
    }

    .service-detail-image,
    .service-detail-content {
        flex: 1;
    }

    .story-layout {
        flex-direction: row;
    }

    .story-main {
        flex: 1;
    }

    .story-sidebar {
        flex: 0 0 280px;
    }

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

    .team-member {
        flex: 1 1 calc(33.333% - 27px);
    }

    .approach-columns {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-item {
        flex: 1 1 calc(50% - 15px);
    }

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

    .contact-main {
        flex: 1;
    }

    .contact-sidebar {
        flex: 0 0 320px;
    }

    .location-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .location-item {
        flex: 1 1 calc(33.333% - 17px);
    }

    .thanks-cta-grid {
        flex-direction: row;
        max-width: 600px;
    }

    .next-steps {
        padding: 0 40px;
    }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 4;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding-top: 15px;
    }

    .main-nav li {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }

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

    .section-title-center {
        font-size: 32px;
    }
}
