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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    color: #555;
    font-weight: 500;
    position: relative;
}

.nav-right a:hover {
    color: #3498db;
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-right a:hover::after {
    width: 100%;
}

/* Hero Split Layout */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-visual {
    flex: 1;
    min-height: 500px;
    overflow: hidden;
}

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

/* Buttons and CTAs */
.cta-primary,
.cta-primary-large,
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover,
.cta-primary-large:hover,
.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.cta-primary-large {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

.cta-secondary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover,
.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.cta-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #27ae60;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: #229954;
    transform: translateY(-2px);
}

/* Split Sections */
.split-standard,
.split-reverse {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
}

.split-reverse {
    flex-direction: row-reverse;
    background: #f8f9fa;
}

.split-content,
.split-visual {
    flex: 1;
    padding: 2rem;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.split-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Values Grid */
.values-grid {
    display: flex;
    gap: 2rem;
    padding: 5rem 5%;
    background: #ffffff;
}

.value-card {
    flex: 1;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.testimonial-large {
    font-size: 1.8rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 300;
}

.testimonial-author {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

/* CTA Banner */
.cta-banner,
.cta-about,
.cta-services-bottom,
.contact-cta {
    padding: 5rem 5%;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.cta-banner-content,
.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner h2,
.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-banner p,
.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Services Preview Section */
.services-preview {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.2rem;
    color: #666;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-option {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-option:hover {
    transform: translateY(-5px);
    border-color: #3498db;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
}

.service-option h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-desc {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #2980b9;
}

.service-option.selected {
    border-color: #27ae60;
    background: #e8f8f0;
}

.service-option.selected .select-service {
    background: #27ae60;
}

/* Form Section */
.form-section {
    padding: 5rem 5%;
    background: #ffffff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.event-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1.2rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5% 1rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #aaa;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #aaa;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

/* Page Hero */
.page-hero {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

/* Quote Section */
.quote-section {
    padding: 5rem 5%;
    background: #f8f9fa;
    text-align: center;
}

.large-quote {
    max-width: 900px;
    margin: 0 auto;
    font-size: 2rem;
    line-height: 1.6;
    font-style: italic;
    color: #2c3e50;
    font-weight: 300;
}

/* Team Section */
.team-section {
    padding: 5rem 5%;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 1.2rem;
    color: #666;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.team-member {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.member-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
    line-height: 1.6;
}

/* Values List */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.value-item p {
    color: #666;
}

/* Numbers Section */
.numbers-section {
    padding: 5rem 5%;
    background: #2c3e50;
    color: #ffffff;
}

.numbers-grid {
    display: flex;
    gap: 3rem;
}

.number-item {
    flex: 1;
    text-align: center;
}

.number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.number-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Service Detailed Pages */
.service-detailed {
    padding: 4rem 5%;
}

.service-detailed.alternate {
    background: #f8f9fa;
}

.service-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.service-split.reverse {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
}

.service-tagline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.service-price-large {
    font-size: 3rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.service-includes h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Additional Services */
.additional-services {
    padding: 5rem 5%;
    background: #ffffff;
    text-align: center;
}

.additional-services h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.addon-card {
    flex: 1 1 calc(33.333% - 1.4rem);
    min-width: 250px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
}

.addon-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.addon-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.addon-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
}

/* Pricing FAQ */
.pricing-faq {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.pricing-faq h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-split {
    display: flex;
    gap: 4rem;
    padding: 4rem 5%;
}

.contact-info {
    flex: 1;
}

.contact-visual {
    flex: 1;
}

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

.contact-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-detail p {
    color: #666;
    line-height: 1.8;
}

.contact-detail a {
    color: #3498db;
    font-weight: 600;
}

.contact-detail .note {
    font-size: 0.9rem;
    font-style: italic;
    color: #888;
    margin-top: 0.5rem;
}

.contact-extra-info {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact-extra-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-extra-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Map Section */
.map-section {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.map-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.map-info {
    max-width: 1200px;
    margin: 0 auto;
}

.map-placeholder {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

.directions {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
}

.directions h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.directions p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 5%;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-selected {
    background: #e8f8f0;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 0.5rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

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

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.thanks-extra {
    padding: 4rem 5%;
    background: #f8f9fa;
    text-align: center;
}

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

.extra-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.extra-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: #3498db;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 5%;
    background: #ffffff;
}

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

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    color: #888;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-right {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-visual {
        min-height: 300px;
    }

    .split-standard,
    .split-reverse {
        flex-direction: column;
    }

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

    .testimonial-large {
        font-size: 1.3rem;
    }

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

    .service-option {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

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

    .team-member {
        flex: 1 1 100%;
    }

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

    .service-split,
    .service-split.reverse {
        flex-direction: column;
    }

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

    .addon-card {
        flex: 1 1 100%;
    }

    .contact-split {
        flex-direction: column;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

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

    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

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

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

    .split-content h2 {
        font-size: 1.8rem;
    }

    .cta-banner h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }
}
