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

.hidden {
    display: none !important;
}

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

.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;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-actions button {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2ecc71;
    color: #ffffff;
}

.btn-primary:hover {
    background: #27ae60;
}

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

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

.cookie-link {
    color: #3498db;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f3f;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #2ecc71;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    padding-left: 2rem;
    border-left: 1px solid #e0e0e0;
}

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

.hero-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #495057;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2ecc71;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-cta:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

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

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

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

.split-image-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.split-content-right {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f3f;
}

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

.split-section-reverse {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    background: #f8f9fa;
}

.split-content-left {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f3f;
}

.split-content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #495057;
}

.citation {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.split-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.services-preview {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.services-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c5f3f;
}

.services-header-center p {
    font-size: 1.2rem;
    color: #495057;
    line-height: 1.8;
}

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #2c5f3f;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #495057;
    line-height: 1.6;
}

.service-price {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2ecc71;
}

.form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

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

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #495057;
}

.form-wrapper {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2ecc71;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.trust-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.trust-content-center h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f3f;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2ecc71;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f3f;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2ecc71;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p,
.footer-section a {
    display: block;
    margin-bottom: 0.5rem;
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #2ecc71;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.footer-references h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-references p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: #34495e;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

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

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

.thanks-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 2rem;
}

.legal-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #2c5f3f;
    margin-bottom: 1rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #2c5f3f;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container p,
.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

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

.contact-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h1 {
    font-size: 2.8rem;
    color: #2c5f3f;
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    color: #2c5f3f;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.contact-map {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    padding: 3rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: #2c5f3f;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: #495057;
    line-height: 1.8;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.about-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.about-image-block {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-detail-header {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c5f3f 0%, #1e4530 100%);
    text-align: center;
    color: #ffffff;
}

.services-detail-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.services-detail-header p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-detail-card h2 {
    font-size: 2.2rem;
    color: #2c5f3f;
    margin-bottom: 1rem;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
}

.service-detail-card p,
.service-detail-card li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1rem;
}

.service-detail-card ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 968px) {
    .hero-split,
    .split-section,
    .split-section-reverse,
    .form-container-split,
    .contact-split,
    .about-split {
        flex-direction: column;
    }

    .hero-content h1,
    .about-hero h1,
    .services-detail-header h1 {
        font-size: 2.5rem;
    }

    .services-cards {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}