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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

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

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

/* Navigation - Floating Asymmetric */
.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 12px;
    margin-left: 15px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
}

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

/* Hero Section - Asymmetric Layout */
.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    padding: 120px 40px 60px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-offset {
    width: 45%;
    padding: 80px 0 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title-large {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a252f;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 22px;
    color: #546e7a;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 16px 42px;
    background: #2c3e50;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-image-container {
    width: 55%;
    position: relative;
    padding-left: 40px;
}

.hero-image {
    width: 100%;
    height: 85vh;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e0e0e0;
}

/* Intro Section - Offset Layout */
.intro-offset {
    display: flex;
    padding: 120px 80px;
    gap: 80px;
    align-items: center;
    background: #ffffff;
}

.intro-left {
    width: 55%;
    padding-right: 40px;
}

.intro-left h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 700;
}

.intro-left p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-right-image {
    width: 45%;
}

.section-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #e0e0e0;
}

/* Services Section - Asymmetric Grid */
.services-asymmetric {
    padding: 100px 60px;
    background: #f8f9fa;
}

.services-header-offset {
    margin-left: 15%;
    margin-bottom: 80px;
}

.services-header-offset h2 {
    font-size: 56px;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 15px;
}

.services-header-offset p {
    font-size: 20px;
    color: #7f8c8d;
}

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

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.card-offset-1 {
    width: calc(50% - 20px);
    margin-top: 0;
}

.card-offset-2 {
    width: calc(50% - 20px);
    margin-top: 60px;
}

.card-offset-3 {
    width: calc(50% - 20px);
    margin-top: -40px;
}

.card-offset-4 {
    width: calc(50% - 20px);
    margin-top: 20px;
}

.card-offset-5 {
    width: calc(50% - 20px);
    margin-top: -20px;
}

.card-offset-6 {
    width: calc(50% - 20px);
    margin-top: 40px;
}

.service-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.service-image {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a252f;
    margin: 25px 25px 15px;
}

.service-card p {
    font-size: 16px;
    color: #546e7a;
    margin: 0 25px 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 25px 20px;
}

.btn-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #34495e;
    transform: translateY(-2px);
}

/* Testimonial Section */
.testimonial-inline {
    padding: 100px 80px;
    background: #2c3e50;
    color: #ffffff;
}

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

.testimonial-content blockquote {
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    font-weight: 300;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    color: #bdc3c7;
}

/* Booking Form Section */
.booking-form-section {
    padding: 120px 80px;
    background: #ffffff;
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 20%;
}

.form-container-asymmetric h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 15px;
}

.form-intro {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

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

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

.form-group select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Why Us Section - Offset */
.why-us-offset {
    padding: 100px 80px;
    background: #f8f9fa;
}

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

.why-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 60px;
    text-align: center;
}

.why-grid {
    display: flex;
    gap: 50px;
}

.why-item {
    flex: 1;
}

.why-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.why-item p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 80px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 25px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2980b9;
}

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

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

/* About Page Styles */
.about-hero {
    padding: 150px 80px 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-hero-content p {
    font-size: 22px;
    font-weight: 300;
}

.about-story {
    display: flex;
    padding: 100px 80px;
    gap: 60px;
    align-items: center;
    background: #ffffff;
}

.story-offset-left {
    width: 40%;
}

.story-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #e0e0e0;
}

.story-offset-right {
    width: 60%;
}

.story-offset-right h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 25px;
}

.story-offset-right p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.philosophy-section {
    padding: 100px 80px;
    background: #f8f9fa;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.philosophy-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 30px;
}

.philosophy-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.wide-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background-color: #e0e0e0;
}

.team-asymmetric {
    padding: 100px 80px;
    background: #ffffff;
}

.team-asymmetric h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 60px;
    text-align: center;
}

.team-grid-offset {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.team-member h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.team-role {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.values-offset {
    padding: 100px 80px;
    background: #f8f9fa;
}

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

.values-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 60px;
    text-align: center;
}

.values-list {
    display: flex;
    gap: 50px;
}

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

/* Services Page Styles */
.services-hero {
    padding: 150px 80px 80px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.services-hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-hero p {
    font-size: 22px;
    font-weight: 300;
}

.services-detailed {
    padding: 80px 60px;
    background: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 80px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    width: 45%;
}

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #e0e0e0;
}

.service-detail-content {
    width: 55%;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 15px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.service-features li {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.services-info {
    padding: 80px 80px;
    background: #f8f9fa;
}

.services-info h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 50px;
    text-align: center;
}

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

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

.info-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-hero {
    padding: 150px 80px 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 22px;
    font-weight: 300;
}

.contact-content {
    padding: 80px 60px;
    background: #ffffff;
}

.contact-info-asymmetric {
    max-width: 1200px;
    margin: 0 auto 80px;
}

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

.contact-block h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 20px;
}

.contact-block p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    gap: 60px;
}

.contact-item {
    flex: 1;
}

.contact-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
}

.contact-item .note {
    font-size: 14px;
    color: #95a5a6;
    margin-top: 10px;
    font-style: italic;
}

.contact-map-placeholder {
    max-width: 1200px;
    margin: 60px auto;
    padding: 60px;
    background: #f8f9fa;
    border-radius: 12px;
}

.map-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.map-info p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.contact-faq h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 150px 80px 80px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: center;
}

.thanks-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
}

.thanks-content p {
    font-size: 22px;
    font-weight: 300;
}

.thanks-details {
    padding: 80px 60px;
    background: #ffffff;
}

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

.thanks-message p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

#service-confirmation {
    font-weight: 700;
    color: #2c3e50;
    font-size: 20px;
}

.next-steps {
    max-width: 1200px;
    margin: 80px auto;
}

.next-steps h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 50px;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 50px;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.step-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-image {
    max-width: 1400px;
    margin: 60px auto;
}

.preparation-tips {
    max-width: 900px;
    margin: 80px auto;
}

.preparation-tips h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 20px;
}

.preparation-tips p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
}

.preparation-tips ul {
    list-style: none;
    padding: 0;
}

.preparation-tips ul li {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.preparation-tips ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

.thanks-cta {
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
}

.thanks-cta p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 25px;
}

.thanks-cta a {
    display: inline-block;
    margin: 10px;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 150px 40px 80px;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 15px;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 25px 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.legal-content a:hover {
    color: #2980b9;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    color: #546e7a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 140px 30px 40px;
    }

    .hero-content-offset,
    .hero-image-container {
        width: 100%;
        padding: 0;
    }

    .hero-title-large {
        font-size: 52px;
    }

    .intro-offset,
    .about-story,
    .service-detail-card {
        flex-direction: column;
        padding: 60px 30px;
    }

    .intro-left,
    .intro-right-image,
    .story-offset-left,
    .story-offset-right,
    .service-detail-image,
    .service-detail-content {
        width: 100%;
    }

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

    .service-card {
        width: 100% !important;
        margin-top: 0 !important;
    }

    .why-grid,
    .contact-details,
    .steps-grid,
    .values-list,
    .info-grid,
    .team-grid-offset {
        flex-direction: column;
        gap: 30px;
    }

    .nav-floating {
        width: 95%;
        top: 10px;
    }

    .nav-wrapper {
        padding: 12px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .nav-links {
        display: none;
    }

    .services-header-offset {
        margin-left: 0;
        text-align: center;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }
}