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

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

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

header {
    padding: 40px 0;
    border-bottom: 1px solid #e8dfd0;
    background-color: #fff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a472a;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 12px;
    border: 1px solid #e8dfd0;
    border-radius: 3px;
    background-color: #fdfbf7;
}

nav {
    width: 100%;
    margin-top: 24px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #34495e;
    font-size: 15px;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

nav a:hover {
    color: #1a472a;
    border-bottom-color: #1a472a;
}

.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #1a472a;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-intro {
    font-size: 20px;
    color: #5d6d7e;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 2px;
    background-color: #e8dfd0;
}

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

.story-section h2 {
    font-size: 32px;
    color: #1a472a;
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.4;
}

.story-section h3 {
    font-size: 24px;
    color: #2c3e50;
    margin: 40px 0 20px;
    font-weight: 500;
}

.story-section p {
    margin-bottom: 24px;
    font-size: 18px;
    text-align: justify;
}

.inline-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    margin: 48px 0;
    border-radius: 2px;
    background-color: #e8dfd0;
}

.inline-cta {
    display: inline-block;
    background-color: #1a472a;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    margin: 32px 0;
    border-radius: 2px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.inline-cta:hover {
    background-color: #0f2d1a;
}

.service-card {
    border-left: 3px solid #d4c5a9;
    padding: 28px 0 28px 32px;
    margin: 48px 0;
}

.service-card h3 {
    margin-top: 0;
}

.service-price {
    font-size: 28px;
    color: #1a472a;
    font-weight: 600;
    margin: 16px 0;
}

.service-description {
    color: #5d6d7e;
    margin-bottom: 20px;
}

.form-section {
    background-color: #fff;
    padding: 60px 40px;
    margin: 60px 0;
    border-top: 1px solid #e8dfd0;
    border-bottom: 1px solid #e8dfd0;
}

.form-section h2 {
    font-size: 28px;
    color: #1a472a;
    margin-bottom: 32px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #34495e;
}

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

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

.submit-btn {
    background-color: #1a472a;
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 2px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.submit-btn:hover {
    background-color: #0f2d1a;
}

.contact-info {
    padding: 60px 0;
}

.info-item {
    margin-bottom: 32px;
    border-left: 3px solid #d4c5a9;
    padding-left: 24px;
}

.info-item h3 {
    font-size: 18px;
    color: #1a472a;
    margin-bottom: 8px;
}

.info-item p {
    color: #5d6d7e;
    font-size: 16px;
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 40px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
}

.disclaimer {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 24px;
    margin: 40px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
}

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

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

.legal-content h2 {
    font-size: 24px;
    color: #2c3e50;
    margin: 40px 0 16px;
}

.legal-content p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 16px 0 16px 40px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 24px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s ease;
    font-family: inherit;
}

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

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

.cookie-btn:hover {
    opacity: 0.9;
}

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

.thanks-message h1 {
    font-size: 42px;
    color: #1a472a;
    margin-bottom: 24px;
}

.thanks-message p {
    font-size: 20px;
    color: #5d6d7e;
    margin-bottom: 16px;
}

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

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

    .hero-image {
        height: 300px;
    }

    .inline-image {
        height: 240px;
    }

    .story-section h2 {
        font-size: 26px;
    }

    .story-section p {
        font-size: 16px;
    }

    .form-section {
        padding: 40px 20px;
    }

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

    nav ul {
        gap: 16px;
    }
}
