* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 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: 600;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

.ad-label {
    font-size: 0.75rem;
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    background-color: #f3f4f6;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    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;
}

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

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

.btn-cookie-accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #6b7280;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #4b5563;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #1f2937;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.hero-visual {
    flex: 1;
    background-color: #e5e7eb;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #1f2937;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #1f2937;
    transition: all 0.3s;
}

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.intro-left {
    flex: 1;
    background-color: #f3f4f6;
    overflow: hidden;
    border-radius: 8px;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.intro-right p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

.services-section {
    background-color: #f9fafb;
    padding: 5rem 2rem;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.25rem;
    color: #6b7280;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

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

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

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

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

.btn-select-service {
    padding: 0.875rem 1.75rem;
    background-color: #1f2937;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.trust-section {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

.trust-visual {
    flex: 1;
    background-color: #f3f4f6;
    overflow: hidden;
    border-radius: 8px;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-container > p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #d1d5db;
}

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

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

.form-group label {
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
    color: #1a1a1a;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

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

.final-cta {
    background-color: #f9fafb;
    padding: 5rem 2rem;
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.final-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4b5563;
}

.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

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

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

.about-hero {
    background-color: #1f2937;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: #d1d5db;
}

.about-story {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.story-visual {
    flex: 1;
    background-color: #f3f4f6;
    overflow: hidden;
    border-radius: 8px;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

.methodology-section {
    background-color: #f9fafb;
    padding: 5rem 2rem;
}

.methodology-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.method-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.method-card p {
    font-size: 1.125rem;
    color: #4b5563;
}

.team-approach {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.approach-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

.approach-visual {
    flex: 1;
    background-color: #f3f4f6;
    overflow: hidden;
    border-radius: 8px;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    background-color: #1f2937;
    color: #ffffff;
    padding: 5rem 2rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-item p {
    font-size: 1.125rem;
    color: #d1d5db;
}

.cta-about {
    text-align: center;
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.cta-about h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-about p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4b5563;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-hero {
    background-color: #f9fafb;
    padding: 4rem 2rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-hero p {
    font-size: 1.25rem;
    color: #6b7280;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

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

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #6b7280;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

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

.contact-hero {
    background-color: #1f2937;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #d1d5db;
}

.contact-info-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.contact-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

.contact-map-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #f3f4f6;
    overflow: hidden;
    border-radius: 8px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.additional-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.additional-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.additional-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

.additional-visual {
    flex: 1;
    background-color: #f3f4f6;
    overflow: hidden;
    border-radius: 8px;
}

.additional-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.thanks-container > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4b5563;
}

.thanks-info {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.thanks-info p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.thanks-next-steps {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps ul li {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.thanks-next-steps ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

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

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-updated {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

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

.legal-content ul li {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.cookies-table th {
    background-color: #f9fafb;
    font-weight: 700;
}

.cookies-table td {
    font-size: 1rem;
    color: #4b5563;
}

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

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

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

    .intro-section,
    .about-story,
    .trust-section,
    .team-approach,
    .contact-additional {
        flex-direction: column;
    }

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

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

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

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

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