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

:root {
    --color-primary: #1a1a1a;
    --color-secondary: #4a4a4a;
    --color-accent: #8b7355;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f7f5;
    --color-border: #e5e5e5;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --spacing-unit: 1rem;
}

body {
    font-family: var(--font-primary);
    color: var(--color-primary);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
}

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

.nav-links a {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.8rem;
    color: var(--color-secondary);
    border: 1px solid var(--color-border);
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
}

.hero-minimal {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 3rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-secondary);
    max-width: 650px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    background-color: var(--color-bg-alt);
}

.intro-statement {
    padding: 8rem 3rem;
    background-color: var(--color-bg-alt);
}

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

.large-text {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 300;
    color: var(--color-primary);
    text-align: center;
}

.featured-services {
    padding: 8rem 3rem;
}

.services-header {
    max-width: 1400px;
    margin: 0 auto 5rem auto;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateX(10px);
}

.service-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-container img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 1.1rem;
    color: var(--color-secondary);
    line-height: 1.7;
    max-width: 700px;
}

.service-price {
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: 400;
}

.service-cta {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    background-color: var(--color-primary);
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: var(--color-accent);
}

.offset-content {
    padding: 8rem 3rem;
    background-color: var(--color-bg-alt);
}

.offset-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.offset-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.offset-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.offset-text p {
    font-size: 1.1rem;
    color: var(--color-secondary);
    line-height: 1.7;
}

.text-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 1rem;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 0.2rem;
    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.7;
}

.offset-image {
    flex: 1;
    background-color: var(--color-border);
}

.offset-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.inquiry-section {
    padding: 8rem 3rem;
}

.inquiry-container {
    max-width: 800px;
    margin: 0 auto;
}

.inquiry-container h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.inquiry-intro {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 3rem;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.form-group label {
    font-size: 0.95rem;
    color: var(--color-secondary);
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--color-border);
    font-family: var(--font-primary);
    font-size: 1rem;
    background-color: var(--color-bg);
    transition: border-color 0.3s ease;
}

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

.form-submit {
    align-self: flex-start;
    padding: 1.2rem 3rem;
    background-color: var(--color-primary);
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-markers {
    padding: 6rem 3rem;
    background-color: var(--color-bg-alt);
}

.markers-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

.marker {
    text-align: center;
}

.marker-number {
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.marker-text {
    font-size: 1rem;
    color: var(--color-secondary);
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 300px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

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

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

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

.cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.cookie-link {
    color: white;
    text-decoration: underline;
    font-size: 0.9rem;
}

.thanks-message {
    padding: 10rem 3rem;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.thanks-content p {
    font-size: 1.3rem;
    color: var(--color-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
}

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

.thanks-cta:hover {
    background-color: var(--color-accent);
}

.page-header {
    margin-top: 80px;
    padding: 6rem 3rem 4rem 3rem;
}

.page-header-content {
    max-width: 1400px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--color-secondary);
    max-width: 700px;
}

.page-content {
    padding: 4rem 3rem;
}

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

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

.content-container h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-container p {
    font-size: 1.1rem;
    color: var(--color-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.content-container ul li {
    font-size: 1.1rem;
    color: var(--color-secondary);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.contact-info {
    padding: 6rem 3rem;
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
}

.contact-section {
    flex: 1;
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.contact-section p {
    font-size: 1.1rem;
    color: var(--color-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

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

    .offset-wrapper {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-minimal {
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .markers-container {
        flex-direction: column;
    }
}