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

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

.navbar {
    background-color: #1a2332;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.ad-notice {
    padding: 0.4rem 0.8rem;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 0.85rem;
    border-radius: 4px;
}

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

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

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background-color: #dfe4ea;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background-color: #34495e;
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.container-split.reverse {
    flex-direction: row-reverse;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left img,
.split-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.split-left h2,
.split-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.split-left p,
.split-right p {
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.services-overview {
    padding: 5rem 2rem;
    background-color: #f0f2f5;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #555;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-card p {
    margin-bottom: 1rem;
    color: #555;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-size: 0.95rem;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.testimonial-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.testimonial-section blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonial-section cite {
    display: block;
    font-style: normal;
    color: #7f8c8d;
    margin-top: 1rem;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-description {
    flex: 1;
}

.form-description h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.form-description p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form button {
    width: 100%;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff3cd;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.6;
}

.footer {
    background-color: #1a2332;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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 {
    flex: 1;
    margin: 0;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    background-color: #27ae60;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

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

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

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

.page-header {
    background-color: #2c3e50;
    padding: 4rem 2rem;
    text-align: center;
}

.header-content h1 {
    color: #ffffff;
    font-size: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.value-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.value-item p {
    color: #555;
    line-height: 1.7;
}

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

.team-context {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.team-content {
    max-width: 1000px;
    margin: 0 auto;
}

.team-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.team-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

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

.service-detail-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.price-info {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.cta-services {
    padding: 4rem 2rem;
    background-color: #3498db;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f0f2f5;
    border-radius: 8px;
}

.contact-note p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
}

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

.contact-additional {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.additional-content {
    max-width: 1000px;
    margin: 0 auto;
}

.additional-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.additional-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.thanks-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.thanks-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.thanks-service-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f0f2f5;
    border-radius: 8px;
}

.thanks-service-info p {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

.thanks-image {
    flex: 1;
}

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

.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-container p {
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

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

.legal-container ul li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .container-split,
    .container-split.reverse {
        flex-direction: column;
    }

    .form-container-split {
        flex-direction: column;
    }

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

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

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

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

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

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

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

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