* {
    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: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2ecc71;
    color: #ffffff;
}

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

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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 28px;
}

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

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

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-offset {
    max-width: 580px;
    position: relative;
    z-index: 10;
    margin-left: 8%;
    margin-right: auto;
}

.hero-content-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.hero-image-shifted {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 350px;
    background: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.intro-block-irregular {
    padding: 80px 20px 60px;
    background: #ffffff;
}

.content-wrapper-narrow {
    max-width: 680px;
    margin: 0 auto 60px 12%;
}

.content-wrapper-narrow h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-wrapper-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.insight-card-floating {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-left: 8%;
}

.insight-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.insight-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.insight-card-floating img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    background: #dee2e6;
}

.services-offset {
    padding: 90px 20px;
    background: #fafbfc;
}

.services-header-left {
    max-width: 620px;
    margin-bottom: 60px;
    margin-left: 8%;
}

.services-header-left h2 {
    font-size: 40px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.services-header-left p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

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

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

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

.service-card-2 {
    margin-left: 18%;
    max-width: 780px;
}

.service-card-3 {
    margin-left: 8%;
    max-width: 820px;
}

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

.service-card-5 {
    margin-left: 10%;
    max-width: 790px;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #e9ecef;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 30px 12px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 30px 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.service-price {
    margin: 20px 30px;
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
}

.btn-select-service {
    display: inline-block;
    margin: 0 30px 30px;
    padding: 12px 28px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.trust-section-split {
    padding: 80px 20px;
    background: #ffffff;
}

.trust-section-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.trust-text-column h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.trust-text-column p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

.trust-image-column {
    width: 420px;
    height: 320px;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.trust-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-scattered {
    padding: 70px 20px;
    background: #f8f9fa;
}

.testimonial-item {
    max-width: 600px;
    padding: 35px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.testimonial-left {
    margin-left: 8%;
}

.testimonial-right {
    margin-left: auto;
    margin-right: 12%;
}

.testimonial-item blockquote {
    border: none;
}

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

.testimonial-item cite {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
}

.form-section-irregular {
    padding: 90px 20px;
    background: #ffffff;
    position: relative;
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.form-container-offset {
    flex: 1;
    max-width: 600px;
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 17px;
    margin-bottom: 32px;
    color: #666;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    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;
}

.btn-submit {
    padding: 14px 32px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-side-visual {
    width: 380px;
    height: 480px;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.disclaimer-section {
    padding: 50px 20px;
    background: #f8f9fa;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
    margin: 0;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.page-hero-offset {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.page-hero-content {
    max-width: 800px;
    margin-left: 10%;
}

.page-hero-content h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 19px;
    line-height: 1.7;
}

.about-story {
    padding: 80px 20px;
    background: #ffffff;
}

.story-content-irregular {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.story-block-1 {
    max-width: 700px;
    margin-left: 8%;
}

.story-block-1 h2,
.story-block-2 h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-block-1 p,
.story-block-2 p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

.story-image-offset {
    width: 600px;
    height: 380px;
    margin-left: auto;
    margin-right: 10%;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.story-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-block-2 {
    max-width: 680px;
    margin-left: 12%;
}

.values-asymmetric {
    padding: 80px 20px;
    background: #f8f9fa;
}

.values-asymmetric h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.values-grid-offset {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-item {
    padding: 35px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.value-item-1 {
    margin-left: 8%;
    max-width: 650px;
}

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

.value-item-3 {
    margin-left: 12%;
    max-width: 620px;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-section-split {
    padding: 80px 20px;
    background: #ffffff;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-visual {
    width: 450px;
    height: 340px;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

.approach-irregular {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.approach-content-wrapper h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.approach-step {
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

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

.step-2 {
    margin-left: auto;
    margin-right: 8%;
    max-width: 620px;
}

.step-3 {
    margin-left: 10%;
    max-width: 640px;
}

.step-4 {
    margin-left: auto;
    margin-right: 12%;
    max-width: 610px;
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.cta-about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-content-centered h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 32px;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-hero-services {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
    color: #ffffff;
}

.page-hero-services h1 {
    font-size: 46px;
    margin-bottom: 18px;
}

.services-subtitle {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 20px;
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-block {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-detail-1 {
    margin-left: 0;
}

.service-detail-2 {
    margin-left: 5%;
}

.service-detail-3 {
    margin-left: 0;
}

.service-detail-4 {
    margin-left: 8%;
}

.service-detail-5 {
    margin-left: 0;
}

.service-detail-image {
    width: 400px;
    height: 300px;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 30px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
}

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

.service-pricing-info {
    margin-bottom: 24px;
}

.price-main {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.pricing-notes {
    padding: 60px 20px;
    background: #fff3cd;
}

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

.pricing-notes-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #856404;
}

.pricing-notes-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #856404;
}

.form-section-services {
    padding: 80px 20px;
    background: #ffffff;
}

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

.form-container-centered h2 {
    font-size: 34px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-container-centered > p {
    font-size: 17px;
    margin-bottom: 36px;
    text-align: center;
    color: #666;
}

.contact-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    text-align: center;
    color: #ffffff;
}

.contact-hero h1 {
    font-size: 46px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 19px;
}

.contact-content-split {
    padding: 80px 20px;
    background: #ffffff;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-column {
    flex: 1;
}

.contact-info-column h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-image-column {
    width: 450px;
    height: 500px;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    height: 300px;
    background: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 17px;
    color: #7f8c8d;
    max-width: 400px;
    text-align: center;
}

.contact-why {
    padding: 80px 20px;
    background: #ffffff;
}

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

.contact-why-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.reasons-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.reason-item {
    flex: 1;
    max-width: 300px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.reason-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.thanks-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-subtitle {
    font-size: 19px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.service-confirmation {
    margin-bottom: 35px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

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

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

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

.next-steps {
    padding: 80px 20px;
    background: #ffffff;
}

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

.next-steps-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-step {
    display: flex;
    gap: 25px;
    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: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-additional {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.additional-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.additional-content > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

.additional-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.link-card {
    flex: 1;
    max-width: 300px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

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

.link-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.link-card p {
    font-size: 15px;
    color: #7f8c8d;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

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

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

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

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

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

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

.legal-content a:hover {
    text-decoration: underline;
}

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

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

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

.cookie-table td {
    font-size: 15px;
    color: #555;
}

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

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

    .hero-image-shifted {
        position: static;
        transform: none;
        width: 100%;
        max-width: 500px;
        margin: 30px auto 0;
    }

    .trust-section-split,
    .team-section-split,
    .contact-content-split,
    .service-detail-block,
    .form-section-irregular {
        flex-direction: column;
    }

    .trust-image-column,
    .team-visual,
    .contact-image-column,
    .service-detail-image,
    .form-side-visual {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .insight-card-floating {
        flex-direction: column;
        margin-left: 0;
    }

    .insight-card-floating img {
        width: 100%;
        max-width: 400px;
    }

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

    .services-header-left,
    .content-wrapper-narrow,
    .story-block-1,
    .story-block-2 {
        margin-left: 0;
    }

    .story-image-offset {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 500px;
    }

    .value-item-1,
    .value-item-2,
    .value-item-3 {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

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

    .testimonial-left,
    .testimonial-right {
        margin-left: 0;
        margin-right: 0;
    }

    .service-detail-1,
    .service-detail-2,
    .service-detail-3,
    .service-detail-4,
    .service-detail-5 {
        margin-left: 0;
    }

    .reasons-grid,
    .additional-links {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-content-offset h1,
    .page-hero-content h1,
    .page-hero-services h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .services-header-left h2,
    .values-asymmetric h2,
    .approach-content-wrapper h2,
    .cta-content-centered h2,
    .next-steps-content h2,
    .additional-content h2 {
        font-size: 32px;
    }

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

    .page-hero-content {
        margin-left: 0;
    }
}
