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

:root {
    --primary-color: #2C3E50;
    --secondary-color: #7D8B99;
    --accent-color: #A0B4C8;
    --text-dark: #1A1A1A;
    --text-light: #6B7280;
    --background-light: #F9FAFB;
    --background-white: #FFFFFF;
    --border-color: #E5E7EB;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    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: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.main-nav {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

.hero-minimal {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 4rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-light);
    font-weight: 300;
}

.hero-image-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--background-light);
}

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

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

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

.large-text {
    font-size: 1.75rem;
    line-height: 1.5;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 300;
}

.intro-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background-color: var(--background-light);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-weight: 300;
}

.values-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    text-align: center;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.value-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.image-text-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.section-image {
    flex: 1;
    background-color: var(--background-light);
}

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

.section-text {
    flex: 1;
}

.section-text h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.3;
}

.section-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.services-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background-color: var(--background-light);
}

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

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-weight: 300;
}

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

.service-card {
    background-color: var(--background-white);
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background-color: var(--background-light);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 400;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0 1.5rem 1rem;
    line-height: 1.6;
}

.service-card .price {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 500;
    margin: 1.5rem 1.5rem 1rem;
}

.btn-link {
    display: inline-block;
    margin: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

.testimonial p {
    font-size: 1.75rem;
    line-height: 1.6;
    color: var(--primary-color);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: normal;
}

.cta-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background-color: var(--primary-color);
    color: white;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--background-white);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

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

.btn-primary {
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 0.8rem 1.8rem;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

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

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

    .image-text-section {
        flex-direction: column;
        gap: 2.5rem;
    }

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

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