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

:root {
    --primary-dark: #1a1a1a;
    --primary-light: #f8f8f8;
    --accent: #2c3e50;
    --text-dark: #333333;
    --text-light: #666666;
    --border-subtle: #e0e0e0;
    --white: #ffffff;
    --background-alt: #fafafa;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 28px 40px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: var(--primary-light);
}

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

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

.minimal-header {
    padding: 50px 40px;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-subtle);
}

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

.logo {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--primary-dark);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 50px;
}

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

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

.ad-notice {
    font-size: 13px;
    color: var(--text-light);
    padding: 6px 14px;
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
}

.hero-minimal {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--background-alt);
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 900px;
}

.hero-text-overlay h1 {
    font-size: 72px;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
}

.intro-spacious {
    padding: 140px 40px;
    background-color: var(--white);
}

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

.intro-container h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 50px;
    line-height: 1.3;
    color: var(--primary-dark);
}

.large-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 300;
}

.featured-visual {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
}

.visual-block {
    flex: 1;
    background-color: var(--background-alt);
}

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

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

.text-block-offset h3 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.text-block-offset p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.services-showcase {
    padding: 120px 40px;
    background-color: var(--background-alt);
}

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

.services-header-center h2 {
    font-size: 52px;
    font-weight: 300;
    color: var(--primary-dark);
}

.service-cards-minimal {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 60px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-number {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.service-card h3 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.service-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.price-display {
    font-size: 28px;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 1px;
}

.imagery-break {
    width: 100%;
    background-color: var(--background-alt);
}

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

.testimonial-minimal {
    padding: 140px 40px;
    background-color: var(--white);
}

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

blockquote {
    border: none;
}

blockquote p {
    font-size: 28px;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-style: italic;
}

cite {
    font-size: 18px;
    color: var(--text-light);
    font-style: normal;
    letter-spacing: 1px;
}

.form-section-centered {
    padding: 120px 40px;
    background-color: var(--background-alt);
}

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

.form-container h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 25px;
    text-align: center;
    color: var(--primary-dark);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 60px;
    line-height: 1.7;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.form-group label {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 18px 20px;
    border: 1px solid var(--border-subtle);
    background-color: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 20px 50px;
    background-color: var(--primary-dark);
    color: var(--white);
    border: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

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

.final-image-block {
    padding: 100px 40px;
    background-color: var(--white);
    text-align: center;
}

.final-image-block img {
    max-width: 900px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.disclaimer-section {
    padding: 80px 40px;
    background-color: var(--background-alt);
}

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

.disclaimer-text p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
}

.minimal-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 40px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.page-hero-minimal {
    padding: 120px 40px 80px;
    background-color: var(--background-alt);
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 64px;
    font-weight: 200;
    color: var(--primary-dark);
    letter-spacing: -1px;
}

.about-intro-spacious {
    padding: 100px 40px;
    background-color: var(--white);
}

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

.about-visual-text {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 80px;
    background-color: var(--background-alt);
}

.about-image-block {
    flex: 1;
    background-color: var(--white);
}

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

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 35px;
    color: var(--primary-dark);
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.values-minimal {
    padding: 120px 40px;
    background-color: var(--white);
}

.values-container {
    max-width: 1000px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
    color: var(--primary-dark);
}

.value-item {
    margin-bottom: 60px;
}

.value-item h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--accent);
}

.value-item p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-image-full {
    width: 100%;
    background-color: var(--background-alt);
}

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

.about-closing {
    padding: 120px 40px;
    background-color: var(--white);
}

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

.closing-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.closing-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.services-detail-intro {
    padding: 100px 40px;
    background-color: var(--white);
}

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

.service-detail-block {
    padding: 100px 40px;
    background-color: var(--white);
}

.service-detail-block.alternate {
    background-color: var(--background-alt);
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-number {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.service-detail-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.service-detail-price {
    font-size: 32px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.service-image {
    margin-top: 50px;
    background-color: var(--background-alt);
}

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

.services-cta-section {
    padding: 120px 40px;
    background-color: var(--primary-dark);
    text-align: center;
}

.services-cta-container h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--white);
}

.services-cta-container p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.btn-large {
    display: inline-block;
    padding: 20px 60px;
    background-color: var(--white);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background-color: var(--primary-light);
}

.contact-content-spacious {
    padding: 100px 40px;
    background-color: var(--white);
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.contact-details {
    margin-top: 60px;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--accent);
}

.contact-item p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.contact-image-block {
    flex: 1;
    background-color: var(--background-alt);
}

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

.contact-approach {
    padding: 100px 40px;
    background-color: var(--background-alt);
}

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

.approach-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.approach-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.location-visual {
    padding: 100px 40px;
    background-color: var(--white);
}

.location-container {
    max-width: 1000px;
    margin: 0 auto;
}

.location-container h3 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.location-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.thanks-section {
    padding: 140px 40px;
    background-color: var(--white);
}

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

.thanks-container h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.thanks-details {
    margin: 60px 0;
    text-align: left;
}

.thanks-details p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.thanks-details a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.thanks-details a:hover {
    color: var(--primary-dark);
}

.thanks-image {
    margin: 60px 0;
    background-color: var(--background-alt);
}

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

.thanks-actions {
    margin-top: 60px;
}

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

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

.legal-container h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.legal-date {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.legal-container h2 {
    font-size: 32px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--accent);
}

.legal-container h3 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 35px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-container ul {
    margin: 20px 0 20px 30px;
}

.legal-container li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

    .intro-container h2,
    .services-header-center h2 {
        font-size: 36px;
    }

    .large-text {
        font-size: 18px;
    }

    .featured-visual,
    .about-visual-text,
    .contact-container {
        flex-direction: column;
    }

    .main-nav {
        gap: 25px;
    }

    .service-card {
        padding: 40px 30px;
    }

    .page-hero-minimal h1 {
        font-size: 42px;
    }

    .footer-content {
        flex-direction: column;
    }
}