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

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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e0e0e0;
}

.floating-nav {
    position: fixed;
    top: 40px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: #f0f0f0;
    color: #2980b9;
    transform: translateX(-5px);
}

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

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

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 800;
}

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

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

.cta-primary:hover {
    background: #21618c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(41, 128, 185, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -80px;
    top: 15%;
    width: 55%;
    max-width: 680px;
    transform: rotate(3deg);
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.intro-offset {
    padding: 90px 20px 70px 20px;
    background: #f9fafb;
}

.intro-text-narrow {
    max-width: 720px;
    margin: 0 auto 0 12%;
}

.intro-text-narrow h2 {
    font-size: 38px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text-narrow p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.services-diagonal {
    padding: 100px 40px;
    background: #ffffff;
    position: relative;
}

.services-header-right {
    max-width: 520px;
    margin-left: auto;
    margin-right: 15%;
    margin-bottom: 60px;
}

.services-header-right h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-header-right p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-cards-stagger {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #f8f9fa;
    padding: 40px 45px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-card-1 {
    margin-left: 5%;
    max-width: 600px;
}

.service-card-2 {
    margin-left: auto;
    margin-right: 8%;
    max-width: 650px;
}

.service-card-3 {
    margin-left: 12%;
    max-width: 620px;
}

.service-card-4 {
    margin-left: auto;
    margin-right: 15%;
    max-width: 590px;
}

.service-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    color: #2980b9;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-service {
    display: inline-block;
    background: #34495e;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: #2c3e50;
    transform: translateX(5px);
}

.why-us-split {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 90px 50px;
    background: #ecf0f1;
}

.why-left-content {
    flex: 1;
    max-width: 550px;
    margin-left: 8%;
}

.why-left-content h2 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.benefits-list li {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
}

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

.why-right-image {
    flex: 1;
    max-width: 450px;
}

.why-right-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.process-vertical {
    padding: 100px 40px;
    background: #ffffff;
}

.process-title {
    font-size: 44px;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 70px;
    font-weight: 700;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: auto;
    max-width: 750px;
}

.process-step:nth-child(odd) {
    margin-right: auto;
    max-width: 750px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #e0e0e0;
    min-width: 80px;
}

.process-step h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.process-step p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.testimonials-irregular {
    padding: 90px 40px;
    background: #f8f9fa;
}

.testimonials-irregular h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.testimonials-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

.testimonial-offset-1 {
    margin-left: 5%;
    max-width: 650px;
}

.testimonial-offset-2 {
    margin-left: auto;
    margin-right: 10%;
    max-width: 680px;
}

.testimonial-offset-3 {
    margin-left: 15%;
    max-width: 620px;
}

.testimonial p {
    font-size: 17px;
    color: #2c3e50;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.cta-banner-sticky {
    background: linear-gradient(135deg, #2980b9 0%, #21618c 100%);
    padding: 50px 40px;
    text-align: center;
}

.cta-content h3 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #2980b9;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ecf0f1;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-form-section {
    padding: 90px 40px;
    background: #f9fafb;
}

.form-container-offset {
    max-width: 600px;
    margin: 0 auto 0 15%;
}

.form-container-offset h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 35px;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
    box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.1);
}

.form-submit {
    background: #2980b9;
    color: #ffffff;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background: #21618c;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(41, 128, 185, 0.3);
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 40px 30px 40px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

.footer-col ul li a:hover {
    color: #2980b9;
}

.footer-disclaimer {
    max-width: 1000px;
    margin: 0 auto 30px auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    padding: 20px 30px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

.cookie-content p a {
    color: #2980b9;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background: #2980b9;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #21618c;
}

.cookie-reject {
    background: #555;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #444;
}

.about-hero-offset {
    padding: 140px 40px 80px 50px;
    background: #f9fafb;
}

.about-hero-offset h1 {
    font-size: 52px;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-left: 10%;
    font-weight: 800;
}

.about-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    margin-left: 10%;
}

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

.story-content-irregular {
    flex: 1;
    max-width: 550px;
    margin-left: 8%;
}

.story-content-irregular h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-content-irregular p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image-overlap {
    flex: 1;
    max-width: 500px;
    transform: translateX(30px);
}

.story-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.values-diagonal {
    padding: 90px 40px;
    background: #ecf0f1;
}

.values-diagonal h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 240px;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    padding: 80px 40px;
    background: #ffffff;
}

.team-intro-offset {
    max-width: 700px;
    margin: 0 auto 0 12%;
}

.team-intro-offset h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.team-intro-offset p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
}

