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

.ad-disclosure {
    background: #1a2944;
    color: #e8eef7;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 2rem;
    z-index: 999;
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2944;
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #2d5a8e;
}

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

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

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

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a2944;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: #1a2944;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #1a2944;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #1a2944;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    color: #4a5568;
}

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

li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.hero-full {
    position: relative;
}

.hero-text-center {
    text-align: center;
}

.cta-primary {
    display: inline-block;
    background: #2d5a8e;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background: #1e3a5f;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #2d5a8e;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background: #f7f9fc;
    transform: translateY(-2px);
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.flex-row-reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 4rem;
}

.col-text {
    flex: 1;
}

.col-image {
    flex: 1;
}

.col-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d5a8e;
    margin: 1.5rem 0;
}

.btn-select-service {
    width: 100%;
    background: #2d5a8e;
    color: #ffffff;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1e3a5f;
}

.testimonial-row {
    display: flex;
    gap: 3rem;
}

.testimonial-item {
    flex: 1;
}

.testimonial-item p {
    color: #d4dff0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    margin-top: 1rem;
    font-style: italic;
    color: #a5b9d4;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a8e;
}

.btn-submit {
    width: 100%;
    background: #2d5a8e;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1e3a5f;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
}

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

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

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d5a8e;
    margin: 1rem 0 1.5rem;
}

.service-detail-content ul {
    margin: 2rem 0;
}

.contact-layout {
    display: flex;
    gap: 3rem;
}

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

.contact-detail {
    margin-bottom: 2rem;
}

.contact-map-placeholder {
    flex: 1;
}

.footer-main {
    background: #1a2944;
    color: #d4dff0;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
    color: #a5b9d4;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #d4dff0;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    color: #8892a6;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #8892a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2944;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie-accept {
    background: #2d5a8e;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #1e3a5f;
}

.btn-cookie-reject {
    background: #4a5568;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #2d3748;
}

@media (max-width: 1024px) {
    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        gap: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-row {
        flex-direction: column;
        gap: 2rem;
    }

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

    .contact-layout {
        flex-direction: column;
    }

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

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

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

    .values-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }
}

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

    .cta-primary,
    .cta-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}