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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 60px 5%;
    gap: 60px;
    background-color: #f8f9fa;
}

.hero-content-left {
    flex: 1;
    max-width: 540px;
}

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

.hero-content-left p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #0056b3;
}

.hero-image-diagonal {
    flex: 1;
    position: relative;
    transform: rotate(-2deg);
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    background-color: #e9ecef;
}

.hero-image-diagonal img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-asymmetric {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.intro-block-right {
    flex: 1;
    order: 2;
}

.intro-block-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.intro-block-right p {
    font-size: 18px;
    color: #4a5568;
}

.intro-visual-left {
    flex: 1;
    order: 1;
    background-color: #f8f9fa;
}

.intro-visual-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.services-preview {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: calc(50% - 15px);
    max-width: 480px;
    transition: transform 0.3s;
}

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

.service-card.offset-up {
    margin-top: -30px;
}

.service-card.offset-down {
    margin-top: 30px;
}

.service-card.offset-center {
    margin-top: 0;
}

.service-card.offset-left {
    margin-top: -15px;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #1a202c;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 16px;
    color: #4a5568;
}

.price-tag {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #007bff;
    margin: 0 20px 20px;
}

.cta-inline {
    text-align: center;
    margin-top: 40px;
}

.cta-inline a {
    display: inline-block;
    padding: 14px 32px;
    background-color: #495057;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-inline a:hover {
    background-color: #343a40;
}

.why-us-diagonal {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
    align-items: flex-start;
}

.why-content-offset {
    flex: 1;
    padding-top: 40px;
}

.why-content-offset h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

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

.benefits-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 17px;
    color: #4a5568;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: 700;
}

.form-container-asymmetric {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-container-asymmetric h3 {
    font-size: 26px;
    margin-bottom: 24px;
    color: #1a202c;
}

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

form input,
form select,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 5%;
    background-color: #2c3e50;
    color: #ecf0f1;
    gap: 40px;
}

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

.footer-split p,
.footer-split ul {
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-split ul li {
    margin-bottom: 8px;
}

.footer-split a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-split a:hover {
    color: #3498db;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 20px 5%;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie-accept {
    background-color: #007bff;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #0056b3;
}

.btn-cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #545b62;
}

.about-header-offset {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.about-text-block {
    flex: 1;
}

.about-text-block h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a202c;
}

.about-text-block p {
    font-size: 18px;
    color: #4a5568;
}

.about-image-right {
    flex: 1;
    background-color: #f8f9fa;
}

.about-image-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.mission-diagonal {
    padding: 80px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.mission-diagonal h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.mission-diagonal p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #4a5568;
}

.values-asymmetric {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 80px 5%;
    background-color: #ffffff;
}

.value-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
    max-width: 320px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.value-card.right-offset {
    margin-top: 0;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
}

.value-card p {
    font-size: 16px;
    color: #4a5568;
}

.team-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.team-section p {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #4a5568;
}

.team-section img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.services-header {
    padding: 80px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
}

.services-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #4a5568;
}

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

.service-item-left,
.service-item-right {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.service-item-left .service-content {
    flex: 1;
    order: 1;
}

.service-item-left .service-image {
    flex: 1;
    order: 2;
}

.service-item-right .service-content {
    flex: 1;
    order: 2;
}

.service-item-right .service-image {
    flex: 1;
    order: 1;
}

.service-item-centered {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-content p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #4a5568;
}

.price-large {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
    margin-top: 20px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.cta-services {
    padding: 80px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
}

.contact-header {
    padding: 80px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
}

.contact-header p {
    font-size: 18px;
    color: #4a5568;
}

.contact-details-offset {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.contact-block-left {
    flex: 1;
}

.contact-block-left h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a202c;
}

.contact-info h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 8px;
    color: #1a202c;
}

.contact-info p {
    font-size: 17px;
    color: #4a5568;
}

.contact-visual-right {
    flex: 1;
    background-color: #f8f9fa;
}

.contact-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.contact-cta-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a202c;
}

.contact-cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
}

.thanks-section {
    padding: 120px 5%;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a5568;
}

.thanks-service {
    font-weight: 700;
    color: #007bff;
    margin-top: 32px;
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

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

@media (max-width: 768px) {
    .hero-offset,
    .intro-asymmetric,
    .why-us-diagonal,
    .about-header-offset,
    .contact-details-offset,
    .service-item-left,
    .service-item-right {
        flex-direction: column;
    }

    .hero-content-left h1,
    .about-text-block h1,
    .services-header h1,
    .contact-header h1,
    .thanks-content h1 {
        font-size: 36px;
    }

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

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

    .footer-split,
    .values-asymmetric {
        flex-direction: column;
    }

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

    .service-item-left .service-content,
    .service-item-left .service-image,
    .service-item-right .service-content,
    .service-item-right .service-image {
        order: 0;
    }
}