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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}

.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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    background-color: #f8f9fa;
}

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

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

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

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 20px;
    color: #555555;
    font-weight: 500;
}

.hero-left p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #666666;
}

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

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52,152,219,0.3);
}

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

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

.split-image {
    flex: 1;
    background-color: #dce5eb;
}

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

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

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555555;
    line-height: 1.7;
}

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

.check-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #444444;
}

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

.stats-section {
    background-color: #2c3e50;
    padding: 80px 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.stat-card {
    flex: 1;
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #3498db;
}

.stat-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #ecf0f1;
}

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

.testimonial-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.testimonial-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.testimonial-item {
    margin-bottom: 35px;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
    background-color: #d4dde3;
}

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

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

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

.process-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.process-step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.step-number {
    font-size: 42px;
    font-weight: 700;
    color: #3498db;
    line-height: 1;
}

.step-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-text p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.process-image {
    flex: 1;
    background-color: #dde8f0;
}

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

.form-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

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

.form-intro p {
    font-size: 17px;
    color: #666666;
}

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

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

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

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

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

.submit-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52,152,219,0.3);
}

.footer {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
    margin-bottom: 20px;
    font-style: italic;
}

.footer-bottom p {
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
}

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

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

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .split-content h2,
    .testimonial-content h2,
    .process-content h2,
    .form-intro h2 {
        font-size: 32px;
    }
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

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

.service-image {
    flex: 0 0 300px;
    background-color: #e8eef2;
}

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

.service-info {
    flex: 1;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 6px 0 6px 25px;
    position: relative;
    font-size: 15px;
    color: #555555;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

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

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

.contact-details {
    margin-top: 40px;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3498db;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #ecf0f1;
}

.contact-map {
    flex: 1;
    background-color: #d4dde3;
}

.about-hero {
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.about-hero p {
    font-size: 20px;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    margin: 40px 0;
    border-radius: 8px;
    background-color: #e8eef2;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 8px;
}

.thanks-container {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 80px 40px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.thanks-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.thanks-button:hover {
    background-color: #2980b9;
}

@media (max-width: 968px) {
    .service-card {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 250px;
    }

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