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

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

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

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

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

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
}

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

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

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

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

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #34495e;
}

.hero-image {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

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

.btn-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.btn-large:hover {
    background-color: #2980b9;
}

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

.intro-image {
    flex: 1;
    background-color: #95a5a6;
    overflow: hidden;
}

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

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.benefits-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.benefits-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 40px;
    background-color: #ecf0f1;
    border-radius: 8px;
    transition: transform 0.3s;
}

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 16px;
    color: #34495e;
}

.services-overview {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

.services-split-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.services-split-layout.reverse {
    flex-direction: row-reverse;
}

.service-left,
.service-right {
    flex: 1;
}

.service-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #34495e;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 25px;
}

.btn-service {
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #2980b9;
}

.testimonial-section {
    display: flex;
    align-items: stretch;
    background-color: #34495e;
}

.testimonial-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.testimonial-content blockquote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    color: #bdc3c7;
}

.testimonial-image {
    flex: 1;
    background-color: #7f8c8d;
    overflow: hidden;
}

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

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

.cta-image {
    flex: 1;
    background-color: #95a5a6;
    overflow: hidden;
}

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

.cta-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #3498db;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-content .btn-large {
    background-color: #ffffff;
    color: #3498db;
}

.cta-content .btn-large:hover {
    background-color: #ecf0f1;
}

.form-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.form-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.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: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px;
    background-color: #ecf0f1;
    border-top: 3px solid #3498db;
}

.disclaimer-section p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: #34495e;
    line-height: 1.8;
}

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

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #3498db;
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

.btn-primary {
    padding: 12px 24px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 12px 24px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .testimonial-section,
    .cta-split,
    .services-split-layout {
        flex-direction: column;
    }

    .services-split-layout.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .cta-content,
    .testimonial-content {
        padding: 60px 30px;
    }

    .hero-image,
    .intro-image,
    .testimonial-image,
    .cta-image {
        min-height: 300px;
    }

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

    .nav-menu {
        flex-basis: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 15px;
    }

    .benefit-card {
        flex: 1 1 100%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .intro-content h2,
    .benefits-section h2,
    .services-overview h2 {
        font-size: 32px;
    }
}