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

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

.ad-notice {
    background: #f4f4f4;
    padding: 8px 0;
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

header {
    background: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

nav a:hover {
    color: #c9a961;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 4rem 2rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    max-width: 900px;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: #c9a961;
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    border-radius: 3px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #b89751;
}

.section-alt {
    background: #fff;
    padding: 5rem 2rem;
}

.section-dark {
    background: #2a2a2a;
    color: #e0e0e0;
    padding: 5rem 2rem;
}

.section-light {
    background: #f9f9f9;
    padding: 5rem 2rem;
}

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

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

.section-title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: center;
}

.section-intro {
    font-size: 1.15rem;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-left: 4px solid #c9a961;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #555;
}

.price {
    font-size: 1.8rem;
    color: #c9a961;
    font-weight: 600;
    margin-top: 1rem;
}

.image-content-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 4rem 0;
}

.image-content-split img {
    flex: 1;
    max-width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

.content-block {
    flex: 1;
}

.content-block h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
}

.content-block p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    margin: 4rem 0;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    color: #c9a961;
    font-weight: 600;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.form-section {
    background: #fff;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.8rem;
}

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

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

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

footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
    color: #aaa;
    line-height: 1.9;
    text-decoration: none;
    display: block;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
    z-index: 1000;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 3px;
}

.btn-accept {
    background: #c9a961;
    color: #fff;
}

.btn-reject {
    background: #e0e0e0;
    color: #333;
}

.thanks-message {
    text-align: center;
    padding: 6rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-message h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #c9a961;
}

.contact-info {
    background: #f9f9f9;
    padding: 3rem;
    margin-top: 3rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.email-text {
    color: #333;
    font-weight: 500;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    line-height: 1.9;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
}

.legal-content p {
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.disclaimer-box {
    background: #fff4e6;
    border-left: 4px solid #c9a961;
    padding: 2rem;
    margin: 3rem 0;
}

.disclaimer-box p {
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .image-content-split {
        flex-direction: column;
    }

    .image-content-split img {
        max-width: 100%;
    }

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

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