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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

.btn-accept:hover {
    background: #3d6a4a;
}

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

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

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.25rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

.nav-links a:hover {
    color: #4a7c59;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

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

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #5a5a5a;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #3d6a4a;
    transform: translateY(-2px);
}

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

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

.intro-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #5a5a5a;
    line-height: 1.8;
}

.services-preview {
    padding: 5rem 2rem;
    background: #f8f6f3;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.section-header p {
    font-size: 1.2rem;
    color: #5a5a5a;
}

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

.service-card {
    display: flex;
    background: #ffffff;
    overflow: hidden;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    overflow: hidden;
}

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

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

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

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.9rem 2rem;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background: #4a7c59;
    transform: translateY(-2px);
}

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

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.form-intro p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #5a5a5a;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    padding: 1rem;
    background: #f8f6f3;
    font-size: 1.05rem;
    color: #2c2c2c;
}

.form-container {
    flex: 1;
}

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

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

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

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

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

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

.trust-section {
    padding: 5rem 2rem;
    background: #2c2c2c;
    color: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 3rem;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #4a7c59;
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.footer {
    background: #1a1a1a;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
}

.footer-column {
    flex: 1;
}

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

.footer-column a {
    display: block;
    color: #d0d0d0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4a7c59;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 4rem;
    text-align: center;
    background: #f8f6f3;
}

.thanks-container h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #5a5a5a;
}

.thanks-container .service-selected {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a7c59;
    margin: 2rem 0;
}

.thanks-container a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    background: #3d6a4a;
}

.page-header {
    padding: 4rem 2rem;
    background: #f8f6f3;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    color: #5a5a5a;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.content-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
}

.content-section p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #5a5a5a;
}

.content-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.contact-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.detail-item {
    margin-bottom: 2rem;
}

.detail-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.detail-item p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background: #f8f6f3;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a5a5a;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-split,
    .intro-split,
    .service-card,
    .form-split,
    .trust-grid,
    .footer-content,
    .contact-grid {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .service-info {
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }
}