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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #1a1a1a;
    line-height: 1.7;
    background: #f9f7f4;
}

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

header {
    background: #2a2520;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #d4af37;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #f9f7f4;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-section {
    padding: 100px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #2a2520 0%, #4a3f35 100%);
    color: #f9f7f4;
}

.hero-section h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #d4af37;
    font-weight: 400;
}

.hero-section .subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-style: italic;
}

.hero-cta {
    display: inline-block;
    padding: 16px 48px;
    background: #d4af37;
    color: #2a2520;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.content-section {
    padding: 80px 0;
    max-width: 720px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2a2520;
    font-weight: 400;
}

.content-section h3 {
    font-size: 26px;
    margin: 48px 0 20px;
    color: #4a3f35;
    font-weight: 400;
}

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

.content-section strong {
    color: #d4af37;
    font-weight: 600;
}

.story-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 48px 0;
    border-radius: 2px;
}

.inline-cta {
    display: inline;
    color: #d4af37;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.inline-cta:hover {
    color: #e5c158;
}

.testimonial-box {
    background: #fff;
    padding: 40px;
    margin: 60px 0;
    border-left: 4px solid #d4af37;
    font-style: italic;
}

.testimonial-box .author {
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: #4a3f35;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 60px 0;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 24px;
    margin: 0 0 16px;
    color: #2a2520;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    margin: 20px 0;
}

.service-card .cta-button {
    display: inline-block;
    padding: 12px 32px;
    background: #2a2520;
    color: #f9f7f4;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.service-card .cta-button:hover {
    background: #4a3f35;
}

.form-section {
    background: #fff;
    padding: 60px;
    margin: 80px auto;
    max-width: 640px;
    border-radius: 2px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.form-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

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

.submit-button {
    width: 100%;
    padding: 18px;
    background: #d4af37;
    color: #2a2520;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 16px 32px;
    background: #d4af37;
    color: #2a2520;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(212,175,55,0.4);
    z-index: 999;
    transition: all 0.3s;
}

.sticky-cta:hover {
    background: #e5c158;
    transform: scale(1.05);
}

.urgency-banner {
    background: #d4af37;
    color: #2a2520;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

footer {
    background: #2a2520;
    color: #f9f7f4;
    padding: 60px 0 30px;
}

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid #4a3f35;
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2520;
    color: #f9f7f4;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    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;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

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

.cookie-accept {
    background: #d4af37;
    color: #2a2520;
}

.cookie-accept:hover {
    background: #e5c158;
}

.cookie-reject {
    background: transparent;
    color: #f9f7f4;
    border: 1px solid #f9f7f4;
}

.cookie-reject:hover {
    background: #4a3f35;
}

.wide-section {
    background: #fff;
    padding: 80px 40px;
    margin: 60px 0;
}

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

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.benefit-item h4 {
    font-size: 20px;
    margin: 20px 0 12px;
    color: #2a2520;
}

.benefit-icon {
    font-size: 48px;
    color: #d4af37;
}

.thanks-container {
    max-width: 640px;
    margin: 100px auto;
    padding: 60px;
    background: #fff;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 20px;
}

.back-button {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 36px;
    background: #2a2520;
    color: #f9f7f4;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.back-button:hover {
    background: #4a3f35;
}

.contact-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px;
    background: #fff;
    border-radius: 2px;
}

.contact-info {
    margin: 40px 0;
}

.contact-info-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 8px;
    color: #2a2520;
    font-size: 18px;
}

.legal-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 60px;
    background: #fff;
}

.legal-container h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2a2520;
}

.legal-container h2 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: #4a3f35;
}

.legal-container p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.legal-container ul {
    margin: 20px 0 20px 40px;
}

.legal-container li {
    margin-bottom: 12px;
    font-size: 16px;
}

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

    .nav-links {
        flex-direction: column;
        gap: 16px;
    }

    header nav {
        flex-direction: column;
        gap: 20px;
    }

    .form-section,
    .thanks-container,
    .contact-container,
    .legal-container {
        padding: 30px 20px;
    }

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        padding: 12px 24px;
        font-size: 14px;
    }
}
