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

:root {
    --color-primary: #1a1a1a;
    --color-secondary: #4a4a4a;
    --color-accent: #8b7355;
    --color-light: #f5f5f5;
    --color-white: #ffffff;
    --spacing-unit: 1.5rem;
    --max-width: 1200px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--color-primary);
    background: var(--color-white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

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

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

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

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

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

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

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

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

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

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

.header {
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-main {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 0.85rem;
    color: var(--color-secondary);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--color-secondary);
    border-radius: 3px;
}

.hero-minimal {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin-bottom: 8rem;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #e8e4e0;
}

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

.hero-text {
    padding: 4rem 0;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}

.intro-section {
    padding: 6rem 0;
    background: var(--color-light);
}

.large-text {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 300;
    text-align: center;
}

.services-grid {
    padding: 8rem 0;
}

.section-heading {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: -1px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 300px;
    margin-bottom: 2rem;
    background-color: #e8e4e0;
}

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

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 8rem 0;
    background: var(--color-light);
}

.form-section h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 4rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cta-section {
    padding: 8rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 3rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.contact-info {
    background: var(--color-light);
    padding: 6rem 0;
}

.info-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 250px;
}

.info-block h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.info-block p {
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.content-page {
    padding: 6rem 0;
}

.content-page h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.content-page h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.content-page p {
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.content-page ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.content-page li {
    margin-bottom: 0.75rem;
    color: var(--color-secondary);
}

.about-hero {
    padding: 6rem 0;
    background: var(--color-light);
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.about-content {
    padding: 6rem 0;
}

.about-section {
    margin-bottom: 6rem;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.about-section p {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.services-list {
    padding: 6rem 0;
}

.service-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: flex-start;
}

.service-item-image {
    flex: 0 0 400px;
    height: 300px;
    background-color: #e8e4e0;
}

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

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

.service-item-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-item-content p {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.service-item-content .price {
    margin-bottom: 0;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.thanks-content p {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.selected-service-info {
    background: var(--color-light);
    padding: 2rem;
    margin: 2rem 0;
}

.selected-service-info p {
    margin: 0;
}

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

    .subtitle {
        font-size: 1.25rem;
    }

    .large-text {
        font-size: 1.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .service-cards {
        gap: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-main {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

    .info-grid {
        flex-direction: column;
    }
}