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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-alt {
    background-color: transparent;
    color: white;
    border: 1px solid #ffffff;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #16a085;
}

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

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

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

.ad-label {
    background-color: #f8f9fa;
    padding: 6px 12px;
    font-size: 12px;
    color: #6c757d;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

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

.hero-left {
    flex: 1;
    padding: 60px 80px;
    background-color: #f8f9fa;
}

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

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #495057;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #16a085;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.info-split.reverse {
    flex-direction: row-reverse;
}

.info-image {
    flex: 1;
    background-color: #dee2e6;
}

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

.info-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.info-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.info-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #495057;
}

.benefits-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.benefits-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.benefits-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #16a085;
}

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

.services-showcase {
    padding: 100px 0;
    background-color: #ffffff;
}

.services-showcase h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro {
    font-size: 18px;
    margin-bottom: 60px;
    color: #495057;
    max-width: 800px;
}

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

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

.service-content {
    flex: 1;
}

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

.service-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
}

.service-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-content ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #495057;
}

.service-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: bold;
}

.service-image {
    flex: 1;
    background-color: #e9ecef;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.price-tag {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #16a085;
    padding: 12px 0;
}

.cta-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.cta-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #16a085;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-left p {
    font-size: 18px;
    line-height: 1.7;
}

.cta-right {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #16a085;
}

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

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

.testimonials {
    padding: 100px 0;
    background-color: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #16a085;
    border-radius: 6px;
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 16px;
    color: #2c3e50;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #16a085;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #adb5bd;
}

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

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

.disclaimer-text {
    font-size: 12px;
    line-height: 1.5;
    color: #6c757d;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .hero-split,
    .info-split,
    .service-split,
    .cta-split {
        flex-direction: column;
    }

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

    .hero-left,
    .info-text,
    .cta-left,
    .cta-right {
        padding: 40px 30px;
    }

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

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

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

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