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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content a {
    color: #4CAF50;
    text-decoration: underline;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a4d2e;
    text-decoration: none;
    text-transform: lowercase;
}

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

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

.nav-right a:hover {
    color: #1a4d2e;
}

.ad-disclosure {
    padding: 0.4rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #666;
}

.hero-split {
    display: flex;
    min-height: 90vh;
}

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

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

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 600px;
}

.hero-right {
    flex: 1;
}

.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.content-split {
    display: flex;
    min-height: 70vh;
}

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

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

.split-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem 4rem 3rem;
    background-color: #ffffff;
}

.content-split.reverse .split-right {
    padding: 4rem 3rem 4rem 5rem;
}

.split-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
    line-height: 1.3;
}

.split-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
    line-height: 1.3;
}

.split-right p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a4d2e;
    margin: 2rem 0 1.5rem 0;
}

.services-intro {
    padding: 5rem 3rem;
    background-color: #1a4d2e;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: 1.3rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

.trust-section {
    padding: 6rem 3rem;
    background-color: #f8f9f8;
    text-align: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    color: #1a4d2e;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.2rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.8;
}

.form-section {
    padding: 5rem 3rem;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.2rem;
    color: #1a4d2e;
    margin-bottom: 1rem;
}

.form-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a4d2e;
}

.btn-primary {
    background-color: #1a4d2e;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #15392a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #1a4d2e;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #1a4d2e;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a4d2e;
    color: #ffffff;
}

.btn-service {
    background-color: #2c5f3f;
    color: #ffffff;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #1a4d2e;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 3rem 2rem 3rem;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-left {
    flex: 1.5;
}

.footer-left h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.footer-left p {
    color: #b0b0b0;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.disclaimer {
    font-size: 0.9rem;
    color: #888;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-right {
    flex: 1;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-email {
    color: #b0b0b0;
    font-size: 0.95rem;
}

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

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    color: #1a4d2e;
    margin-bottom: 1rem;
}

.page-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.page-content h2 {
    font-size: 2rem;
    color: #1a4d2e;
    margin: 2.5rem 0 1rem 0;
}

.page-content h3 {
    font-size: 1.5rem;
    color: #2c5f3f;
    margin: 2rem 0 0.8rem 0;
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.page-content li {
    margin-bottom: 0.8rem;
}

.about-split {
    display: flex;
    gap: 4rem;
    margin: 4rem 0;
}

.about-left {
    flex: 1;
}

.about-right {
    flex: 1;
}

.about-image {
    width: 100%;
    border-radius: 8px;
    margin: 2rem 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.service-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: #f8f9f8;
    border-left: 4px solid #1a4d2e;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.8rem;
    color: #1a4d2e;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f3f;
    margin: 1rem 0;
}

.contact-split {
    display: flex;
    gap: 4rem;
    margin: 3rem 0;
}

.contact-left {
    flex: 1;
}

.contact-right {
    flex: 1;
}

.contact-info {
    background-color: #f8f9f8;
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #1a4d2e;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.thanks-container {
    text-align: center;
    padding: 6rem 3rem;
}

.thanks-container h1 {
    font-size: 3.5rem;
    color: #1a4d2e;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-service {
    background-color: #f8f9f8;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 600px;
}

@media (max-width: 968px) {
    .hero-split,
    .content-split,
    .footer-split,
    .about-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .split-right {
        padding: 3rem 2rem;
    }

    .nav-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .service-card {
        flex-direction: column;
    }
}