* {
    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.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background-color: #ffffff;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 40px;
}

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

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

.hero-minimal {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    background-color: #ffffff;
}

.hero-content {
    padding: 120px 60px 80px;
    max-width: 1200px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 300;
}

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

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

.intro-spacious {
    padding: 140px 60px;
    background-color: #f5f5f5;
}

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

.intro-text p {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.intro-text p:last-child {
    font-size: 32px;
    font-weight: 400;
}

.services-grid-minimal {
    padding: 140px 60px;
    background-color: #ffffff;
}

.services-grid-minimal h2 {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: -1px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    background-color: #fafafa;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 30px;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.select-service {
    padding: 15px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

.select-service:hover {
    background-color: #333;
}

.form-section {
    padding: 140px 60px;
    background-color: #f5f5f5;
}

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

.form-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 50px;
    text-align: center;
}

.selected-service-display {
    background-color: #e8e8e8;
    padding: 20px;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 500;
    display: none;
}

.selected-service-display.active {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.form-group textarea {
    resize: vertical;
}

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

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

.about-preview {
    padding: 140px 60px;
    background-color: #ffffff;
}

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

.about-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
}

.text-link {
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: underline;
    transition: opacity 0.3s;
}

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

.minimal-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 40px;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    text-decoration: none;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #666;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 30px 60px;
    display: none;
    z-index: 1000;
}

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

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

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
}

.page-hero {
    padding: 120px 60px 80px;
    background-color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.page-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 300;
}

.about-main {
    background-color: #fafafa;
}

.about-text-large {
    padding: 100px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text-large p {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 300;
    color: #2c2c2c;
}

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

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

.about-columns {
    display: flex;
    gap: 80px;
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-column {
    flex: 1;
}

.about-column h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
}

.about-column p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.about-values {
    padding: 100px 60px;
    background-color: #ffffff;
}

.about-values h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 30px);
    min-width: 300px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.about-experience {
    padding: 100px 60px;
    background-color: #f5f5f5;
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.experience-text {
    flex: 1;
}

.experience-text h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
}

.experience-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

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

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

.cta-about {
    padding: 100px 60px;
    background-color: #1a1a1a;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #cccccc;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s, color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #e8e8e8;
}

.services-detailed {
    background-color: #fafafa;
}

.service-detail {
    display: flex;
    gap: 80px;
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
    background-color: #ffffff;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
}

.service-detail-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.service-detail-text h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail-text ul {
    margin-left: 20px;
    margin-bottom: 30px;
}

.service-detail-text li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.service-price {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.service-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #333;
}

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

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

.services-cta-section {
    padding: 100px 60px;
    background-color: #f5f5f5;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.services-cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.contact-main {
    background-color: #fafafa;
}

.contact-info {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 60px;
}

.contact-details {
    display: flex;
    gap: 80px;
}

.contact-item {
    flex: 1;
}

.contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-item .note {
    font-size: 14px;
    color: #888;
    margin-top: 15px;
}

.contact-image-section {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.contact-approach {
    padding: 100px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-approach h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-approach p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.contact-cta {
    padding: 100px 60px;
    background-color: #ffffff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.thanks-section {
    padding: 100px 60px;
    background-color: #fafafa;
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 15px;
}

.thanks-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

.thanks-message p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

#service-confirmation {
    font-weight: 500;
    color: #1a1a1a;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.primary-btn,
.secondary-btn {
    padding: 15px 35px;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s, color 0.3s;
}

.primary-btn {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.secondary-btn {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

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

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

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

.legal-page {
    padding: 80px 60px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
}

.effective-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 60px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-content strong {
    color: #1a1a1a;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background-color: #f5f5f5;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
    font-size: 15px;
}

.cookie-table th {
    font-weight: 600;
}

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

    .services-container {
        gap: 40px;
    }

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }

    .about-columns,
    .about-experience,
    .service-detail,
    .thanks-section {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .contact-details {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .minimal-nav {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .nav-links {
        gap: 25px;
    }

    .hero-content {
        padding: 80px 30px 60px;
    }

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

    .intro-spacious,
    .services-grid-minimal,
    .form-section,
    .about-preview,
    .page-hero,
    .about-text-large,
    .about-columns,
    .about-values,
    .about-experience,
    .cta-about,
    .service-detail,
    .services-cta-section,
    .contact-info,
    .contact-approach,
    .contact-cta,
    .thanks-section,
    .legal-page {
        padding: 60px 30px;
    }

    .intro-text p {
        font-size: 22px;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
    }
}