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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #27ae60;
    color: white;
}

.btn-cookie:hover {
    background: #229954;
}

.btn-cookie-alt {
    background: transparent;
    color: white;
    border: 1px solid #ffffff;
}

.btn-cookie-alt:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.ad-disclosure {
    color: #666;
    font-size: 0.85rem;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

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

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

.main-nav a:hover {
    color: #27ae60;
}

.hero-section {
    margin-bottom: 0;
}

.hero-image {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c5f2d;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

.intro-section {
    background: #f8f9fa;
    padding: 80px 40px;
}

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

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c5f2d;
}

.intro-section p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #34495e;
}

.values-section {
    background: #ffffff;
    padding: 100px 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

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

.value-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.value-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.value-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
    color: #2c5f2d;
}

.value-card p {
    padding: 0 20px 20px;
    color: #555;
}

.services-preview {
    background: #fafafa;
    padding: 100px 40px;
}

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

.services-preview h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: #2c5f2d;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: #ffffff;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.service-content {
    flex: 1;
}

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

.service-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 15px;
}

.price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #e8f5e9;
}

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

.btn-select-service:hover {
    background: #1f4320;
}

.form-section {
    background: #ffffff;
    padding: 100px 40px;
    border-top: 1px solid #e0e0e0;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c5f2d;
    text-align: center;
}

.form-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
}

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

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

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

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

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

.form-group input[readonly] {
    background: #f5f5f5;
    color: #27ae60;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

.trust-section {
    background: #2c5f2d;
    color: #ffffff;
    padding: 80px 40px;
}

.trust-section h2 {
    font-size: 2.25rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.trust-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

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

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

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

.footer-section h4 {
    margin-bottom: 15px;
    color: #27ae60;
}

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

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

.footer-section p {
    color: #cccccc;
    font-size: 0.95rem;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #cccccc;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.75rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 15px;
}

.thanks-service {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 1.1rem;
    color: #2c5f2d;
    font-weight: 600;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #2c5f2d;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #1f4320;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

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

    .service-item,
    .service-item.reverse {
        flex-direction: column;
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
    }
}