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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.floating-nav {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    position: sticky;
    top: 37px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 5%;
    overflow: hidden;
}

.hero-offset-content {
    max-width: 550px;
    position: relative;
    z-index: 2;
    margin-left: 8%;
    margin-top: -40px;
}

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

.hero-subtitle {
    font-size: 22px;
    color: #7f8c8d;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 48%;
    height: 80%;
    z-index: 1;
    transform: rotate(3deg);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 16px 38px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.offset-intro {
    padding: 120px 5% 100px 5%;
    display: flex;
    align-items: center;
    gap: 80px;
}

.intro-block-left {
    flex: 1;
    padding-left: 12%;
}

.intro-block-left h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.2;
    font-weight: 700;
}

.intro-block-left p {
    font-size: 19px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-image-right {
    flex: 1;
    margin-right: 5%;
    transform: translateY(-30px);
}

.intro-image-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.services-irregular {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.section-header-offset {
    margin-left: 15%;
    margin-bottom: 70px;
}

.section-header-offset h2 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 3%;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: calc(33.333% - 27px);
}

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

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 40px;
}

.card-offset-3 {
    margin-top: 20px;
}

.card-offset-4 {
    margin-top: 60px;
}

.card-offset-5 {
    margin-top: 30px;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.service-image img {
    width: 100%;
    height: 100%;
}

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

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

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

.select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

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

.testimonial-overlap {
    padding: 100px 5%;
    background-color: #34495e;
    margin: 80px 0;
    position: relative;
}

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

.testimonial-content blockquote {
    font-size: 26px;
    color: white;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

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

.form-section-asymmetric {
    padding: 120px 5%;
    background-color: white;
}

.form-container-offset {
    max-width: 650px;
    margin-left: 20%;
}

.form-container-offset h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.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 textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.service-display {
    padding: 14px 16px;
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    color: #7f8c8d;
    font-size: 15px;
}

.service-display.has-service {
    background-color: #d5f4e6;
    border-color: #27ae60;
    color: #27ae60;
    font-weight: 600;
}

.cta-submit {
    background-color: #e74c3c;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.cta-submit:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.why-section-irregular {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: center;
    background-color: #f8f9fa;
}

.why-content-left {
    flex: 1;
    padding-left: 8%;
}

.why-content-left h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 35px;
    font-weight: 700;
}

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

.benefits-list li {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

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

.why-image-overlap {
    flex: 1;
    transform: translateY(-25px) rotate(-2deg);
}

.why-image-overlap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 70px 5% 30px 5%;
}

.footer-content-irregular {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-block {
    flex: 1;
    min-width: 200px;
}

.footer-block h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-block h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #bdc3c7;
}

.footer-block p {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-block a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #e74c3c;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.5;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    padding: 25px 5%;
    z-index: 10000;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    color: #ecf0f1;
    font-size: 15px;
    flex: 1;
    line-height: 1.5;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #27ae60;
    color: white;
}

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

.cookie-reject {
    background-color: transparent;
    color: #ecf0f1;
    border: 2px solid #ecf0f1;
}

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

.page-header-asymmetric {
    padding: 100px 5% 60px 15%;
    background-color: #34495e;
    color: white;
}

.page-header-asymmetric h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 20px;
    color: #bdc3c7;
}

.about-story-offset {
    padding: 100px 5%;
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-block-irregular {
    flex: 1;
    padding-left: 10%;
}

.story-block-irregular h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-block-irregular p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image-overlap {
    flex: 1;
    transform: translateY(20px);
}

.story-image-overlap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.values-irregular {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.values-content-offset {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
}

.values-content-offset h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.value-item {
    margin-bottom: 50px;
    padding: 35px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-offset-1 {
    margin-left: 0;
}

.value-offset-2 {
    margin-left: 8%;
}

.value-offset-3 {
    margin-left: 3%;
}

.value-offset-4 {
    margin-left: 10%;
}

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

.value-item p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.6;
}

.team-asymmetric {
    padding: 100px 5%;
}

.team-header-offset {
    margin-left: 12%;
    margin-bottom: 40px;
}

.team-header-offset h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.team-content-irregular {
    max-width: 700px;
    margin: 0 auto 50px auto;
    padding: 0 5%;
}

.team-content-irregular p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-image-offset {
    width: 90%;
    margin: 0 auto;
    transform: translateX(-5%);
}

.team-image-offset img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.approach-offset {
    padding: 100px 5%;
    background-color: #f8f9fa;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.approach-content-left {
    flex: 1.2;
    padding-left: 8%;
}

.approach-content-left h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.approach-content-left p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-highlights-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateY(30px);
}

.highlight-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.highlight-box h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.highlight-box p {
    font-size: 16px;
    color: #7f8c8d;
}

.services-detail-irregular {
    padding: 80px 5%;
}

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

.service-layout-1 {
    flex-direction: row;
}

.service-layout-2 {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.6;
}

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

.service-includes li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

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

.service-price-large {
    font-size: 36px;
    font-weight: 800;
    color: #e74c3c;
    margin: 25px 0;
}

.cta-service {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.services-extra-info {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

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

.extra-info-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.info-block {
    margin-bottom: 40px;
}

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

.info-block p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-info-asymmetric {
    padding: 80px 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-block {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-offset-1 {
    margin-top: 0;
}

.contact-offset-2 {
    margin-top: 30px;
}

.contact-offset-3 {
    margin-top: 15px;
}

.contact-offset-4 {
    margin-top: 40px;
}

.contact-block h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.6;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.contact-directions {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.directions-content {
    max-width: 900px;
    margin: 0 auto;
}

.directions-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.directions-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.direction-item {
    flex: 1;
    min-width: 250px;
}

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

.direction-item p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.5;
}

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

.contact-faq-offset h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 35px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-visit {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.visit-content-offset {
    max-width: 700px;
    margin-left: 15%;
}

.visit-content-offset h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.visit-content-offset p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-page-asymmetric {
    min-height: 70vh;
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-content-offset {
    flex: 1.2;
    padding-left: 8%;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.thanks-content-offset h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height: 1.6;
}

.confirmation-details {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.confirmation-details p {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.selected-service-confirm {
    font-weight: 600;
    color: #27ae60;
}

.next-steps-offset {
    margin: 40px 0;
}

.next-steps-offset h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.steps-list {
    padding-left: 25px;
}

.steps-list li {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-info-blocks {
    display: flex;
    gap: 25px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.info-block-thanks {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.info-block-thanks h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-block-thanks p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.5;
}

.thanks-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: white;
}

.thanks-image-offset {
    flex: 1;
    transform: translateY(-40px);
}

.thanks-image-offset img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.legal-page {
    padding: 60px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 800;
}

.legal-update {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

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

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

.legal-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

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

.legal-content li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

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

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.cookies-table td {
    color: #5a6c7d;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-offset-content {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        width: 100%;
        margin-top: 40px;
        transform: none;
    }

    .service-cards-asymmetric {
        flex-direction: column;
    }

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

    .offset-intro,
    .about-story-offset,
    .why-section-irregular,
    .approach-offset,
    .service-detail,
    .thanks-page-asymmetric {
        flex-direction: column;
    }

    .intro-block-left,
    .story-block-irregular,
    .why-content-left,
    .approach-content-left,
    .thanks-content-offset {
        padding-left: 0;
    }

    .section-header-offset,
    .form-container-offset,
    .team-header-offset,
    .visit-content-offset {
        margin-left: 0;
    }

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

    .nav-links {
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .footer-content-irregular {
        flex-direction: column;
    }
}