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

:root {
    --primary-color: #1a1a2e;
    --accent-color: #0f3460;
    --text-color: #2d2d2d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --highlight: #16213e;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--white);
}

img {
    object-fit: cover;
}

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

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

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

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: var(--light-bg);
}

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

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

.nav-minimal {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.ad-label {
    font-size: 0.85rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.hero-minimal {
    padding: 6rem 0;
    background: var(--light-bg);
}

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

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    font-weight: 300;
}

.hero-image-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    background: #d6d6d6;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.intro-section {
    padding: 6rem 0;
}

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

.intro-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--text-color);
}

.services-preview {
    padding: 6rem 0;
    background: var(--white);
}

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

.service-card {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #e5e5e5;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.service-price {
    display: block;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-select-service {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--highlight);
}

.form-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: var(--primary-color);
}

.form-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--highlight);
}

.form-disclaimer {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
}

.trust-section {
    padding: 6rem 0;
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--primary-color);
}

.trust-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.references {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-bg);
}

.references strong {
    display: block;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.references ul {
    list-style: none;
}

.references li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #555;
}

.references a {
    color: var(--accent-color);
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.final-cta {
    padding: 8rem 0;
    background: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-cta {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--light-bg);
}

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

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

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

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
}

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

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

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

.footer-section a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.disclaimer-footer {
    font-size: 0.8rem;
    color: #999;
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services-list h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    color: var(--primary-color);
}

.service-item {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-item h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.service-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-item .price {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 300;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--primary-color);
}

.about-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    width: 100%;
    margin: 3rem 0;
    background: #e5e5e5;
}

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

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-content h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    color: var(--primary-color);
}

.contact-info {
    background: var(--light-bg);
    padding: 3rem;
    margin-bottom: 3rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-info strong {
    color: var(--primary-color);
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.thanks-content .btn-cta {
    background: var(--primary-color);
    color: var(--white);
}

.thanks-content .btn-cta:hover {
    background: var(--highlight);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .service-card,
    .service-card.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .services-preview h2 {
        font-size: 2rem;
    }

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

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