* {
    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-color: #ffffff;
    overflow-x: hidden;
}

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

.floating-nav {
    position: fixed;
    top: 50px;
    right: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 24px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 4px;
}

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

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background-color: #ecf0f1;
}

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

.hero-content-offset h1 {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-image-overlay {
    position: absolute;
    top: 12%;
    right: -5%;
    width: 55%;
    height: 75%;
    z-index: 1;
}

.hero-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
    background-color: #bdc3c7;
}

.cta-primary {
    display: inline-block;
    padding: 18px 42px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #2c3e50;
    border-radius: 2px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.intro-diagonal {
    display: flex;
    align-items: center;
    padding: 120px 5%;
    gap: 80px;
    background-color: #ffffff;
    position: relative;
}

.intro-diagonal::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #ffffff;
    transform: skewY(-2deg);
}

.intro-block-left {
    flex: 1;
    max-width: 540px;
    padding-right: 40px;
}

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

.intro-block-left p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.intro-image-right {
    flex: 1;
    margin-top: 60px;
}

.intro-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    background-color: #bdc3c7;
}

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

.section-title-offset {
    margin-left: 12%;
    margin-bottom: 80px;
}

.section-title-offset h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #2c3e50;
    font-weight: 700;
}

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

.service-card {
    background-color: #ffffff;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex: 1 1 calc(60% - 16px);
    min-width: 420px;
}

.card-offset {
    flex: 1 1 calc(38% - 16px);
    min-width: 320px;
    margin-top: 80px;
}

.card-small {
    flex: 1 1 calc(35% - 16px);
    min-width: 300px;
    margin-top: -40px;
}

.card-wide {
    flex: 1 1 calc(63% - 16px);
    min-width: 440px;
}

.card-medium {
    flex: 1 1 calc(48% - 16px);
    min-width: 360px;
    margin-top: 60px;
}

.card-tall {
    flex: 1 1 calc(50% - 16px);
    min-width: 380px;
    margin-top: -60px;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #bdc3c7;
}

.service-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin: 24px 28px 16px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0 28px 20px;
}

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

.select-service {
    margin: 0 28px 28px;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1a252f;
}

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

.approach-text {
    flex: 1;
    padding-top: 60px;
}

.approach-text h2 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

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

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

.step-number {
    font-size: 24px;
    font-weight: 800;
    color: #e74c3c;
    min-width: 60px;
}

.step h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.step p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
    margin-left: -40px;
}

.approach-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #bdc3c7;
}

.form-section-diagonal {
    padding: 120px 5%;
    background-color: #ecf0f1;
    position: relative;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.form-section-diagonal::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #ecf0f1;
    transform: skewY(-1.5deg);
}

.form-intro {
    flex: 1;
    max-width: 480px;
    padding-top: 40px;
}

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

.form-intro p {
    font-size: 17px;
    color: #555;
}

.contact-form-offset {
    flex: 1;
    background-color: #ffffff;
    padding: 48px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    margin-top: -80px;
}

.form-group {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
}

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

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

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

.cta-submit {
    width: 100%;
    padding: 18px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-submit:hover {
    background-color: #c0392b;
}

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

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

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

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

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

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

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

.footer-block ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding-top: 40px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
    max-width: 900px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 28px 5%;
    z-index: 10000;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    min-width: 300px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.about-hero-offset {
    padding: 160px 5% 100px;
    background-color: #f8f9fa;
    margin-left: 8%;
}

.about-intro h1 {
    font-size: 64px;
    line-height: 1.1;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 800;
}

.about-intro p {
    font-size: 20px;
    color: #7f8c8d;
}

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

.story-image-float {
    flex: 1;
    margin-top: -100px;
}

.story-image-float img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background-color: #bdc3c7;
}

.story-text {
    flex: 1;
    padding-left: 40px;
}

.story-text h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 32px;
    font-weight: 700;
}

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

.values-grid-irregular {
    padding: 120px 5%;
    background-color: #ecf0f1;
}

.values-grid-irregular h2 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 700;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
}

.value-offset-1 {
    margin-top: -40px;
}

.value-offset-2 {
    margin-top: 60px;
}

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

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

.value-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.team-section-asymmetric {
    padding: 100px 5%;
    background-color: #ffffff;
    display: flex;
    gap: 100px;
    align-items: center;
}

