* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #2d5a3d;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    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: #ffffff;
    text-transform: lowercase;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a3a2a;
}

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

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

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

.cta-primary {
    display: inline-block;
    background-color: #3d6b4a;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2d5a3d;
}

.intro-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a3a2a;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.intro-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-highlight {
    padding: 90px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a3a2a;
}

.section-header p {
    font-size: 18px;
    color: #6c757d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.service-info {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2d5a3d;
}

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

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #3d6b4a;
    margin-top: 18px;
}

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

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1.2;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a3a2a;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

.trust-list {
    list-style: none;
    padding: 0;
}

.trust-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3d6b4a;
    font-weight: 700;
    font-size: 18px;
}

.trust-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a3a2a;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: #6c757d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.cta-submit {
    background-color: #3d6b4a;
    color: #ffffff;
    padding: 16px 36px;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-submit:hover {
    background-color: #2d5a3d;
}

.main-footer {
    background-color: #1a3a2a;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #b8c5b8;
}

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

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

.footer-column ul li a {
    color: #b8c5b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #2d5a3d;
    border-bottom: 1px solid #2d5a3d;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #9ca3af;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b8c5b8;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    margin: 0;
}

.cookie-content a {
    color: #7dd3c0;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #3d6b4a;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2d5a3d;
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5a6268;
}

.page-header {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.about-intro {
    padding: 90px 20px;
}

.about-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a3a2a;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.mission-section {
    padding: 70px 20px;
    background-color: #f8f9fa;
}

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

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a3a2a;
}

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

.values-section {
    padding: 90px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a3a2a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 32px;
    border-left: 4px solid #3d6b4a;
    background-color: #f8f9fa;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2d5a3d;
}

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

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

.team-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a3a2a;
}

.team-section > p {
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #4a5568;
}

.team-stats {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 54px;
    font-weight: 700;
    color: #3d6b4a;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #6c757d;
}

.approach-section {
    padding: 90px 20px;
}

.approach-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1.2;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a3a2a;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.approach-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section {
    padding: 90px 20px;
    background-color: #2d5a3d;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #2d5a3d;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.services-detail {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a3a2a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2d5a3d;
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a5568;
}

.service-pricing {
    margin: 28px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #3d6b4a;
}

.service-cta {
    display: inline-block;
    background-color: #3d6b4a;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #2d5a3d;
}

.service-detail-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 400px;
}

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

.services-cta {
    padding: 90px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a3a2a;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #6c757d;
}

.contact-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a3a2a;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5a3d;
}

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

.contact-note {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
}

.contact-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 400px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-section {
    padding: 70px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a3a2a;
}

.location-section p {
    font-size: 17px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: #4a5568;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #3d6b4a;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a3a2a;
}

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

.service-confirmation {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
}

.service-confirmation p {
    font-size: 16px;
    margin: 0;
}

.thanks-next {
    margin: 40px 0 30px;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2d5a3d;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.thanks-link {
    display: inline-block;
    color: #3d6b4a;
    text-decoration: none;
    font-size: 17px;
    padding: 10px 20px;
    border: 2px solid #3d6b4a;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    min-width: 250px;
}

.thanks-link:hover {
    background-color: #3d6b4a;
    color: #ffffff;
}

.legal-page {
    padding: 60px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a3a2a;
}

.legal-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d5a3d;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #3d6b4a;
}

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .trust-content,
    .about-split,
    .approach-split,
    .service-detail-item,
    .contact-layout {
        flex-direction: column;
    }

    .service-detail-item.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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