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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.navbar {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #6b6b6b;
}

.ad-notice {
    font-size: 0.8rem;
    color: #888;
    border-left: 1px solid #ddd;
    padding-left: 2rem;
}

.hero-minimal {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: #6b6b6b;
    max-width: 700px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-image {
    width: 100%;
    height: 600px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.intro-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

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

.lead-text {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.7;
    color: #2c2c2c;
}

.services-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 5rem;
}

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

.service-cards-minimal {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.service-card {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-wrap {
    flex: 1;
    height: 500px;
    background-color: #e8e8e8;
    overflow: hidden;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
}

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

.service-info h3 {
    font-size: 2.2rem;
    font-weight: 400;
}

.service-info p {
    font-size: 1.1rem;
    color: #6b6b6b;
    line-height: 1.8;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-top: 1rem;
}

.btn-service {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #4a4a4a;
}

.form-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
    background-color: #f5f5f5;
}

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

.form-container-minimal h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.form-intro {
    font-size: 1.2rem;
    color: #6b6b6b;
    margin-bottom: 3rem;
}

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

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

.form-group label {
    font-size: 0.9rem;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #4a4a4a;
}

.about-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.about-content-split {
    display: flex;
    gap: 6rem;
    align-items: center;
}

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

.about-text h2 {
    font-size: 3rem;
    font-weight: 300;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b6b6b;
    line-height: 1.8;
}

.link-arrow {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 1rem;
    display: inline-block;
    transition: transform 0.3s;
}

.link-arrow:hover {
    transform: translateX(10px);
}

.about-image {
    flex: 1;
    height: 600px;
    background-color: #e8e8e8;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
}

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-section p {
    color: #b0b0b0;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4a4a4a;
}

.disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #d0d0d0;
    padding: 1.5rem;
    z-index: 2000;
    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;
    margin: 0;
}

.cookie-content a {
    color: #2c2c2c;
}

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

.btn-cookie {
    padding: 0.8rem 2rem;
    border: 1px solid #2c2c2c;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

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

.btn-cookie.accept:hover {
    background-color: #4a4a4a;
}

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

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

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

    .service-card,
    .service-card:nth-child(even),
    .about-content-split {
        flex-direction: column;
    }

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

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

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