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

:root {
    --color-primary: #1a1a1a;
    --color-secondary: #8b7355;
    --color-accent: #d4af37;
    --color-text: #2d2d2d;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f8f6f3;
    --color-border: #e5e5e5;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Georgia', 'Times New Roman', serif;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 5%;
    position: relative;
    z-index: 100;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

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

.hero-minimal {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.hero-content-wide {
    padding: 8rem 10% 6rem;
    max-width: 1400px;
}

.hero-title-large {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 3rem;
    letter-spacing: -0.03em;
}

.hero-subtitle-space {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 700px;
    margin-bottom: 4rem;
}

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

.cta-minimal:hover {
    background-color: var(--color-secondary);
}

.hero-image-container {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

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

.spacer-section {
    padding: 12rem 10%;
    background-color: var(--color-background-alt);
}

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

.section-heading-xl {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.text-large-leading {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.image-text-offset {
    display: flex;
    flex-direction: column;
    padding: 10rem 5%;
    gap: 0;
}

.offset-image-block {
    width: 100%;
    height: 600px;
    margin-bottom: -100px;
}

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

.offset-text-block {
    background-color: var(--color-background);
    padding: 6rem 8%;
    max-width: 700px;
    margin-left: auto;
    position: relative;
    z-index: 10;
}

.heading-medium-spaced {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--color-primary);
}

.text-medium-space {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.cta-inline-minimal {
    padding: 10rem 10%;
    background-color: var(--color-background-alt);
}

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

.cta-text-large {
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.btn-inline-arrow {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--color-secondary);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.btn-inline-arrow:hover {
    color: var(--color-primary);
}

.services-showcase-minimal {
    padding: 12rem 8%;
}

.services-intro-text {
    text-align: center;
    margin-bottom: 8rem;
}

.heading-xl-space {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.subtext-large {
    font-size: 1.3rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-cards-spaced {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.service-card-minimal {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
}

.service-image-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

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

.service-title-bold {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-description-space {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.service-price-large {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-secondary);
    letter-spacing: 0.02em;
}

.testimonial-minimal-block {
    padding: 12rem 10%;
    background-color: var(--color-primary);
    color: var(--color-background);
}

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

.quote-large-spaced {
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 3rem;
}

.quote-author-space {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.trust-section-minimal {
    padding: 12rem 10%;
}

.trust-content-wide {
    max-width: 1000px;
    margin: 0 auto;
}

.why-us-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 12rem 10%;
    background-color: var(--color-background-alt);
    gap: 6rem;
}

.content-column-left {
    flex: 1;
}

.content-column-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.heading-bold-large {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    color: var(--color-primary);
}

.reason-block {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.reason-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.reason-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.cta-secondary-space {
    padding: 10rem 10%;
}

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

.cta-question-large {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
}

.btn-secondary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: transparent;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}

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

.form-section-minimal {
    padding: 12rem 10%;
    background-color: var(--color-background-alt);
}

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

.form-heading-large {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.form-subtext-space {
    font-size: 1.2rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 5rem;
}

.form-minimal-style {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-input-minimal,
.form-select-minimal,
.form-textarea-minimal {
    padding: 1.2rem;
    font-size: 1.1rem;
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-background);
    border: none;
    border-bottom: 2px solid var(--color-border);
    transition: border-color 0.3s ease;
}

.form-input-minimal:focus,
.form-select-minimal:focus,
.form-textarea-minimal:focus {
    outline: none;
    border-bottom-color: var(--color-secondary);
}

.form-textarea-minimal {
    resize: vertical;
    min-height: 150px;
}

.btn-submit-minimal {
    padding: 1.4rem 4rem;
    background-color: var(--color-primary);
    color: var(--color-background);
    border: none;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
}

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

.final-cta-minimal {
    padding: 15rem 10%;
    background-color: var(--color-primary);
    color: var(--color-background);
    text-align: center;
}

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

.final-heading-xl {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 4rem;
}

.btn-final-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    background-color: var(--color-background);
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

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

.footer-minimal {
    padding: 6rem 10% 3rem;
    background-color: var(--color-background-alt);
}

.footer-content-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.footer-link {
    font-size: 0.95rem;
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background-color: rgba(26, 26, 26, 0.95);
    text-align: center;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--color-background);
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: var(--color-background);
    padding: 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    font-size: 1rem;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero-minimal {
    padding: 8rem 10% 6rem;
    background-color: var(--color-background-alt);
}

.page-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.page-title-xl {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.page-subtitle-large {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 700px;
}

.about-story-section {
    padding: 10rem 10%;
}

.heading-large-space {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 3rem;
}

.image-full-width {
    width: 100%;
    margin: 5rem 0;
}

.full-width-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.philosophy-section {
    padding: 10rem 10%;
    background-color: var(--color-background-alt);
}

.content-wide-flex {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-left {
    flex: 1;
}

.philosophy-right {
    flex: 2;
}

.values-minimal {
    padding: 10rem 10%;
}

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

.heading-centered-xl {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 6rem;
}

.value-item-spaced {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.value-item-spaced:last-child {
    border-bottom: none;
}

.value-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.2rem;
}

.value-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.team-minimal-intro {
    padding: 10rem 10%;
    background-color: var(--color-background-alt);
}

.cta-about-page {
    padding: 12rem 10%;
}

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

.cta-heading-xl {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.cta-text-space {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.btn-large-minimal {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    background-color: var(--color-primary);
    color: var(--color-background);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
}

.btn-large-minimal:hover {
    background-color: var(--color-secondary);
}

.services-detailed-section {
    padding: 8rem 8%;
}

.service-detail-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 8rem;
    gap: 3rem;
}

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

.service-detail-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem 0;
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.service-detail-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-detail-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 2rem 0;
}

.btn-service-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}

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

.services-note-section {
    padding: 6rem 10%;
    background-color: var(--color-background-alt);
}

.cta-services-page {
    padding: 12rem 10%;
}

.contact-info-section {
    padding: 8rem 10%;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

.contact-heading {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 4rem;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-value {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.contact-link {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-primary);
}

.contact-note-block {
    flex: 1;
    background-color: var(--color-background-alt);
    padding: 3rem;
}

.contact-note-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.contact-note-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.map-placeholder-section {
    padding: 0 0 8rem;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--color-background-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-text {
    font-size: 1.2rem;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.8;
}

.contact-cta-section {
    padding: 10rem 10%;
    background-color: var(--color-background-alt);
}

.thanks-section-centered {
    padding: 15rem 10%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-heading-xl {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.thanks-text-large {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-text-medium {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 4rem;
    font-weight: 600;
}

.btn-back-home {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--color-primary);
    color: var(--color-background);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
}

.btn-back-home:hover {
    background-color: var(--color-secondary);
}

.legal-page-section {
    padding: 6rem 10% 10rem;
}

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

.legal-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.legal-update {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 4rem;
}

.legal-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-subheading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.legal-list {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .hero-title-large,
    .page-title-xl,
    .thanks-heading-xl,
    .final-heading-xl {
        font-size: 3rem;
    }

    .hero-content-wide {
        padding: 5rem 7% 4rem;
    }

    .hero-subtitle-space {
        font-size: 1.1rem;
    }

    .section-heading-xl,
    .form-heading-large,
    .cta-heading-xl,
    .heading-xl-space,
    .heading-bold-large {
        font-size: 2.5rem;
    }

    .heading-large-space,
    .legal-title {
        font-size: 2.2rem;
    }

    .spacer-section,
    .services-showcase-minimal,
    .trust-section-minimal,
    .why-us-asymmetric,
    .form-section-minimal,
    .final-cta-minimal {
        padding: 6rem 7%;
    }

    .image-text-offset {
        padding: 6rem 7%;
    }

    .offset-text-block {
        padding: 4rem 7%;
        margin-left: 0;
    }

    .service-cards-spaced {
        gap: 3rem;
    }

    .quote-large-spaced {
        font-size: 1.6rem;
    }

    .why-us-asymmetric {
        gap: 3rem;
    }

    .content-column-right {
        gap: 2.5rem;
    }

    .service-detail-block {
        gap: 2rem;
        margin-bottom: 5rem;
    }

    .service-detail-image {
        height: 300px;
    }

    .contact-container {
        gap: 4rem;
    }

    .sticky-cta {
        padding: 1rem;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .image-text-offset {
        flex-direction: row;
        gap: 4rem;
    }

    .offset-image-block {
        flex: 1;
        margin-bottom: 0;
    }

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

    .why-us-asymmetric {
        flex-direction: row;
    }

    .content-wide-flex {
        flex-direction: row;
    }

    .service-detail-block {
        flex-direction: row;
    }

    .service-detail-block.reverse {
        flex-direction: row-reverse;
    }

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

    .service-detail-content {
        flex: 1;
        padding: 0 3rem;
    }

    .contact-container {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .service-cards-spaced {
        justify-content: flex-start;
    }

    .service-card-minimal {
        width: calc(50% - 2rem);
    }
}