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

.main-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 2rem;
    z-index: 1000;
}

.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: #1e3a5f;
    text-decoration: none;
}

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

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

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

.nav-links a:hover {
    color: #1e3a5f;
}

.hero-visual {
    width: 100%;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

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

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

.intro-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e3a5f;
}

.intro-wrapper p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4b5563;
}

.services-preview {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.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;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1e3a5f;
}

.service-content p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1rem;
}

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

.btn-select:hover {
    background-color: #2d5a8a;
}

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

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

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #10b981;
}

.stat-label {
    font-size: 1rem;
    color: #d1d5db;
}

.testimonials-inline {
    padding: 4rem 2rem;
    background-color: #f3f4f6;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 400px;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #10b981;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 600;
}

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

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

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

.form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #6b7280;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-image-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.final-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

.final-overlay h2 {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.main-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 2rem 1rem;
}

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

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

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

.footer-col p {
    color: #9ca3af;
    font-size: 0.95rem;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #374151;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #d1d5db;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(31, 41, 55, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    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;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

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

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

.btn-accept {
    background-color: #10b981;
    color: #ffffff;
}

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

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

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

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f9fafb;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.selected-service {
    font-size: 1rem;
    color: #059669;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #1e3a5f;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2d5a8a;
}

.btn-secondary {
    background-color: #e5e7eb;
    color: #374151;
}

.btn-secondary:hover {
    background-color: #d1d5db;
}

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

.about-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.3rem;
    font-weight: 300;
}

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

.story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-text {
    flex: 1 1 400px;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1e3a5f;
}

.story-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    flex: 1 1 400px;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

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

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

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

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

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

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

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

.team-approach {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.approach-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.approach-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e3a5f;
    text-align: center;
}

.approach-wrapper p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.services-header {
    padding: 4rem 2rem;
    background-color: #1e3a5f;
    color: #ffffff;
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    font-weight: 300;
}

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

.service-detail {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

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

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.service-detail-content ul li {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1.5rem;
}

.services-cta {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: #f9fafb;
    border-radius: 8px;
}

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

.services-cta p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

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

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    font-weight: 300;
}

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

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1 1 400px;
}

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

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1e3a5f;
}

.contact-block p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 0.3rem;
}

.no-link {
    color: #6b7280;
}

.contact-map-placeholder {
    flex: 1 1 400px;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    font-size: 1.1rem;
    color: #4b5563;
}

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

.contact-additional h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e3a5f;
}

.contact-additional p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #374151;
}

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

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

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

.legal-content a {
    color: #1e3a5f;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2d5a8a;
}

.legal-content em {
    color: #6b7280;
    font-size: 0.95rem;
}

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

    .nav-links {
        gap: 1rem;
    }

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

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

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

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

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