* {
    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: #1a252f;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7d;
}

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

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

.main-nav a:hover {
    color: #2c5f7d;
}

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

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

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

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

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

.hero-right {
    flex: 1;
    position: relative;
}

.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background-color: #1f4459;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 125, 0.3);
}

.value-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

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

.value-image {
    flex: 1;
}

.value-image .image-container {
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
}

.value-content {
    flex: 1;
}

.value-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

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

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a252f;
}

.section-header-centered p {
    font-size: 18px;
    color: #546e7a;
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image .image-container {
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a252f;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f7d;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #34495e;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 73, 94, 0.3);
}

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

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.form-intro p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #34495e;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.form-container {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

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

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

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

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

.btn-submit:hover {
    background-color: #1f4459;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 125, 0.3);
}

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

.trust-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-content {
    flex: 1.5;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.trust-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #2c5f7d;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #546e7a;
}

.disclaimer-section {
    background-color: #fef9e7;
    padding: 40px;
    border-left: 4px solid #f39c12;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #7d6608;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 8px;
}

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

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
}

.thanks-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

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

.thanks-service {
    font-size: 20px;
    font-weight: 600;
    color: #2c5f7d;
    margin: 30px 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.content-wrapper h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a252f;
}

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

.content-wrapper p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.content-wrapper li {
    margin-bottom: 10px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a252f;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: #ecf0f1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #95a5a6;
}

.about-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

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

.about-image {
    flex: 1;
}

.about-image .image-container {
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

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

.services-list-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-list-section > p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 60px;
    line-height: 1.7;
}

.service-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #ecf0f1;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c5f7d;
}

.service-item p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 16px;
    line-height: 1.8;
}

.service-item .service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f7d;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .hero-split,
    .value-split,
    .service-card-split,
    .form-split,
    .trust-split,
    .contact-split,
    .about-split {
        flex-direction: column;
    }

    .service-card-split.reverse {
        flex-direction: column;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}