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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5d6d7e;
}

.main-nav {
    background-color: #2c3e50;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.nav-items {
    display: flex;
    gap: 30px;
}

.nav-items a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.ad-label {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.hero-asymmetric {
    min-height: 600px;
    padding: 80px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 400px;
    padding-right: 40px;
    transform: translateY(-30px);
}

.hero-text-block h1 {
    font-size: 52px;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    color: #ecf0f1;
    line-height: 1.7;
}

.hero-visual-stack {
    flex: 1;
    min-width: 450px;
    transform: rotate(-3deg) translateX(20px);
}

.hero-visual-stack img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    background-color: #95a5a6;
}

.story-flow {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-block {
    padding: 50px;
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 80px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.story-block.offset-left {
    margin-left: 0;
    margin-right: 120px;
    transform: translateX(-40px);
}

.story-block.offset-right {
    margin-left: 120px;
    margin-right: 0;
    transform: translateX(40px);
}

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

.story-block p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.8;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #2980b9;
}

.visual-break {
    margin: 60px 0;
    transform: translateX(-15px) rotate(1deg);
}

.visual-break img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #bdc3c7;
}

.benefits-grid-offset {
    padding: 100px 30px;
    background-color: #34495e;
}

.benefits-header-asymmetric {
    max-width: 1200px;
    margin: 0 auto 60px;
    transform: translateX(80px);
}

.benefits-header-asymmetric h2 {
    font-size: 42px;
    color: #ffffff;
    font-weight: 700;
}

.benefits-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.benefit-card.rotate-left {
    transform: rotate(-2deg) translateY(-15px);
}

.benefit-card.rotate-right {
    transform: rotate(2deg) translateY(15px);
}

.benefit-card h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.7;
}

.trust-section-overlap {
    padding: 100px 30px;
    background-color: #ecf0f1;
}

.trust-content-wrap {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-text-column {
    flex: 1.3;
    min-width: 400px;
    transform: translateX(-30px);
}

.trust-text-column h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.trust-visual-column {
    flex: 1;
    min-width: 350px;
    transform: rotate(3deg) translateY(25px);
}

.trust-visual-column img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    background-color: #95a5a6;
}

.testimonials-stagger {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-box {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 35px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-box.position-1 {
    transform: translateY(-20px) translateX(-15px);
}

.testimonial-box.position-2 {
    transform: translateY(10px);
}

.testimonial-box.position-3 {
    transform: translateY(-30px) translateX(15px);
}

.testimonial-box p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.services-reveal {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.services-intro-asymmetric {
    max-width: 900px;
    margin: 0 auto 70px;
    transform: translateX(-50px);
}

.services-intro-asymmetric h2 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-intro-asymmetric p {
    font-size: 19px;
    color: #7f8c8d;
    line-height: 1.7;
}

.services-cards-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card-modern {
    flex: 1;
    min-width: 300px;
    max-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-10px);
}

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

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

.service-details {
    padding: 30px;
}

.service-details h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-details p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.select-service-btn {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section-diagonal {
    padding: 100px 30px;
    background: linear-gradient(135deg, #3498db 0%, #8e44ad 100%);
    transform: skewY(-2deg);
    margin-top: 80px;
}

.form-wrapper-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: skewY(2deg);
}

.form-intro-text {
    margin-bottom: 40px;
}

.form-intro-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro-text p {
    font-size: 17px;
    color: #7f8c8d;
}

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

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

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

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    font-size: 16px;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 15px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 30px;
    background-color: #ecf0f1;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

.references-section {
    padding: 60px 30px;
    background-color: #ffffff;
}

.references-section h3 {
    text-align: center;
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.references-list {
    max-width: 900px;
    margin: 0 auto;
}

.references-list p {
    font-size: 15px;
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.6;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #2980b9;
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-container p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 20px;
}

.back-home-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.back-home-btn:hover {
    background-color: #2980b9;
}

.page-header {
    padding: 80px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 700;
}

.content-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

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

.content-wrapper h3 {
    font-size: 24px;
    color: #34495e;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.content-wrapper p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-wrapper li {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-info-box {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    border-left: 4px solid #3498db;
}

.contact-info-box h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info-box p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 36px;
    }

    .hero-content-offset {
        flex-direction: column;
    }

    .hero-visual-stack {
        transform: rotate(0deg) translateX(0);
    }

    .story-block.offset-left,
    .story-block.offset-right {
        margin-left: 0;
        margin-right: 0;
        transform: translateX(0);
    }

    .benefits-header-asymmetric {
        transform: translateX(0);
    }

    .benefit-card.rotate-left,
    .benefit-card.rotate-right {
        transform: rotate(0) translateY(0);
    }

    .trust-content-wrap {
        flex-direction: column;
    }

    .trust-text-column {
        transform: translateX(0);
    }

    .trust-visual-column {
        transform: rotate(0) translateY(0);
    }

    .testimonial-box.position-1,
    .testimonial-box.position-2,
    .testimonial-box.position-3 {
        transform: translateY(0) translateX(0);
    }

    .services-intro-asymmetric {
        transform: translateX(0);
    }

    .form-section-diagonal {
        transform: skewY(0);
    }

    .form-wrapper-asymmetric {
        transform: skewY(0);
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-items {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}