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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5f4d;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    background: #f8f9fa;
}

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

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

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

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

.hero-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

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

.intro-statement {
    padding: 5rem 2rem;
    background: #ffffff;
}

.statement-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.statement-visual {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
}

.statement-text {
    flex: 1;
}

.statement-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c5f4d;
}

.statement-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.featured-services {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f4d;
}

.services-header p {
    font-size: 1.25rem;
    color: #7f8c8d;
}

.service-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.service-info p {
    flex: 1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 600;
    color: #27ae60;
}

.cta-split {
    display: flex;
    min-height: 450px;
}

.cta-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #2c5f4d;
    color: #ffffff;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #2c5f4d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

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

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f4d;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #7f8c8d;
}

.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: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 1px solid #dcdcdc;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-markers {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f4d;
}

.trust-item p {
    line-height: 1.7;
}

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
}

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

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

.footer-column a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #27ae60;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
}

.about-hero {
    padding: 5rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c5f4d;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

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

.about-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

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

.about-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f4d;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f4d;
}

.value-item p {
    line-height: 1.7;
}

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

.methodology-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.methodology-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c5f4d;
}

.methodology-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.team-statement {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f4d;
}

.team-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.services-intro {
    padding: 5rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.services-intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c5f4d;
}

.services-intro p {
    font-size: 1.25rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    min-height: 500px;
}

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

.service-detail-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.service-detail-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c5f4d;
}

.service-detail-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.service-detail-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-text ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    color: #27ae60;
}

.cta-service {
    padding: 0.875rem 2rem;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: #229954;
    transform: translateY(-2px);
}

.services-cta {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: #ffffff;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c5f4d;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-page {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.contact-info-section {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c5f4d;
}

.contact-info-section > p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #7f8c8d;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f4d;
}

.contact-item p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.thanks-page {
    padding: 6rem 2rem;
    background: #f8f9fa;
    min-height: 500px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.thanks-content a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.thanks-content a:hover {
    color: #229954;
}

.legal-page {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: #2c5f4d;
}

.legal-content h3 {
    font-size: 1.375rem;
    margin: 1.5rem 0 0.75rem;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-content a {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #229954;
}

img {
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-split,
    .statement-wrapper,
    .cta-split,
    .about-split,
    .methodology-split,
    .service-detail {
        flex-direction: column;
    }

    .hero-content,
    .statement-text,
    .cta-text,
    .about-text,
    .methodology-text,
    .service-detail-text {
        padding: 3rem 2rem;
    }

    .hero-visual,
    .statement-visual,
    .cta-visual,
    .about-visual,
    .methodology-visual,
    .service-detail-visual {
        min-height: 300px;
    }

    .hero-content h1,
    .about-hero-content h1,
    .services-intro h1,
    .thanks-content h1,
    .contact-info-section h1 {
        font-size: 2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .footer-content,
    .trust-content {
        flex-direction: column;
        gap: 2rem;
    }

    .service-grid,
    .values-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
