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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #c89666;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

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

.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-buttons {
    display: flex;
    gap: 10px;
}

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

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

.btn-accept:hover {
    background: #b37d4d;
}

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

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

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

.nav-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);
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-right a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: var(--accent-color);
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-bg);
}

.hero-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.hero-right {
    flex: 1;
    background: #ddd;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background: #b37d4d;
}

.intro-section {
    padding: 80px 20px;
    background: var(--white);
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image {
    flex: 0 0 400px;
    background: #e8e8e8;
    overflow: hidden;
    border-radius: 8px;
}

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

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

.service-image {
    width: 100%;
    height: 240px;
    background: #ddd;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 24px 12px;
    color: #666;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    padding: 12px 24px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.select-service.selected {
    background: var(--accent-color);
}

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

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-description {
    flex: 1;
}

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

.form-description p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #666;
}

.form-benefits {
    list-style: none;
    padding: 0;
}

.form-benefits li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

.form-container {
    flex: 1;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    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 {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input[readonly] {
    background: #f0f0f0;
    cursor: not-allowed;
}

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

.submit-button:hover {
    background: #b37d4d;
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

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

.trust-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.trust-container p {
    font-size: 18px;
    line-height: 1.7;
}

.main-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 20px;
}

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

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

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-column p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 14px;
}

.thanks-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

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

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

.thanks-container p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #666;
}

.thanks-container .service-info {
    background: var(--white);
    padding: 20px;
    border-radius: 4px;
    margin: 24px 0;
}

.thanks-container .service-info strong {
    color: var(--accent-color);
}

.back-button {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.back-button:hover {
    background: var(--secondary-color);
}

.contact-page {
    padding: 80px 20px;
    background: var(--white);
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #666;
}

.contact-details {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

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

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

.contact-item p {
    margin: 0;
    color: #555;
}

.contact-map {
    flex: 1;
    background: #e0e0e0;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page {
    padding: 80px 20px;
    background: var(--white);
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-container .last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.legal-container p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #555;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 16px;
    padding-left: 24px;
    line-height: 1.8;
    color: #555;
}

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

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

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.about-image {
    flex: 0 0 500px;
    background: #ddd;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-values {
    padding: 80px 20px;
    background: var(--white);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.value-card {
    flex: 1;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.services-page {
    padding: 80px 20px;
    background: var(--white);
}

.services-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-header p {
    font-size: 18px;
    color: #666;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 0 0 450px;
    height: 350px;
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-item-content {
    flex: 1;
}

.service-item-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-item-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.service-item-content .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-cta {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-container,
    .form-split,
    .contact-split,
    .about-hero-content {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        flex: none;
    }

    .intro-image,
    .about-image {
        flex: none;
        width: 100%;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .footer-content,
    .values-grid {
        flex-direction: column;
    }

    .nav-right {
        flex-wrap: wrap;
        gap: 15px;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-item-image {
        flex: none;
        width: 100%;
    }
}