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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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: 20px;
}

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

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

.btn-accept, .btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.nav-right a:hover {
    color: #2c5f2d;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
    border: 1px solid #e0e0e0;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #2c5f2d;
    color: #ffffff;
}

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

.hero-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background-color: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5f2d;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.intro-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.intro-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.services-showcase {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

.service-split {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-content {
    flex: 1;
    padding: 50px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-visual {
    flex: 1;
    background-color: #f5f5f5;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 16px;
}

.service-select {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background-color: #235023;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 20px;
    background-color: #2c3e50;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.form-header p {
    color: #666;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #235023;
}

.trust-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.trust-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 20px;
}

.page-hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: #ffffff;
}

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

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

.about-story {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    background-color: #f5f5f5;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.value-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.process-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.process-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.process-image {
    flex: 1;
    background-color: #f5f5f5;
}

.process-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c5f2d;
}

.step p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.team-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #666;
}

.team-features {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.team-feature {
    flex: 1;
    min-width: 280px;
}

.team-feature h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.team-feature p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.cta-section {
    padding: 100px 60px;
    background-color: #2c5f2d;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

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

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

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

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

.service-detail-item {
    margin-bottom: 80px;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #f5f5f5;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content h4 {
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price-box {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.service-price-box .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
}

.contact-content {
    padding: 80px 60px;
    background-color: #ffffff;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta {
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.thanks-section {
    padding: 120px 60px;
    background-color: #f8f9fa;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.thanks-details {
    margin-bottom: 32px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.thanks-info h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-info ul {
    text-align: left;
    list-style: none;
    margin-bottom: 32px;
}

.thanks-info ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #555;
}

.thanks-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #235023;
}

.btn-secondary {
    background-color: transparent;
    color: #2c5f2d;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #2c5f2d;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

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

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-updated {
    color: #777;
    margin-bottom: 40px;
    font-size: 14px;
}

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

.legal-container h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-container h4 {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

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

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

.legal-container ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .nav-right {
        gap: 15px;
        font-size: 14px;
    }

    .ad-disclosure {
        display: none;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .intro-split,
    .story-split,
    .service-split,
    .service-detail-split,
    .contact-split,
    .process-split {
        flex-direction: column;
    }

    .service-split.reverse,
    .service-detail-split.reverse,
    .process-split.reverse {
        flex-direction: column;
    }

    .intro-section,
    .about-story,
    .process-section,
    .contact-content {
        padding: 60px 30px;
    }

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