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

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

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

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

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

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

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

.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #e67e22;
}

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 5px 12px;
    background-color: #ecf0f1;
    border-radius: 15px;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 80px 80px;
    position: relative;
}

.hero-content-offset {
    width: 50%;
    padding-right: 60px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.hero-image-block {
    position: absolute;
    right: -50px;
    top: 120px;
    width: 55%;
    height: 600px;
    background-color: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.trust-block-overlap {
    display: flex;
    justify-content: space-between;
    padding: 100px 80px;
    gap: 60px;
    position: relative;
}

.trust-card {
    flex: 1;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.card-left {
    transform: translateY(-30px);
}

.card-right {
    transform: translateY(30px);
}

.trust-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

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

.services-intro-offset {
    max-width: 600px;
    margin-bottom: 70px;
    padding-left: 100px;
}

.services-intro-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro-offset p {
    font-size: 18px;
    color: #555;
}

.services-grid-asymmetric {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    width: 350px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.card-offset-1 {
    transform: translateY(0);
}

.card-offset-2 {
    transform: translateY(40px);
}

.card-offset-3 {
    transform: translateY(20px);
}

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

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

.service-card p {
    margin: 0 25px 20px;
    color: #555;
    font-size: 15px;
}

.service-card .price {
    display: block;
    margin: 20px 25px 25px;
    font-size: 22px;
    font-weight: 700;
    color: #e67e22;
}

.services-cta-center {
    text-align: center;
    margin-top: 70px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.contact-form-section {
    padding: 120px 80px;
    background-color: #ffffff;
}

.form-wrapper-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.contact-form {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

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

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

.why-choose {
    padding: 120px 80px;
    background-color: #f8f9fa;
}

.why-content-split {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #2c3e50;
}

.why-list {
    list-style: none;
}

.why-list li {
    padding: 18px 0;
    font-size: 18px;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

.why-list li:before {
    content: "✓ ";
    color: #e67e22;
    font-weight: 700;
    margin-right: 10px;
}

.why-image {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

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

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

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

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

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

.page-hero {
    padding: 180px 80px 80px;
    background-color: #f8f9fa;
}

.about-story {
    padding: 100px 80px;
}

.story-layout {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.story-text-block h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.story-image-right {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 12px;
    overflow: hidden;
}

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

.values-section {
    padding: 100px 80px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

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

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

.certifications-block {
    padding: 100px 80px;
}

.cert-content {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-image {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 12px;
    overflow: hidden;
}

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

.cert-text {
    flex: 1;
}

.cert-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.team-approach {
    padding: 100px 80px;
    background-color: #f8f9fa;
}

.approach-layout h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.step {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    position: relative;
}

.step-number {
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    color: #e67e22;
    opacity: 0.2;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.cta-about {
    padding: 100px 80px;
}

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

.cta-content-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

.services-full {
    padding: 100px 80px;
}

.services-intro-text {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.services-intro-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro-text p {
    font-size: 18px;
    color: #555;
}

.services-list-detail {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-wrapper {
    flex: 1;
    background-color: #e8eaed;
}

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

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

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

.service-info > p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin-bottom: 25px;
}

.service-includes li {
    padding: 10px 0;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

.service-includes li:before {
    content: "✓ ";
    color: #e67e22;
    font-weight: 700;
    margin-right: 8px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
}

.pricing-note {
    padding: 60px 80px;
    background-color: #fff8f0;
}

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

.note-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.contact-page {
    padding: 100px 80px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

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

.contact-info-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-info-section p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.7;
}

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

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

.info-block p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.contact-map {
    flex: 1;
    background-color: #e8eaed;
    border-radius: 12px;
    min-height: 450px;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 80px 80px;
}

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

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

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

.thanks-content .btn-primary {
    margin-top: 30px;
}

.legal-page {
    padding: 180px 80px 80px;
}

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

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

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

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

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

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

@media (max-width: 968px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 150px 40px 60px;
    }

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .nav-floating {
        width: 90%;
        padding: 15px 20px;
    }

    .nav-container {
        gap: 20px;
        flex-wrap: wrap;
    }

    .trust-block-overlap {
        flex-direction: column;
        padding: 60px 40px;
    }

    .form-wrapper-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .why-content-split {
        flex-direction: column;
    }

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

    .story-layout {
        flex-direction: column;
    }

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

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

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }
}