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

body {
    font-family: 'Georgia', serif;
    color: #2c2c2c;
    line-height: 1.7;
    background-color: #fafaf8;
}

h1, h2, h3, h4 {
    font-weight: 400;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 24px;
    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;
    gap: 32px;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

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

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

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

.btn-reject:hover {
    background-color: #f5f5f5;
}

.minimal-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    letter-spacing: 0.03em;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.ad-notice {
    font-size: 11px;
    color: #888;
    padding: 6px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
}

.hero-minimal {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #d4c9b8;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 900px;
}

.hero-title {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 32px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.intro-spacious {
    padding: 160px 48px;
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 48px;
    margin-bottom: 48px;
    text-align: center;
}

.intro-content p {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    color: #444;
}

.feature-offset {
    display: flex;
    gap: 80px;
    align-items: center;
    padding: 120px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.offset-image {
    flex: 1;
    background-color: #e8e3d9;
}

.offset-image img {
    width: 100%;
    height: auto;
    display: block;
}

.offset-text {
    flex: 1;
    padding-left: 40px;
}

.offset-text h3 {
    font-size: 38px;
    margin-bottom: 32px;
    line-height: 1.3;
}

.offset-text p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #555;
}

.services-minimal {
    padding: 160px 48px;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 100px;
}

.services-header h2 {
    font-size: 52px;
    margin-bottom: 24px;
}

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

.service-grid-minimal {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.service-card-minimal {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 320px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: #fafaf8;
}

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

.service-card-minimal img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background-color: #d9d4c8;
}

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 400;
    color: #2c2c2c;
}

.form-section {
    padding: 160px 48px;
    background-color: #f5f3ef;
}

.form-container-minimal {
    max-width: 700px;
    margin: 0 auto;
}

.form-container-minimal h2 {
    font-size: 48px;
    margin-bottom: 24px;
    text-align: center;
}

.form-intro {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 64px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer {
    margin-top: 48px;
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    text-align: center;
}

.testimonials-minimal {
    padding: 160px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-spacious {
    margin-bottom: 80px;
}

.testimonial-spacious blockquote {
    border: none;
}

.testimonial-spacious p {
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
    color: #333;
}

.testimonial-spacious cite {
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.cta-minimal {
    padding: 160px 48px;
    text-align: center;
    background-color: #2c2c2c;
    color: #ffffff;
}

.cta-minimal h2 {
    font-size: 52px;
    margin-bottom: 32px;
}

.cta-minimal p {
    font-size: 18px;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 18px 48px;
    background-color: #ffffff;
    color: #2c2c2c;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #f0f0f0;
}

.minimal-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 80px 48px 32px;
}

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

.footer-brand h3 {
    font-size: 18px;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 12px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
    color: #999;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
}

.page-header-minimal {
    padding: 120px 48px 80px;
    text-align: center;
    background-color: #ffffff;
}

.page-header-minimal h1 {
    font-size: 64px;
    margin-bottom: 24px;
}

.page-header-minimal p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.content-section-minimal h2 {
    font-size: 38px;
    margin-bottom: 32px;
    margin-top: 64px;
}

.content-section-minimal h2:first-child {
    margin-top: 0;
}

.content-section-minimal p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #555;
    line-height: 1.8;
}

.content-section-minimal ul,
.content-section-minimal ol {
    margin-left: 32px;
    margin-bottom: 24px;
}

.content-section-minimal li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.8;
}

.contact-info-minimal {
    padding: 80px 48px;
    max-width: 700px;
    margin: 0 auto;
}

.info-block-minimal {
    margin-bottom: 48px;
}

.info-block-minimal h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.info-block-minimal p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 48px;
}

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

.thanks-content h1 {
    font-size: 56px;
    margin-bottom: 32px;
}

.thanks-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.8;
}

.thanks-content .btn-primary {
    margin-top: 32px;
}

@media (max-width: 968px) {
    .nav-container {
        flex-direction: column;
        gap: 24px;
    }

    .nav-links {
        gap: 24px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-spacious {
        padding: 80px 24px;
    }

    .intro-content h2 {
        font-size: 36px;
    }

    .feature-offset {
        flex-direction: column;
        padding: 80px 24px;
        gap: 40px;
    }

    .offset-text {
        padding-left: 0;
    }

    .services-minimal {
        padding: 80px 24px;
    }

    .services-header h2 {
        font-size: 38px;
    }

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

    .form-section {
        padding: 80px 24px;
    }

    .testimonials-minimal {
        padding: 80px 24px;
    }

    .testimonial-spacious p {
        font-size: 22px;
    }

    .cta-minimal {
        padding: 80px 24px;
    }

    .cta-minimal h2 {
        font-size: 38px;
    }

    .footer-content {
        flex-direction: column;
        gap: 48px;
    }

    .footer-links {
        gap: 48px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}