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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    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);
}

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

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

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

.ad-disclosure {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #ecf0f1;
    padding: 4px 12px;
    border-radius: 3px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background-color: #f8f9fa;
}

.hero-left h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.hero-right {
    flex: 1;
    background-color: #e8f4f8;
}

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

.value-proposition {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.value-left {
    flex: 1;
    background-color: #dfe6e9;
}

.value-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-right {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-right h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.4;
}

.value-right p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-showcase {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.services-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h3 {
    font-size: 38px;
    color: #2c3e50;
    line-height: 1.3;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
    background-color: #dfe6e9;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 28px;
}

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

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

.price {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
}

.consultation-form {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 16px;
    color: #546e7a;
}

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

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

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

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

.btn-submit {
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.trust-indicators {
    background-color: #ecf0f1;
    padding: 80px 40px;
}

.indicator-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
}

.indicator-text {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.indicator-text h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.indicator-text p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
}

.indicator-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

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

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

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

.footer-section p {
    font-size: 14px;
    color: #bdc3c7;
}

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

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

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

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

.disclaimer {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 40px;
    border-top: 1px solid #445566;
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-container h2 {
    font-size: 36px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-container .selected-service {
    display: inline-block;
    margin: 24px 0;
    padding: 12px 24px;
    background-color: #e8f5e9;
    border-radius: 4px;
    font-weight: 600;
    color: #27ae60;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container .back-link:hover {
    background-color: #2980b9;
}

@media (max-width: 1024px) {
    .hero-split,
    .value-proposition,
    .indicator-split {
        flex-direction: column;
    }

    .hero-left,
    .value-right,
    .indicator-text {
        padding: 40px;
    }

    .form-row {
        flex-direction: column;
    }

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

    .ad-disclosure {
        position: static;
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-left h2 {
        font-size: 32px;
    }

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

    .service-card {
        min-width: 100%;
    }

    .consultation-form {
        padding: 40px 24px;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }
}