* {
    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;
}

.ad-notice {
    background: #f8f9fa;
    padding: 8px 0;
    font-size: 12px;
    color: #6c757d;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

nav {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 2px solid #e8f5e9;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2e7d32;
    text-decoration: none;
}

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

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

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

.hero {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #4caf50;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 22px;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #2e7d32;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.section {
    padding: 80px 20px;
}

.section-alt {
    background: #f5f5f5;
}

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

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1b5e20;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    font-size: 19px;
    color: #546e7a;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #c8e6c9;
}

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

.card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1b5e20;
    font-weight: 700;
}

.card-description {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 20px;
    flex: 1;
}

.card-price {
    font-size: 28px;
    color: #2e7d32;
    font-weight: 800;
    margin-bottom: 20px;
}

.card-button {
    display: inline-block;
    background: #4caf50;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.card-button:hover {
    background: #388e3c;
}

.about-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1b5e20;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #455a64;
    line-height: 1.8;
}

.about-image-wrapper {
    flex: 1 1 400px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #c8e6c9;
}

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    background: #4caf50;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #388e3c;
}

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

.info-card {
    flex: 1 1 280px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1b5e20;
    font-weight: 700;
}

.info-card p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 8px;
}

.footer {
    background: #1b5e20;
    color: #ffffff;
    padding: 50px 20px 30px;
}

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

.footer-section {
    flex: 1 1 250px;
}

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

.footer-section p,
.footer-section a {
    font-size: 15px;
    color: #c8e6c9;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    color: #c8e6c9;
}

.disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 8px;
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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-text {
    flex: 1 1 400px;
    font-size: 15px;
}

.cookie-text a {
    color: #81c784;
    text-decoration: underline;
}

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

.cookie-button {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: #4caf50;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #388e3c;
}

.cookie-reject {
    background: #e0e0e0;
    color: #2c3e50;
}

.cookie-reject:hover {
    background: #bdbdbd;
}

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1b5e20;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2e7d32;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #455a64;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-content li {
    margin-bottom: 8px;
    color: #455a64;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-card {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 72px;
    color: #4caf50;
    margin-bottom: 25px;
}

.thanks-card h1 {
    font-size: 36px;
    color: #1b5e20;
    margin-bottom: 20px;
}

.thanks-card p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 35px;
    line-height: 1.7;
}

.back-button {
    display: inline-block;
    background: #4caf50;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.back-button:hover {
    background: #388e3c;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

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

    .section-title {
        font-size: 32px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .cards-grid {
        gap: 20px;
    }

    .card {
        flex: 1 1 100%;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-button {
        flex: 1;
    }
}