.numbers-asymmetric {
    padding: 90px 40px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.numbers-grid {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.number-block {
    text-align: center;
    min-width: 180px;
}

.number-value {
    font-size: 54px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.number-label {
    font-size: 16px;
    color: #bdc3c7;
}

.approach-section {
    padding: 90px 40px;
    background: #f9fafb;
}

.approach-section h2 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
}

.approach-content p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-hero {
    padding: 140px 40px 80px 40px;
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 52px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-subtitle {
    font-size: 20px;
    color: #2c3e50;
}

.service-detail {
    padding: 80px 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-left {
    background: #ffffff;
}

.service-detail-right {
    background: #f9fafb;
    flex-direction: row-reverse;
}

.service-detail-text {
    flex: 1;
    max-width: 550px;
}

.service-detail-text h2 {
    font-size: 34px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-text p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-detail-text h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 700;
}

.service-detail-text ul {
    margin-bottom: 30px;
}

.service-detail-text ul li {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.7;
}

.service-price-box {
    background: #ecf0f1;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: inline-block;
}

.price-label {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.price-value {
    font-size: 30px;
    color: #2980b9;
    font-weight: 800;
}

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

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

.service-detail-image {
    flex: 1;
    max-width: 500px;
}

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

.additional-services-offset {
    padding: 90px 40px;
    background: #f8f9fa;
}

.additional-services-offset h2 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.additional-grid {
    display: flex;
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.additional-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.additional-item h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.additional-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.additional-price {
    font-size: 20px;
    color: #2980b9;
    font-weight: 700;
}

.cta-services-bottom {
    padding: 80px 40px;
    background: #34495e;
    text-align: center;
}

.cta-services-bottom h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-services-bottom p {
    font-size: 18px;
    color: #bdc3c7;
    margin-bottom: 30px;
}

.cta-button-large {
    display: inline-block;
    background: #2980b9;
    color: #ffffff;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #21618c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-hero-diagonal {
    padding: 140px 40px 80px 60px;
    background: linear-gradient(135deg, #2980b9 0%, #21618c 100%);
}

.contact-hero-diagonal h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    margin-left: 8%;
    font-weight: 800;
}

.contact-subtitle {
    font-size: 20px;
    color: #ecf0f1;
    margin-left: 8%;
}

.contact-info-asymmetric {
    padding: 90px 40px;
    background: #ffffff;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block-offset-1 {
    margin-left: 5%;
}

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

.contact-block-offset-3 {
    margin-left: auto;
    margin-right: 10%;
}

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

.contact-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
}

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

.contact-note-section {
    padding: 80px 40px;
    background: #f9fafb;
}

.contact-note-content {
    max-width: 750px;
    margin: 0 auto 0 12%;
}

.contact-note-content h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-note-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 18px;
}

.map-placeholder-section {
    padding: 60px 40px;
    background: #ecf0f1;
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    background: #d5dbdb;
    padding: 80px 40px;
    border-radius: 10px;
    text-align: center;
}

.map-placeholder p {
    font-size: 16px;
    color: #2c3e50;
}

.faq-asymmetric {
    padding: 90px 40px;
    background: #ffffff;
}

.faq-asymmetric h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    max-width: 520px;
    background: #f9fafb;
    padding: 30px 28px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-hero {
    padding: 140px 40px 100px 40px;
    background: #f9fafb;
    min-height: 70vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 25px;
    font-weight: 800;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 35px;
    line-height: 1.7;
}

.thanks-service-info {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #2980b9;
}

.thanks-next-steps {
    margin-bottom: 40px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next-steps h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps ol li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.7;
}

.thanks-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: #2980b9;
    padding: 16px 36px;
    text-decoration: none;
    border: 2px solid #2980b9;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: #2980b9;
    color: #ffffff;
}

.legal-page {
    padding: 140px 40px 80px 40px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 46px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 800;
}

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

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

.legal-content h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 18px;
    font-weight: 700;
}

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

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

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

.legal-content ul li {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #2980b9;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #21618c;
}

@media (max-width: 1024px) {
    .floating-nav {
        top: 20px;
        right: 20px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 100px 30px 60px 30px;
    }

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

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

    .intro-text-narrow {
        margin: 0 auto;
    }

    .services-header-right {
        margin-left: 0;
        margin-right: 0;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4 {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .why-us-split {
        flex-direction: column;
    }

    .why-left-content {
        margin-left: 0;
    }

    .story-image-overlap {
        transform: none;
    }

    .about-story {
        flex-direction: column;
    }

    .story-content-irregular {
        margin-left: 0;
    }

    .team-intro-offset {
        margin-left: 0;
    }

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

    .contact-block-offset-1,
    .contact-block-offset-2,
    .contact-block-offset-3 {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
    }

    .contact-note-content {
        margin-left: 0;
    }

    .service-detail {
        flex-direction: column !important;
    }

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

@media (max-width: 768px) {
    .floating-nav {
        position: relative;
        top: 0;
        right: 0;
        align-items: center;
        padding: 15px;
        background: #ffffff;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .process-step:nth-child(even),
    .process-step:nth-child(odd) {
        flex-direction: column;
        max-width: 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 35px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

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

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