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

:root {
    --primary-color: #2C7A3E;
    --secondary-color: #1E5A2D;
    --accent-color: #4CAF50;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

.header-main {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 5px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

.nav-main a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-card {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
}

.hero-card-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-card-text {
    flex: 1;
}

.hero-card-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-card-text p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-card-image {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.intro-cards {
    padding: 80px 0;
}

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

.intro-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.card-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.intro-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.mission-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.mission-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.mission-section img {
    width: 100%;
    border-radius: 12px;
    margin: 40px 0;
    background-color: #e0e0e0;
}

.services-section {
    padding: 80px 0;
}

.services-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

.service-image {
    flex: 1;
    background-color: #e0e0e0;
    min-height: 300px;
}

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

.btn-select-service {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

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

.contact-form-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.contact-form-section > div > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.contact-form button[type="submit"] {
    width: 100%;
}

.trust-section {
    padding: 80px 0;
}

.trust-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.trust-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.trust-label {
    font-size: 18px;
    color: var(--text-light);
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    color: #999;
    line-height: 1.6;
}

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

.footer-col a {
    color: #999;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

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

.footer-bottom p {
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

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

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

.btn-cookie {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie:first-child:hover {
    background-color: var(--secondary-color);
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 22px;
}

.btn-cookie.btn-secondary:hover {
    background-color: white;
    color: var(--text-dark);
}

.page-header {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: var(--text-light);
}

.services-detail {
    padding: 80px 0;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-detail-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.cta-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.about-intro {
    padding: 80px 0;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
}

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

.values-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.approach-section {
    padding: 80px 0;
}

.approach-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.approach-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.approach-section img {
    width: 100%;
    border-radius: 12px;
    margin: 40px 0;
    background-color: #e0e0e0;
}

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

.expertise-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.expertise-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.expertise-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex: 1;
    max-width: 300px;
}

.expertise-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.expertise-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.expertise-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-section {
    padding: 80px 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.contact-note p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

.contact-image img {
    width: 100%;
    height: 100%;
}

.map-placeholder {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.map-box {
    background-color: #e0e0e0;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-box p {
    font-size: 18px;
    color: var(--text-light);
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    color: var(--primary-color);
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.thanks-content > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.thanks-service {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 18px;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-next ol {
    list-style: decimal;
    margin-left: 20px;
}

.thanks-next ol li {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.legal-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-page ul li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 700;
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-card-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-card-text p {
        font-size: 18px;
    }

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

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

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

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

    .expertise-cards {
        flex-direction: column;
        align-items: stretch;
    }

    .expertise-card {
        max-width: none;
    }

    .contact-layout {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

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