.team-intro-left {
    flex: 1;
    margin-right: 60px;
}

.team-intro-left h2 {
    font-size: 46px;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 700;
}

.team-intro-left p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.team-image-right {
    flex: 1;
    margin-top: 80px;
}

.team-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background-color: #bdc3c7;
}

.cta-bottom-diagonal {
    padding: 100px 5%;
    background-color: #e74c3c;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.cta-bottom-diagonal::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #e74c3c;
    transform: skewY(-2deg);
}

.cta-bottom-diagonal h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-bottom-diagonal p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-bottom-diagonal .cta-primary {
    background-color: #ffffff;
    color: #e74c3c;
}

.cta-bottom-diagonal .cta-primary:hover {
    background-color: #ecf0f1;
}

.services-hero-diagonal {
    padding: 180px 5% 100px;
    background-color: #2c3e50;
    color: #ffffff;
    margin-left: 10%;
    position: relative;
}

.services-hero-diagonal::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #2c3e50;
    transform: skewY(-2deg);
}

.services-hero-diagonal h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.services-hero-diagonal p {
    font-size: 20px;
    color: #bdc3c7;
}

.services-detailed {
    padding: 140px 5% 80px;
    background-color: #ffffff;
}

.service-detail-block {
    display: flex;
    gap: 80px;
    margin-bottom: 120px;
    align-items: center;
}

.offset-right {
    margin-left: 8%;
}

.offset-left {
    margin-right: 8%;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    background-color: #bdc3c7;
}

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

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

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

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

.service-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #ecf0f1;
}

.service-features li::before {
    content: '→ ';
    color: #e74c3c;
    font-weight: 700;
    margin-right: 12px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 28px;
}

.contact-hero-offset {
    padding: 180px 5% 100px;
    background-color: #ecf0f1;
    margin-right: 10%;
}

.contact-hero-offset h1 {
    font-size: 64px;
    line-height: 1.1;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 800;
}

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

.contact-info-asymmetric {
    padding: 100px 5%;
    background-color: #ffffff;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #f8f9fa;
}

.contact-offset-1 {
    margin-top: -60px;
}

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

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

.contact-block h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 12px;
}

.map-section-diagonal {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #bdc3c7;
}

.map-overlay {
    position: absolute;
    bottom: 40px;
    left: 5%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 32px 48px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.map-overlay p {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-cta-offset {
    padding: 100px 5%;
    background-color: #f8f9fa;
    text-align: center;
    margin-left: 15%;
}

.contact-cta-offset h2 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta-offset p {
    font-size: 18px;
    color: #555;
    margin-bottom: 36px;
}

.legal-page-content {
    padding: 120px 10% 80px;
    background-color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page-content h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-page-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-page-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

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

.legal-page-content a {
    color: #e74c3c;
    text-decoration: none;
}

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

.legal-update {
    margin-top: 60px;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.thanks-section-diagonal {
    padding: 140px 5%;
    background-color: #f8f9fa;
    display: flex;
    gap: 100px;
    align-items: center;
    min-height: 70vh;
}

.thanks-content-offset {
    flex: 1;
    margin-right: 60px;
}

.thanks-content-offset h1 {
    font-size: 56px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 800;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}

.thanks-service {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #ffffff;
    border-left: 4px solid #e74c3c;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.thanks-image {
    flex: 1;
    margin-top: -80px;
}

.thanks-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background-color: #bdc3c7;
}

@media (max-width: 1024px) {
    .floating-nav {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 5%;
    }

    .nav-links {
        flex-direction: row;
    }

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

    .hero-image-overlay {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        height: 400px;
        margin-top: 40px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 5%;
    }

    .intro-diagonal,
    .approach-split,
    .form-section-diagonal,
    .story-section,
    .team-section-asymmetric,
    .service-detail-block,
    .contact-info-asymmetric,
    .thanks-section-diagonal {
        flex-direction: column;
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    .hero-content-offset h1,
    .about-intro h1,
    .contact-hero-offset h1,
    .services-hero-diagonal h1,
    .thanks-content-offset h1 {
        font-size: 36px;
    }

    .section-title-offset h2,
    .values-grid-irregular h2,
    .cta-bottom-diagonal h2 {
        font-size: 32px;
    }

    .floating-nav {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-direction: column;
    }

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

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