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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #f5f5f5;
    padding: 1.8rem 3rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #8b7355;
    color: #ffffff;
}

.btn-accept:hover {
    background: #6f5a40;
}

.btn-reject {
    background: transparent;
    color: #f5f5f5;
    border: 2px solid #f5f5f5;
}

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

.nav-stacked {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-brand a {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.8px;
}

.nav-disclosure {
    font-size: 0.8rem;
    color: #777;
    padding: 0.4rem 0.9rem;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

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

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

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

.hero-block {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #2a2a2a;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-text {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 850px;
    padding: 0 3rem;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: #e5e5e5;
}

.btn-hero {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #6f5a40;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.intro-block {
    background: #f9f9f9;
    padding: 7rem 6%;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.intro-image {
    flex: 1;
    max-width: 500px;
    background-color: #e0e0e0;
}

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

.services-block {
    background: #ffffff;
    padding: 7rem 6%;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header p {
    font-size: 1.25rem;
    color: #555;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 4rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.service-row:last-child {
    border-bottom: none;
}

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

.service-image {
    flex: 1;
    max-width: 480px;
    background-color: #f0f0f0;
}

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

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-details p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 2rem;
}

.btn-select-service {
    padding: 1rem 2.5rem;
    background: #2a2a2a;
    color: #ffffff;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #8b7355;
    transform: translateY(-2px);
}

.expertise-block {
    background: #2a2a2a;
    color: #f5f5f5;
    padding: 6rem 6%;
}

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

.expertise-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 700;
}

.expertise-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    color: #d5d5d5;
}

.form-block {
    background: #f9f9f9;
    padding: 7rem 6%;
}

.form-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.form-header p {
    font-size: 1.15rem;
    color: #666;
}

.selected-display {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f0f8f0;
    border-left: 4px solid #8b7355;
    font-weight: 600;
    color: #2a2a2a;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.05rem;
}

.form-field input,
.form-field textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #8b7355;
}

.btn-submit {
    padding: 1.2rem;
    background: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #6f5a40;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.footer-block {
    background: #2a2a2a;
    color: #d5d5d5;
    padding: 5rem 6% 2rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.footer-section ul li {
    margin-bottom: 0.9rem;
}

.footer-section ul li a {
    color: #d5d5d5;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8b7355;
}

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 2.5rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .intro-block {
        flex-direction: column;
        gap: 3rem;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 2.5rem;
    }

    .service-image,
    .intro-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        gap: 0.8rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-block {
        height: 60vh;
    }

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

    .hero-text p {
        font-size: 1.15rem;
    }

    .intro-block,
    .services-block,
    .expertise-block,
    .form-block {
        padding: 4rem 5%;
    }

    .intro-content h2,
    .services-header h2 {
        font-size: 2.2rem;
    }

    .service-row {
        padding: 3rem 0;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2.5rem;
    }

    .form-wrapper {
        padding: 2.5rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.content-section {
    background: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.content-section h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin: 2rem 0 1rem;
}

.content-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item strong {
    color: #1a1a1a;
    font-size: 1.1rem;
}

.contact-item span {
    color: #555;
    font-size: 1rem;
}

.thanks-message {
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-message h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.thanks-message p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: #ffffff;
}

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

.service-item {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

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

.service-item p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-item .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #d4af37;
}

.about-hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 6rem 5%;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 5rem 5%;
    background: #ffffff;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}