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

:root {
    --primary-dark: #1a2332;
    --primary-blue: #2c5282;
    --accent-gold: #c4a962;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-gold);
}

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

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.75rem;
}

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

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

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

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

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

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

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

.hero-content-center {
    text-align: center;
    margin-bottom: 5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

.hero-image-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    background-color: var(--bg-light);
}

.hero-image-container img {
    width: 100%;
    height: auto;
}

.intro-space {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.intro-space h2 {
    margin-bottom: 2.5rem;
}

.services-minimal {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.section-title-large {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 6rem;
}

.service-block {
    display: flex;
    gap: 5rem;
    margin-bottom: 8rem;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.service-visual img {
    width: 100%;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 2rem 0;
}

.select-service-btn {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service-btn:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
}

.cta-section {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.cta-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-section > .content-narrow > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.submit-btn {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.trust-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.trust-grid {
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h3 {
    margin-bottom: 1.5rem;
}

.site-footer {
    background-color: var(--primary-dark);
    color: var(--bg-light);
    padding: 5rem 0 2rem;
}

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

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section ul {
    color: var(--bg-light);
    font-size: 0.95rem;
}

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

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

.footer-section a {
    color: var(--bg-light);
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-gold);
}

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

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-btn.accept {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.cookie-btn.accept:hover {
    background-color: #d4b972;
    transform: translateY(-2px);
}

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

.cookie-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-hero {
    padding: 6rem 0 4rem;
    background-color: var(--bg-light);
    text-align: center;
}

.lead-text {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
}

.about-content {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.about-image {
    margin-bottom: 4rem;
    background-color: var(--bg-light);
}

.about-image img {
    width: 100%;
}

.about-content h2 {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.value-blocks {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
}

.value-item {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.cta-simple {
    padding: 6rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-simple h2 {
    margin-bottom: 1.5rem;
}

.cta-simple p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.cta-btn {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--bg-white);
    padding: 1.25rem 3rem;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-blue);
    padding: 1.25rem 3rem;
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.cta-btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    transform: translateY(-2px);
}

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

.service-detail-block {
    margin-bottom: 6rem;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.service-detail-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

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

.service-detail-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.service-detail-visual img {
    width: 100%;
}

.service-detail-text ul {
    margin-top: 2rem;
}

.contact-info-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.contact-details {
    display: flex;
    gap: 4rem;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.contact-item {
    flex: 1;
}

.contact-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-note {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.contact-note p {
    margin: 0;
}

.thanks-section {
    padding: 8rem 0;
    background-color: var(--bg-white);
    text-align: center;
}

.thanks-content h1 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.thanks-details p {
    margin: 0.5rem 0;
}

.thanks-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.legal-page {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.legal-page h1 {
    margin-bottom: 3rem;
}

.legal-page h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.legal-page h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .trust-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .value-blocks {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail-content,
    .service-detail-block.reverse .service-detail-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-details {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-minimal {
        padding: 4rem 0 3rem;
    }

    .intro-space,
    .services-minimal,
    .cta-section,
    .trust-section {
        padding: 4rem 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}