* {
    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: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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 {
    flex: 1;
    min-width: 300px;
}

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

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

.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: white;
}

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

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

.btn-reject:hover {
    background-color: #636e72;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-notice {
    flex: 1;
    text-align: center;
}

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.hero-asymmetric {
    display: flex;
    align-items: center;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
}

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

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #555555;
    margin-bottom: 35px;
    line-height: 1.5;
}

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

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #ecf0f1;
}

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

.intro-block-left {
    flex: 1.2;
}

.intro-block-left h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-block-left p {
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
}

.intro-image-right {
    flex: 1;
}

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

.services-preview {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px 80px;
}

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

.section-header-offset p {
    font-size: 20px;
    color: #666666;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.card-offset-1 {
    margin-left: 0;
}

.card-offset-2 {
    margin-left: 120px;
}

.card-offset-3 {
    margin-left: 60px;
}

.card-offset-4 {
    margin-left: 180px;
}

.card-offset-5 {
    margin-left: 40px;
}

.service-image {
    flex: 1;
    min-width: 350px;
}

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

.service-content {
    flex: 1.5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h4 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

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

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

.select-service-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.trust-content-asymmetric {
    display: flex;
    align-items: center;
    gap: 60px;
}

.trust-text {
    flex: 1;
    padding-left: 100px;
}

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

.trust-text p {
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
}

.trust-image-overlap {
    flex: 1;
    position: relative;
    margin-right: -40px;
}

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

.form-section {
    background-color: #2c3e50;
    padding: 100px 40px;
}

.form-wrapper-asymmetric {
    max-width: 800px;
    margin: 0 auto 0 200px;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 18px;
    color: #bdc3c7;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
}

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

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

.disclaimer-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px;
    background-color: #fef5e7;
    border-left: 4px solid #f39c12;
}

.disclaimer-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.disclaimer-content p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

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

.footer-bottom p {
    color: #7f8c8d;
    font-size: 14px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

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

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

.thanks-content p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-content .service-info {
    font-weight: 600;
    color: #2c3e50;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.contact-page-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-page-container h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-info-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

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

.contact-info-block p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

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

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

.legal-page-container h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

    .hero-content-left {
        padding-right: 0;
    }

    .hero-image-offset {
        margin-top: 0;
        width: 100%;
    }

    .intro-section {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .service-image {
        min-width: auto;
        height: 250px;
    }

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

    .trust-text {
        padding-left: 0;
    }

    .trust-image-overlap {
        margin-right: 0;
    }

    .form-wrapper-asymmetric {
        margin: 0 auto;
    }

    .section-header-offset {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header-offset h3,
    .intro-block-left h3 {
        font-size: 32px;
    }

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