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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    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-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background: var(--secondary-color);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-label {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-card {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    opacity: 0.95;
}

.intro-cards {
    padding: 80px 0;
    background: var(--white);
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.intro-card.highlight {
    background: var(--secondary-color);
    color: var(--white);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.intro-card p {
    font-size: 16px;
    line-height: 1.7;
}

.problem-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.split-card {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

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

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-light);
}

.split-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: var(--border-color);
}

.insight-section {
    padding: 80px 0;
    background: var(--white);
}

.insight-card-main {
    background: var(--white);
}

.insight-card-main h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.insight-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.insight-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.insight-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.insight-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.insight-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.trust-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
}

.services-preview {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.service-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: var(--border-color);
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.service-select-btn {
    width: 100%;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-select-btn:hover {
    background: var(--secondary-color);
}

.form-section {
    padding: 80px 0;
    background: var(--white);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    margin-bottom: 32px;
    font-size: 16px;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    width: 100%;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

.benefits-section {
    padding: 80px 0;
    background: var(--white);
}

.benefits-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.benefits-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.final-cta {
    padding: 80px 0;
    background: var(--secondary-color);
}

.cta-card {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 14px 40px;
    background: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.thanks-container {
    max-width: 600px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: var(--bg-light);
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-light);
}

.thanks-container a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 32px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.thanks-container a:hover {
    background: var(--secondary-color);
}

.about-hero {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
    text-align: center;
}

.about-hero p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-light);
}

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.info-item {
    margin-bottom: 24px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.info-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .ad-label {
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .service-card {
        max-width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
