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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c2c2c;
    background: #fafafa;
}

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

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

header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.4em;
    font-weight: 600;
    color: #1a4d2e;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    color: #444;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
}

nav a:hover {
    color: #1a4d2e;
}

.ad-notice {
    font-size: 0.75em;
    color: #888;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 4px;
}

.hero {
    padding: 80px 0 60px;
    background: #fff;
}

.hero h1 {
    font-size: 2.8em;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-intro {
    font-size: 1.2em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    height: 420px;
    background: #e8f5e9;
    margin: 40px 0;
    border-radius: 2px;
    overflow: hidden;
}

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

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: 400;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 1.5em;
    margin: 40px 0 20px;
    font-weight: 500;
    color: #2c2c2c;
}

.content-section p {
    margin-bottom: 24px;
    font-size: 1.05em;
}

.inline-image {
    width: 100%;
    height: 360px;
    background: #f0f0f0;
    margin: 50px 0;
    border-radius: 2px;
    overflow: hidden;
}

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

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    margin: 30px 0;
    border-radius: 2px;
}

.service-card h3 {
    margin-top: 0;
    color: #1a4d2e;
}

.service-card .price {
    font-size: 1.8em;
    font-weight: 600;
    color: #1a4d2e;
    margin: 20px 0;
}

.service-card ul {
    list-style: none;
    margin: 20px 0;
}

.service-card ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a4d2e;
}

.cta-button {
    display: inline-block;
    background: #1a4d2e;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 3px;
    margin-top: 20px;
    transition: background 0.3s;
    border: none;
    font-size: 1em;
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    background: #14391f;
}

.cta-inline {
    display: inline;
    color: #1a4d2e;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
}

.cta-inline:hover {
    color: #14391f;
}

.form-section {
    background: #fff;
    padding: 60px 0;
}

.form-container {
    background: #f9f9f9;
    padding: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

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

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

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

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

footer {
    background: #2c2c2c;
    color: #ccc;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1em;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9em;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #1a4d2e;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.95em;
    transition: background 0.3s;
}

.cookie-accept {
    background: #1a4d2e;
    color: #fff;
}

.cookie-accept:hover {
    background: #14391f;
}

.cookie-reject {
    background: #f0f0f0;
    color: #333;
}

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

.contact-info {
    background: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    margin: 40px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin: 15px 0;
    color: #555;
}

.disclaimer {
    background: #fff9e6;
    border-left: 4px solid #f5c842;
    padding: 30px;
    margin: 50px 0;
    font-size: 0.95em;
    line-height: 1.7;
}

.thanks-message {
    text-align: center;
    padding: 100px 0;
}

.thanks-message h1 {
    color: #1a4d2e;
    margin-bottom: 20px;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 400;
}

.legal-content h2 {
    font-size: 1.8em;
    margin: 40px 0 20px;
    font-weight: 500;
}

.legal-content p {
    margin-bottom: 20px;
}

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

    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2em;
    }

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

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

    .form-container {
        padding: 30px 20px;
    }
}
