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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8eef2;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a5f7a;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #1a5f7a;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    border: 1px solid #e8eef2;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8fafb;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background-color: #f8fafb;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.hero-left p {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background-color: #d4e4ed;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background-color: #145166;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #1a5f7a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #1a5f7a;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.cta-secondary:hover {
    background-color: #1a5f7a;
    color: #ffffff;
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #e8eef2;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.intro-text {
    flex: 1;
    padding: 5rem;
}

.intro-text h2 {
    font-size: 2.25rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
}

.services-grid {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #546e7a;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    background-color: #f8fafb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8eef2;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    padding: 1.5rem 1.5rem 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #546e7a;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a5f7a;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.service-select {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem 1.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.service-select:hover {
    background-color: #145166;
}

.benefits-split {
    display: flex;
    background-color: #f8fafb;
}

.benefits-content {
    flex: 1;
    padding: 5rem;
}

.benefits-content h2 {
    font-size: 2.25rem;
    color: #1a5f7a;
    margin-bottom: 2.5rem;
}

.benefit-item {
    margin-bottom: 2rem;
}

.benefit-item h4 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.benefits-image {
    flex: 1;
    background-color: #d4e4ed;
    overflow: hidden;
}

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

.form-section {
    padding: 6rem 5%;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

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

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

.form-submit {
    padding: 1rem 2.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    background-color: #145166;
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #f8fafb;
    border-top: 1px solid #e8eef2;
}

.disclaimer-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 5% 1.5rem;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 1.5rem;
}

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background-color: #1a5f7a;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #145166;
}

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

.page-hero {
    padding: 5rem 5%;
    background-color: #f8fafb;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: #546e7a;
}

.about-split {
    display: flex;
    align-items: center;
}

.about-image {
    flex: 1;
    background-color: #e8eef2;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.about-text {
    flex: 1;
    padding: 5rem;
}

.about-text h2 {
    font-size: 2.25rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.values-section {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8fafb;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.team-split {
    display: flex;
    background-color: #f8fafb;
}

.team-text {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 2.25rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.team-image {
    flex: 1;
    background-color: #d4e4ed;
    overflow: hidden;
}

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

.process-section {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 3rem;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8fafb;
    border-radius: 8px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4e4ed;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.services-detailed {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    margin-bottom: 4rem;
    background-color: #f8fafb;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8eef2;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-content h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-detail-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.service-cta-section {
    padding: 5rem 5%;
    background-color: #f8fafb;
    text-align: center;
}

.service-cta-section h2 {
    font-size: 2.25rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.service-cta-section p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    padding: 4rem 5%;
}

.contact-info {
    flex: 1;
    padding-right: 3rem;
}

.contact-info h2 {
    font-size: 2.25rem;
    color: #1a5f7a;
    margin-bottom: 2rem;
}

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

.contact-block h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-block p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.contact-note {
    padding: 3rem 5%;
    background-color: #f8fafb;
}

.contact-note h3 {
    font-size: 1.75rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.contact-note p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 800px;
}

.thanks-section {
    padding: 6rem 5%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-confirm {
    padding: 1.5rem;
    background-color: #f8fafb;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-confirm p {
    margin: 0;
    font-size: 1rem;
}

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

.legal-page {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.35rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page h4 {
    font-size: 1.15rem;
    color: #2c3e50;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-page p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-page li {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #1a5f7a;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #145166;
}

.legal-update {
    margin-top: 2rem;
    font-style: italic;
    color: #95a5a6;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .benefits-split,
    .about-split,
    .team-split,
    .service-detail-card,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-text,
    .benefits-content,
    .about-text,
    .team-text,
    .service-detail-content,
    .contact-info {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.25rem;
    }

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

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

    .main-nav {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .service-card,
    .value-item,
    .process-step {
        flex: 1 1 100%;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}