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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    background-color: #f9f9f9;
}

.hero-content-offset {
    flex: 0 0 45%;
    padding: 100px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 19px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.hero-image-panel {
    flex: 0 0 55%;
    background-size: cover;
    background-position: center;
}

.intro-offset {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 80px;
    gap: 60px;
    align-items: center;
}

.intro-text-block {
    flex: 0 0 55%;
}

.intro-text-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

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

.intro-image-card {
    flex: 0 0 40%;
}

.intro-image-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.services-preview {
    background-color: #f5f5f5;
    padding: 90px 80px;
}

.section-header-left {
    max-width: 1400px;
    margin: 0 auto 50px auto;
}

.section-header-left h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-left p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
}

.select-service {
    background-color: #2c3e50;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
}

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

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

.form-section-offset {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 80px;
    gap: 80px;
}

.form-container {
    flex: 0 0 50%;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-container p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

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

.selected-service-display {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #2e7d32;
}

.contact-form label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #e67e22;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.form-side-image {
    flex: 0 0 40%;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.trust-section {
    background-color: #2c3e50;
    padding: 80px 80px;
    color: #fff;
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 40px;
}

.trust-item {
    flex: 1;
}

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

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

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 80px 0 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #fff;
}

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

.about-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 120px 80px;
    color: #fff;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: #ecf0f1;
}

.about-story {
    padding: 90px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 0 0 50%;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.story-image {
    flex: 0 0 45%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.about-values {
    background-color: #f5f5f5;
    padding: 90px 80px;
}

.about-values h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 0 0 calc(50% - 15px);
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e67e22;
}

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

.about-process {
    padding: 90px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

.process-content > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    gap: 30px;
}

.step {
    flex: 1;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #e67e22;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.services-header {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 100px 80px;
    text-align: center;
    color: #fff;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.services-header p {
    font-size: 20px;
    color: #ecf0f1;
}

.services-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px;
}

.service-detailed {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detailed.reverse {
    flex-direction: row-reverse;
}

.service-detailed-image {
    flex: 0 0 45%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.service-detailed-content {
    flex: 0 0 50%;
}

.service-detailed-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-price-block {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

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

.btn-service {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.contact-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 80px;
}

.contact-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-container > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #e67e22;
}

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

.contact-note {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid #e67e22;
}

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

.contact-note a {
    color: #e67e22;
    font-weight: 600;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.thanks-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 80px;
    text-align: center;
}

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

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

.thanks-service-info {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 4px;
    margin: 40px 0;
}

.thanks-service-info p {
    font-size: 17px;
    color: #2e7d32;
    margin: 0;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary {
    background-color: #e67e22;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    background-color: #95a5a6;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 80px;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-container ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

.legal-container a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
}

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset,
    .hero-image-panel {
        flex: 1;
    }

    .hero-image-panel {
        min-height: 400px;
    }

    .intro-offset,
    .form-section-offset,
    .story-layout {
        flex-direction: column;
    }

    .intro-text-block,
    .intro-image-card,
    .form-container,
    .form-side-image,
    .story-text,
    .story-image,
    .service-detailed-image,
    .service-detailed-content {
        flex: 1;
    }

    .service-card {
        flex: 0 0 calc(50% - 15px);
    }

    .trust-grid,
    .process-steps {
        flex-direction: column;
    }

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

    .service-detailed.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero-content-offset,
    .services-preview,
    .main-footer,
    .about-story,
    .about-values,
    .about-process,
    .services-list,
    .contact-page,
    .thanks-section,
    .legal-page {
        padding: 60px 20px;
    }

    .intro-offset,
    .form-section-offset {
        padding: 0 20px;
        margin: 60px auto;
    }

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

    .service-card {
        flex: 0 0 100%;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-card {
        flex: 1;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}