* {
    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: #2a2a2a;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.cookie-banner.show {
    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 {
    flex: 1;
    margin: 0;
    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: #ffffff;
    color: #1a1a1a;
}

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

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

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

.main-header {
    padding: 50px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.main-nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #1a1a1a;
}

.ad-label {
    font-size: 13px;
    color: #888888;
    padding: 6px 14px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.hero-minimal {
    position: relative;
    margin-bottom: 120px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 80px;
}

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

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

.hero-content-centered h1 {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    color: #5a5a5a;
    line-height: 1.6;
}

.intro-statement {
    padding: 100px 0;
    background-color: #fafafa;
}

.large-intro {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.7;
    color: #3a3a3a;
    text-align: center;
}

.services-preview {
    padding: 140px 0;
}

.section-title-centered {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.services-minimal-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-card-minimal {
    flex: 1;
    min-width: 280px;
}

.service-image-bg {
    width: 100%;
    height: 320px;
    margin-bottom: 40px;
    overflow: hidden;
}

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

.service-card-minimal h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #1a1a1a;
}

.service-card-minimal p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 25px;
}

.price-display {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.cta-centered {
    text-align: center;
}

.btn-primary-large {
    display: inline-block;
    padding: 20px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-large:hover {
    background-color: #3a3a3a;
}

.form-section-minimal {
    padding: 140px 0;
    background-color: #f8f8f8;
}

.form-title-centered {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 60px;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    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: #1a1a1a;
}

.btn-submit-large {
    width: 100%;
    padding: 20px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-large:hover {
    background-color: #3a3a3a;
}

.trust-statement {
    padding: 140px 0;
}

.large-quote {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.6;
    color: #2a2a2a;
    text-align: center;
    font-style: italic;
    border: none;
}

.large-quote cite {
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-style: normal;
    color: #7a7a7a;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-content-minimal {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-brand strong {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #aaaaaa;
    font-size: 15px;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-contact {
    color: #aaaaaa;
    font-size: 15px;
    line-height: 1.8;
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #777777;
}

.page-hero-minimal {
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-intro {
    font-size: 20px;
    font-weight: 300;
    color: #5a5a5a;
}

.about-content {
    padding: 80px 0 120px;
}

.about-image-feature {
    width: 100%;
    height: 500px;
    margin-bottom: 80px;
    overflow: hidden;
}

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

.text-block-spacious {
    margin-bottom: 80px;
}

.text-block-spacious h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.text-block-spacious p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.cta-section-minimal {
    padding: 120px 0;
    background-color: #fafafa;
    text-align: center;
}

.cta-section-minimal h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.cta-section-minimal p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 40px;
}

.services-detailed {
    padding: 80px 0 120px;
}

.service-detail-card {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.price-highlight {
    font-size: 40px;
    font-weight: 300;
    color: #1a1a1a;
    margin-top: 30px;
    letter-spacing: -0.5px;
}

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

.services-cta-section h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

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

.contact-content {
    padding: 80px 0;
}

.contact-details-minimal {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.contact-block .note {
    font-size: 15px;
    color: #7a7a7a;
    margin-top: 15px;
}

.contact-directions {
    padding: 80px 0;
    background-color: #fafafa;
}

.contact-directions h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-directions p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.contact-cta {
    padding: 80px 0;
    text-align: center;
}

.contact-cta p {
    font-size: 18px;
    color: #4a4a4a;
}

.contact-cta a {
    color: #1a1a1a;
    text-decoration: underline;
}

.thanks-section {
    padding: 140px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.thanks-details {
    padding: 30px;
    background-color: #f8f8f8;
    margin-bottom: 40px;
    border-radius: 2px;
}

.thanks-details p {
    font-size: 17px;
    color: #2a2a2a;
}

.thanks-next {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 50px;
}

.thanks-next a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

.legal-page {
    padding: 80px 0 120px;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 50px;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

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

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

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
}

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

.legal-date {
    font-size: 14px;
    color: #888888;
    margin-top: 60px;
    font-style: italic;
}

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

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

.cookie-table th {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 15px;
}

.cookie-table td {
    font-size: 15px;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .container,
    .container-narrow {
        padding: 0 20px;
    }

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

    .section-title-centered {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .services-minimal-grid {
        flex-direction: column;
        gap: 50px;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 20px;
    }

    .header-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .large-quote {
        font-size: 24px;
    }
}