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

:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c2c;
    --accent-color: #7ab851;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f9faf8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    min-height: 600px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px;
    color: white;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 600px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-primary {
    background-color: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.intro-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.services-preview {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.card-content p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.price-tag span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.approach-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.approach-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.approach-text p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.approach-points {
    margin-top: 30px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
}

.point-icon {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.contact-form-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.form-intro {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
}

.btn-submit {
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background-color: var(--secondary-color);
}

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

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

.page-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

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

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

.services-detailed {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 0;
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background-color: var(--bg-light);
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-price-large span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.service-detail-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    color: var(--text-medium);
}

.service-detail-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.about-intro {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.philosophy-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.philosophy-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.philosophy-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    width: 280px;
}

.philosophy-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.philosophy-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.experience-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.experience-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.experience-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.experience-content {
    flex: 1;
}

.experience-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.experience-content p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.experience-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.experience-content ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-medium);
    font-size: 16px;
}

.experience-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.values-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.values-content {
    max-width: 800px;
    margin: 0 auto;
}

.values-content p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: white;
}

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

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-content {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-info-card {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-info-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-email {
    font-weight: 600;
    color: var(--text-dark);
}

.email-notice {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 6px;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-note p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.contact-map-placeholder {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-area-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.service-area-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-area-section p {
    text-align: center;
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.area-item {
    background-color: var(--bg-white);
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 15px;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.thanks-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.thanks-section .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.thanks-details p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-confirmation {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

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

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.thanks-image {
    flex: 1;
    background-color: var(--bg-white);
}

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

.next-steps-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.next-steps-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.step-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.legal-page {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-content ul li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.update-date {
    margin-top: 40px;
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 16px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .menu-toggle {
        display: flex;
    }

    .hero-overlay {
        padding: 40px 20px;
    }

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

    .hero-overlay p {
        font-size: 16px;
    }

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

    .service-card {
        width: 100%;
        max-width: 400px;
    }

    .approach-layout,
    .about-layout,
    .experience-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-image {
        min-width: 100%;
        height: 300px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        justify-content: stretch;
    }

    .cookie-actions button {
        flex: 1;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        width: 100%;
        max-width: 400px;
    }

    .thanks-section .container {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}