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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

.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: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f4f;
}

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

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

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

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

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

.hero-text {
    flex: 1;
}

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

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

.cta-button {
    display: inline-block;
    background-color: #2c5f4f;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.hero-image {
    flex: 1;
    background-color: #e8ebe9;
}

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

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

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

.intro-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #f9faf9;
    border-radius: 8px;
    text-align: center;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f4f;
}

.intro-card p {
    color: #666;
    line-height: 1.7;
}

.services-section {
    padding: 80px 20px;
    background-color: #f5f7f6;
}

.services-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 10px;
    color: #2c5f4f;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e8ebe9;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f4f;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f4f;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 15px;
    background-color: #2c5f4f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #234a3d;
}

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

.process-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c5f4f;
}

.process-cards {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background-color: #f9faf9;
    border-radius: 8px;
    border-left: 4px solid #2c5f4f;
}

.process-number {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f4f;
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.process-card p {
    color: #666;
    line-height: 1.7;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: #2c5f4f;
    color: #fff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #fff;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 14px;
    color: #d4e8e1;
}

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

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c5f4f;
}

.form-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.form-image {
    width: 100%;
    background-color: #e8ebe9;
}

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

.form-container {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #2c5f4f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9faf9;
    border-left: 4px solid #2c5f4f;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c5f4f;
}

.disclaimer-box p {
    color: #666;
    line-height: 1.8;
}

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

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

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

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

.footer-column p {
    color: #b8ccc4;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #b8ccc4;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a30;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -4px 20px 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;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-btn.accept:hover {
    background-color: #234a3d;
}

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

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f9faf9;
    border-radius: 8px;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

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

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

.thanks-details {
    background-color: #fff;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-details p {
    margin-bottom: 10px;
    font-size: 16px;
}

.thanks-details strong {
    color: #2c5f4f;
}

.back-home {
    display: inline-block;
    background-color: #2c5f4f;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-home:hover {
    background-color: #234a3d;
}

.page-header {
    background: linear-gradient(135deg, #2c5f4f 0%, #1a3a30 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #d4e8e1;
}

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c5f4f;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

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

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
    line-height: 1.8;
    color: #555;
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f9faf9;
    border-radius: 8px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c5f4f;
}

.contact-info-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.team-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #e8ebe9;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c5f4f;
}

.team-member p {
    color: #666;
}

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

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

    .form-wrapper {
        flex-direction: column;
    }

    .nav-links {
        gap: 15px;
    }

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

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

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