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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.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-color: #c19a6b;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #a67c52;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #888888;
    padding: 4px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

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

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #c19a6b;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    background-color: #f8f6f3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.hero-text {
    max-width: 540px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.hero-right {
    flex: 1;
    background-color: #d4c4b0;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #c19a6b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #a67c52;
    transform: translateY(-2px);
}

.intro-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.intro-left {
    flex: 1.2;
}

.intro-left h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.intro-right {
    flex: 1;
    background-color: #ebe7e1;
}

.intro-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.services-split {
    padding: 100px 40px;
    background-color: #f8f6f3;
}

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.service-item {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    gap: 0;
    background-color: #ffffff;
    overflow: hidden;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #d9cfc1;
}

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

.service-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #c19a6b;
    margin-bottom: 24px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c2c2c;
    text-decoration: none;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.trust-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-left {
    flex: 1;
    background-color: #e8e2d8;
}

.trust-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.trust-right {
    flex: 1;
}

.trust-right h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    color: #4a4a4a;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c19a6b;
    font-weight: 700;
    font-size: 20px;
}

.cta-section {
    padding: 120px 40px;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-content h2 {
    font-size: 44px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
}

.btn-large {
    display: inline-block;
    padding: 20px 48px;
    background-color: #c19a6b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background-color: #a67c52;
    transform: translateY(-2px);
}

.process-section {
    padding: 100px 40px;
    background-color: #f8f6f3;
    text-align: center;
}

.process-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.process-step {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 4px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #c19a6b;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
}

.testimonials-section {
    padding: 100px 40px;
    background-color: #ffffff;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background-color: #f8f6f3;
    padding: 40px 32px;
    border-radius: 4px;
    text-align: left;
}

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

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #c19a6b;
}

.form-section {
    padding: 100px 40px;
    background-color: #f8f6f3;
}

.form-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c19a6b;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #c19a6b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f0ece6;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #6a6a6a;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #999999;
}

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #c19a6b;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888888;
}

.thanks-hero {
    padding: 120px 40px;
    background-color: #f8f6f3;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-hero p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.thanks-hero .service-selected {
    font-size: 16px;
    color: #c19a6b;
    font-weight: 600;
}

.page-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.page-container h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.page-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.page-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.page-container ul {
    margin: 20px 0 20px 32px;
}

.page-container ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.services-page {
    padding: 100px 40px;
    background-color: #ffffff;
}

.services-page h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.service-card {
    max-width: 1200px;
    margin: 0 auto 60px;
    background-color: #f8f6f3;
    padding: 50px;
    border-radius: 4px;
}

.service-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #c19a6b;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.service-card ul {
    margin: 20px 0 20px 32px;
}

.service-card ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.contact-page {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-map {
    flex: 1;
    background-color: #e8e2d8;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

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

    .service-item.reverse {
        flex-direction: column;
    }

    .process-grid,
    .testimonials-container {
        flex-direction: column;
    }

    .footer-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

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

    .main-nav {
        gap: 20px;
    }
}