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

.ad-disclosure {
    background-color: #f7fafc;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #718096;
    border-bottom: 1px solid #e2e8f0;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2f855a;
    text-decoration: none;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-section {
    min-height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #2d3748;
}

.hero-content {
    max-width: 800px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

.intro-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.content-wrapper-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-text {
    font-size: 21px;
    line-height: 1.7;
    color: #4a5568;
    text-align: center;
}

.services-preview {
    padding: 90px 20px;
    background-color: #ffffff;
}

.services-preview .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #f7fafc;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.card-content {
    padding: 35px 30px;
}

.card-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2d3748;
}

.card-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.price {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #2f855a;
}

.value-section {
    padding: 90px 20px;
    background-color: #edf7f0;
}

.value-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d3748;
    text-align: center;
}

.value-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.cta-section {
    padding: 100px 20px;
    background-color: #2f855a;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
}

.cta-section > .content-wrapper > p {
    font-size: 19px;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.9;
}

.service-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 3px;
    font-size: 16px;
    font-family: inherit;
    color: #2d3748;
}

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

.cta-button {
    width: 100%;
    padding: 15px 30px;
    background-color: #2f855a;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #276749;
}

.trust-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.trust-content img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 4px;
    background-color: #e2e8f0;
}

.trust-text {
    max-width: 700px;
}

.trust-text h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2d3748;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.main-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    font-size: 14px;
    color: #718096;
}

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

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

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: #68d391;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #2f855a;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #276749;
}

.cookie-btn.reject {
    background-color: #718096;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #4a5568;
}

.page-header {
    padding: 80px 20px 50px;
    background-color: #f7fafc;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #2d3748;
    font-weight: 700;
}

.about-intro {
    padding: 80px 20px;
    background-color: #ffffff;
}

.large-text {
    font-size: 24px;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 30px;
    font-weight: 500;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.team-section {
    padding: 90px 20px;
    background-color: #f7fafc;
}

.team-section .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-section img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: #e2e8f0;
}

.team-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3748;
}

.team-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.philosophy-section {
    padding: 90px 20px;
    background-color: #edf7f0;
}

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d3748;
    text-align: center;
}

.philosophy-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.values-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.values-section .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.value-item {
    padding: 30px;
    background-color: #f7fafc;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2f855a;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.services-detail {
    padding: 60px 20px;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #e2e8f0;
}

.service-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: #e2e8f0;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3748;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2f855a;
    font-weight: bold;
    font-size: 18px;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #edf7f0;
    border-left: 4px solid #2f855a;
}

.price-label {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
}

.price-value {
    font-size: 22px;
    font-weight: 700;
    color: #2f855a;
}

.service-cta {
    padding: 70px 20px;
    background-color: #f7fafc;
    text-align: center;
}

.service-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3748;
}

.service-cta p {
    font-size: 18px;
    color: #4a5568;
}

.service-cta a {
    color: #2f855a;
    font-weight: 600;
    text-decoration: none;
}

.service-cta a:hover {
    text-decoration: underline;
}

.contact-content {
    padding: 70px 20px;
    background-color: #ffffff;
}

.contact-info-block {
    margin-bottom: 50px;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2d3748;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2f855a;
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-text {
    padding: 40px;
    background-color: #f7fafc;
    border-left: 4px solid #2f855a;
}

.contact-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.contact-text p:last-child {
    margin-bottom: 0;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #f7fafc;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2f855a;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.thanks-content a {
    color: #2f855a;
    font-weight: 600;
    text-decoration: none;
}

.thanks-content a:hover {
    text-decoration: underline;
}

.back-home-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #2f855a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-home-btn:hover {
    background-color: #276749;
    text-decoration: none;
}

.legal-page {
    padding: 60px 20px 100px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2d3748;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d3748;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2f855a;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .service-card {
        flex-direction: row;
    }

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

    .service-card img {
        width: 45%;
        height: auto;
    }

    .card-content {
        width: 55%;
        padding: 40px;
    }

    .trust-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .trust-content img {
        width: 50%;
    }

    .trust-text {
        width: 50%;
    }

    .team-section .content-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .team-section img {
        width: 48%;
    }

    .team-text {
        width: 48%;
    }

    .values-section .content-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        width: calc(33.333% - 30px);
    }

    .service-detail-item {
        flex-direction: row;
        align-items: center;
    }

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

    .service-image {
        width: 48%;
    }

    .service-info {
        width: 48%;
    }

    .contact-details {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-item {
        flex: 1;
    }
}