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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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 {
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 26px;
    font-weight: 700;
    color: #e74c3c;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    color: #5a6c7d;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-right {
    flex: 1;
    background: #34495e;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.info-split {
    display: flex;
    align-items: stretch;
}

.info-image {
    flex: 1;
    background: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.info-content {
    flex: 1;
    padding: 80px 5%;
    background: #ffffff;
}

.info-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.benefits-list li {
    padding: 18px 0;
    font-size: 17px;
    color: #34495e;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 35px;
}

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

.benefits-list li:last-child {
    border-bottom: none;
}

.services-preview {
    padding: 90px 5%;
    background: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card-split {
    flex: 1;
    min-width: 280px;
    max-width: calc(50% - 15px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.service-card-split img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card-content {
    padding: 30px;
}

.service-card-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card-content p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 24px;
    color: #e74c3c;
    font-weight: 700;
}

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

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

.btn-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
}

.form-split {
    display: flex;
    align-items: stretch;
    min-height: 700px;
}

.form-content {
    flex: 1;
    padding: 80px 5%;
    background: #ffffff;
}

.form-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-content > p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.order-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    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: #e74c3c;
}

.form-group textarea {
    resize: vertical;
}

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

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

.form-image {
    flex: 1;
    background: #7f8c8d;
    position: relative;
    overflow: hidden;
}

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

.trust-split {
    display: flex;
    align-items: stretch;
    background: #ecf0f1;
}

.trust-content {
    flex: 1;
    padding: 80px 5%;
}

.trust-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.trust-content p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 50px;
}

.stats-inline {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 42px;
    color: #e74c3c;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-image {
    flex: 1;
    background: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

.disclaimer-section {
    padding: 60px 5%;
    background: #fef9e7;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box h3 {
    font-size: 22px;
    color: #d68910;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.footer-split {
    background: #2c3e50;
    color: #ecf0f1;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    padding: 60px 5% 40px;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

.footer-column p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-email {
    color: #ecf0f1;
    font-weight: 500;
}

.footer-links {
    list-style: none;
}

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

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 25px 5%;
    text-align: center;
}

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

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

.thanks-box {
    max-width: 600px;
    text-align: center;
}

.thanks-box h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.thanks-box .selected-service {
    font-size: 19px;
    color: #2c3e50;
    font-weight: 600;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.page-header {
    padding: 80px 5% 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #5a6c7d;
}

.page-content {
    padding: 60px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

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

.page-content h3 {
    font-size: 24px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 12px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.service-item-full {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.service-item-image {
    flex: 0 0 40%;
    background: #95a5a6;
    position: relative;
    overflow: hidden;
}

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

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

.service-item-details h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 0;
}

.service-item-details p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-item-details .price-large {
    font-size: 32px;
    color: #e74c3c;
    font-weight: 700;
    display: block;
    margin-top: 20px;
}

.contact-split-layout {
    display: flex;
    gap: 60px;
    padding: 60px 5%;
}

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

.contact-info-main h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.contact-detail h3 {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.contact-detail p {
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: #ecf0f1;
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #95a5a6;
}

@media (max-width: 968px) {
    .hero-split,
    .info-split,
    .form-split,
    .trust-split {
        flex-direction: column;
    }

    .service-card-split {
        max-width: 100%;
    }

    .service-item-full,
    .service-item-full:nth-child(even) {
        flex-direction: column;
    }

    .service-item-image {
        flex: 0 0 300px;
    }

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

    .header-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .main-nav {
        flex-wrap: wrap;
    }

    .stats-inline {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 36px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .info-content h2,
    .form-content h2,
    .trust-content h2 {
        font-size: 30px;
    }

    .services-preview h2 {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}