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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.ad-notice {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px 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: #2d5f3f;
}

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

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

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

.hero-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f9f7 0%, #e8f3ed 100%);
}

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

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #2d5f3f;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.info-cards {
    padding: 80px 20px;
    background-color: #fff;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 100%;
    height: 220px;
    background-color: #e8f3ed;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.info-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #1a3a2a;
}

.info-card p {
    padding: 0 24px 24px;
    color: #666;
    font-size: 15px;
}

.services-highlight {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #fafafa 0%, #fff 100%);
}

.services-highlight h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a3a2a;
}

.service-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
    background-color: #d4e4da;
}

.service-info {
    padding: 24px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a3a2a;
}

.service-info p {
    color: #666;
    margin-bottom: 16px;
    font-size: 15px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 16px;
}

.service-link {
    display: inline-block;
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2d5f3f;
    transition: opacity 0.3s;
}

.service-link:hover {
    opacity: 0.7;
}

.approach-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

.approach-text {
    flex: 1.2;
}

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

.approach-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.disclaimer-box {
    background-color: #fff9e6;
    border-left: 4px solid #f4c430;
    padding: 20px;
    margin-top: 30px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.approach-image {
    flex: 0.8;
    border-radius: 12px;
    overflow: hidden;
    background-color: #d4e4da;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
}

.form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e8f3ed 0%, #f5f9f7 100%);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a3a2a;
}

.form-card > p {
    color: #666;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #2d5f3f;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #234a31;
}

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

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

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

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

.footer-section p {
    color: #b0c4b8;
    font-size: 14px;
}

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

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

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

.footer-section ul li a:hover {
    color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 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: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background-color: #2d5f3f;
    color: #fff;
}

.cookie-reject {
    background-color: #555;
    color: #fff;
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.thanks-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.back-link {
    display: inline-block;
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2d5f3f;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 0.7;
}

.services-page {
    padding: 80px 20px;
    background-color: #fafafa;
}

.services-page h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    color: #1a3a2a;
}

.service-detail-card {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 0;
}

.service-detail-image {
    flex: 0 0 400px;
    background-color: #d4e4da;
}

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

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

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

.service-detail-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.service-detail-content .price {
    margin-bottom: 20px;
}

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

.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: #2d5f3f;
    font-weight: 700;
}

.about-page {
    padding: 80px 20px;
    background-color: #fff;
}

.about-page h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    color: #1a3a2a;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a3a2a;
}

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

.contact-page {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f9f7 0%, #e8f3ed 100%);
}

.contact-page h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    color: #1a3a2a;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.contact-info p {
    color: #555;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-info strong {
    color: #1a3a2a;
    display: block;
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-page {
    padding: 80px 20px;
    background-color: #fafafa;
}

.legal-page h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a3a2a;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a3a2a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

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

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
    color: #555;
}

.legal-content ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }

    .card-grid,
    .service-cards {
        flex-direction: column;
    }

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

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

    .service-detail-image {
        flex: 0 0 auto;
        height: 300px;
    }

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

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