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

img {
    object-fit: cover;
    display: block;
    max-width: 100%;
    height: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 25px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.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-buttons {
    display: flex;
    gap: 15px;
}

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

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

.btn-accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

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

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

.ad-disclosure {
    background: #f39c12;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
}

.asymmetric-header {
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

.brand-logo {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.floating-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.floating-nav a:hover,
.floating-nav a.nav-active {
    color: #f39c12;
}

.floating-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f39c12;
    transition: width 0.3s ease;
}

.floating-nav a:hover::after,
.floating-nav a.nav-active::after {
    width: 100%;
}

.asymmetric-layout {
    overflow-x: hidden;
}

.hero-offset {
    display: flex;
    min-height: 600px;
    align-items: center;
    background: #ecf0f1;
    padding: 80px 50px;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    padding-left: 50px;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-intro {
    font-size: 19px;
    color: #34495e;
    margin-bottom: 35px;
    line-height: 1.7;
}

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

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.hero-visual-offset {
    flex: 1;
    position: relative;
    transform: translateX(30px) translateY(-20px);
    background: #bdc3c7;
}

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

.intro-diagonal {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 100px 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.diagonal-content {
    flex: 1;
    padding-right: 40px;
}

.diagonal-content h3 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.diagonal-image {
    flex: 1;
    background: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

.diagonal-image img {
    width: 100%;
    height: 450px;
}

.services-irregular {
    padding: 100px 50px;
    background: #f4f6f7;
}

.section-title-offset {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
    margin-left: 80px;
    position: relative;
}

.section-title-offset::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 4px;
    background: #e74c3c;
}

.service-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.card-large {
    max-width: 900px;
}

.card-offset-left {
    max-width: 850px;
    margin-left: 150px;
}

.card-offset-right {
    max-width: 850px;
    margin-left: auto;
    margin-right: 150px;
}

.service-visual {
    flex: 0 0 45%;
    background: #bdc3c7;
}

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-info h4 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.pricing-tag {
    font-size: 28px;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 20px;
}

.select-service {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background: #2980b9;
    transform: translateX(5px);
}

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

.story-section {
    display: flex;
    gap: 60px;
    padding: 100px 50px;
    background: #ffffff;
    align-items: center;
}

.story-visual-left {
    flex: 1;
    background: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

.story-visual-left img {
    width: 100%;
    height: 500px;
}

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

.story-text-right h3 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.trust-elements {
    padding: 80px 50px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

.trust-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.trust-item h4 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
}

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

.testimonials-offset {
    padding: 100px 50px;
    background: #f8f9fa;
}

.testimonials-offset h3 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    font-size: 18px;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.asymmetric-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-notice {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    border-left: 4px solid #f39c12;
}

.form-notice.success {
    background: #d4edda;
    color: #155724;
    border-left-color: #27ae60;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

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

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.final-cta-offset {
    padding: 100px 50px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

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

.cta-content h3 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.cta-secondary {
    display: inline-block;
    background: #f39c12;
    color: #ffffff;
    padding: 16px 45px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #d68910;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}

.asymmetric-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 50px 30px;
}

.footer-grid {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 1;
}

.footer-brand h4 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
}

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

.footer-links {
    flex: 1;
}

.footer-links h5 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
}

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

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

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

.footer-links ul li a:hover {
    color: #f39c12;
}

.footer-contact {
    flex: 1;
}

.footer-contact h5 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-contact p {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid #f39c12;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-hero {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 80px 50px;
    text-align: center;
}

.contact-hero h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-content {
    display: flex;
    gap: 60px;
    padding: 80px 50px;
    background: #ffffff;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

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

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

.contact-map {
    flex: 1;
    background: #ecf0f1;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #7f8c8d;
}

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

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

.legal-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.legal-content h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 15px;
}

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

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

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 50px;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-content h2 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 25px;
}

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

.thanks-service {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}

.thanks-service strong {
    color: #2c3e50;
    font-size: 18px;
}

.btn-home {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .floating-nav {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-offset {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-text-block {
        padding-left: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-visual-offset {
        transform: none;
        width: 100%;
    }

    .intro-diagonal {
        flex-direction: column;
        padding: 50px 20px;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 32px;
    }

    .section-title-offset::before {
        display: none;
    }

    .card-offset-left,
    .card-offset-right {
        margin-left: 0;
        margin-right: 0;
    }

    .service-card {
        flex-direction: column;
    }

    .service-visual {
        flex: 0 0 250px;
    }

    .story-section {
        flex-direction: column;
        padding: 50px 20px;
    }

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

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

    .contact-content {
        flex-direction: column;
        padding: 50px 20px;
    }
}