* {
    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: #1a1a2e;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #e74c3c;
    color: #ffffff;
}

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

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

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

.header-split {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-left .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e74c3c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-notice {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.nav-main {
    display: flex;
    gap: 2rem;
}

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

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

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

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-intro {
    font-size: 1.15rem;
    color: #34495e;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

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

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

.intro-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.intro-right-content {
    flex: 1.2;
    padding: 3rem 4rem;
}

.intro-right-content h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-right-content p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.intro-left-image {
    flex: 0.8;
    background-color: #bdc3c7;
}

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

.services-preview {
    background-color: #f8f9fa;
    padding: 5rem 3rem;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 3rem;
}

.services-split-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

.service-card-left img {
    flex: 0 0 45%;
    object-fit: cover;
    background-color: #bdc3c7;
}

.service-card-right img {
    flex: 0 0 45%;
    object-fit: cover;
    background-color: #bdc3c7;
}

.service-card-left {
    flex-direction: row;
}

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

.service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.price {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
}

.cta-centered {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    background-color: #34495e;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

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

.results-section {
    padding: 5rem 3rem;
    background-color: #1a1a2e;
    color: #ffffff;
}

.results-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
}

.results-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.result-item {
    text-align: center;
    flex: 1;
    min-width: 220px;
}

.result-stat {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.8rem;
}

.result-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ecf0f1;
}

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

.form-left-info {
    flex: 1;
    background-color: #34495e;
    color: #ffffff;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.form-left-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.3rem;
}

.form-right-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 450px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input, .form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #dce0e3;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

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

.footer-main {
    background-color: #1a1a2e;
    color: #ecf0f1;
    padding: 3rem 3rem 1rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p, .footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #e74c3c;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 5px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.page-header {
    background-color: #34495e;
    color: #ffffff;
    padding: 3rem 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.page-header p {
    font-size: 1.15rem;
    color: #ecf0f1;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.page-content h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

.page-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.2rem;
}

.page-content ul, .page-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.page-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background-color: #ffffff;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.service-item:hover {
    border-color: #e74c3c;
}

.service-item h3 {
    color: #1a1a2e;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.service-item p {
    margin-bottom: 1rem;
}

.service-item .price {
    display: block;
    margin-top: 1rem;
    font-size: 1.5rem;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.thanks-message {
    text-align: center;
    padding: 5rem 2rem;
}

.thanks-message h1 {
    color: #27ae60;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-message p {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 2rem;
}

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

    .service-card-left, .service-card-right {
        flex-direction: column;
    }

    .service-card-left img, .service-card-right img {
        flex: 0 0 250px;
    }

    .header-split {
        padding: 1rem 1.5rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-main {
        gap: 1rem;
    }

    .results-split {
        flex-direction: column;
    }
}