* {
    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-color: #f7fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ad-disclosure {
    background-color: #edf2f7;
    color: #4a5568;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.875rem;
    border-bottom: 1px solid #e2e8f0;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

.nav-links a:hover {
    color: #2b6cb0;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    color: #ffffff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text-card {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-text-card h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text-card p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.intro-cards {
    padding: 60px 20px;
    background-color: #ffffff;
}

.card-grid-intro {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-card h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.info-card p {
    color: #4a5568;
    font-size: 0.95rem;
}

.mission-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f7fafc, #edf2f7);
}

.mission-card-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.mission-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    background-color: #cbd5e0;
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mission-content {
    flex: 1;
    min-width: 300px;
}

.mission-content h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.mission-content p {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.text-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #764ba2;
}

.services-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    color: #2d3748;
    margin-bottom: 50px;
}

.services-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(50% - 40px);
    min-width: 320px;
    max-width: 500px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1.375rem;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4a5568;
    font-size: 0.9rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    background-color: #667eea;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #5a67d8;
    transform: scale(1.02);
}

.consultation-form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 2rem;
    text-align: center;
}

.form-card > p {
    color: #4a5568;
    margin-bottom: 35px;
    text-align: center;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    background-color: #667eea;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.trust-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.trust-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.3);
}

.trust-card h4 {
    font-size: 1.375rem;
    margin-bottom: 15px;
}

.trust-card p {
    font-size: 0.95rem;
    opacity: 0.95;
}

.main-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

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

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    color: #cbd5e0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #667eea;
    color: #ffffff;
}

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

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

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.about-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

.story-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    background-color: #cbd5e0;
}

.story-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-content-card {
    flex: 1;
    min-width: 300px;
}

.story-content-card h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.story-content-card p {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.values-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f7fafc, #edf2f7);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    max-width: 450px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.375rem;
}

.value-card p {
    color: #4a5568;
    font-size: 0.95rem;
}

.approach-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.approach-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-content {
    flex: 1;
    min-width: 300px;
}

.approach-content h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.approach-content p {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.approach-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    background-color: #cbd5e0;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.expertise-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f7fafc, #edf2f7);
}

.expertise-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.expertise-card {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 260px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-top-color: #764ba2;
}

.expertise-card h4 {
    color: #2d3748;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.expertise-card p {
    color: #4a5568;
    font-size: 0.9rem;
}

.cta-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.cta-card-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.cta-card-centered h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-card-centered p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.contact-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
}

.contact-info-card h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-item h4 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.125rem;
}

.contact-item p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-note {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.contact-note p {
    color: #4a5568;
    font-size: 0.95rem;
}

.contact-image-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    background-color: #cbd5e0;
}

.contact-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.map-section {
    padding: 60px 20px;
    background-color: #f7fafc;
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 30px;
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    background-color: #e2e8f0;
    padding: 100px 40px;
    border-radius: 12px;
    text-align: center;
    color: #4a5568;
    font-size: 1.125rem;
}

.contact-cta {
    padding: 80px 20px;
    background-color: #ffffff;
}

.thanks-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.thanks-card h1 {
    color: #2d3748;
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.thanks-card > p {
    color: #4a5568;
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #f7fafc;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 35px;
    text-align: left;
}

.thanks-details p {
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.thanks-details strong {
    color: #667eea;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-block;
    background-color: #edf2f7;
    color: #667eea;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: #e2e8f0;
    transform: translateY(-2px);
}

.next-steps {
    padding: 80px 20px;
    background-color: #ffffff;
}

.next-steps h2 {
    text-align: center;
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 50px;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f7fafc;
    padding: 35px;
    border-radius: 10px;
    border-top: 4px solid #667eea;
    transition: all 0.3s ease;
}

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

.step-card h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.step-card p {
    color: #4a5568;
    font-size: 0.95rem;
}

.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

.legal-page h1 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

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

.legal-content h2 {
    color: #2d3748;
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    color: #4a5568;
    font-size: 1.375rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    color: #4a5568;
    font-size: 1.125rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
}

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

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

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

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

    .section-title {
        font-size: 1.75rem;
    }

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

    .form-card {
        padding: 35px 25px;
    }

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

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

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