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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a5490;
}

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

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

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

.hero-card {
    background-color: #ffffff;
    margin: 32px auto;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.hero-image {
    background-color: #e9ecef;
}

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

.info-cards {
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 24px;
}

.card-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a5490;
}

.info-card p {
    font-size: 15px;
    color: #555;
}

.services-showcase {
    max-width: 1200px;
    margin: 64px auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
}

.service-image {
    flex: 0 0 40%;
    background-color: #e9ecef;
}

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

.service-content {
    flex: 1;
    padding: 36px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a5490;
}

.service-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 0;
}

.select-service {
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: auto;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #134074;
    transform: translateY(-2px);
}

.contact-form-section {
    max-width: 800px;
    margin: 64px auto;
    padding: 0 24px;
}

.form-container-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 36px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.form-header p {
    font-size: 16px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 12px;
}

.submit-btn:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.trust-section {
    max-width: 1200px;
    margin: 64px auto;
    padding: 0 24px;
}

.trust-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a5490;
}

.trust-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    margin-top: 80px;
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 13px;
    color: #95a5a6;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    font-style: italic;
    margin-top: 16px;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    color: #2c3e50;
}

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

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

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 24px;
    margin-bottom: 48px;
}

.hero-content-simple {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.hero-content-simple h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.hero-content-simple p {
    font-size: 18px;
    opacity: 0.95;
}

.about-content {
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 24px;
}

.about-card-main {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 48px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a5490;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.about-image {
    flex: 0 0 45%;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    max-width: 1200px;
    margin: 64px auto;
    padding: 0 24px;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a5490;
}

.value-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.expertise-section {
    max-width: 1200px;
    margin: 64px auto;
    padding: 48px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.expertise-container h2 {
    font-size: 36px;
    margin-bottom: 36px;
    text-align: center;
    color: #2c3e50;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expertise-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.expertise-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.expertise-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a5490;
}

.expertise-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.approach-section {
    max-width: 1200px;
    margin: 64px auto;
    padding: 0 24px;
}

.approach-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #2c3e50;
}

.approach-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 240px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.approach-card:hover {
    transform: translateY(-4px);
}

.approach-number {
    font-size: 48px;
    font-weight: 700;
    color: #e9ecef;
    margin-bottom: 16px;
}

.approach-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a5490;
}

.approach-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.services-detailed {
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 0;
}

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

.service-detail-image {
    flex: 0 0 45%;
    background-color: #e9ecef;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a5490;
}

.service-detail-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

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

.service-detail-content li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.service-pricing-box {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
    text-align: center;
}

.price-label {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 8px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.price-unit {
    font-size: 15px;
    color: #ffffff;
    opacity: 0.85;
}

.select-service-btn {
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 12px;
}

.select-service-btn:hover {
    background-color: #134074;
    transform: translateY(-2px);
}

.cta-section-services {
    max-width: 1200px;
    margin: 64px auto;
    padding: 0 24px;
}

.cta-card-centered {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 64px 48px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.cta-card-centered h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-card-centered p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.contact-page-content {
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 24px;
}

.contact-info-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a5490;
}

.contact-detail {
    margin-bottom: 24px;
}

.detail-label {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
    margin-bottom: 6px;
}

.detail-value {
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.6;
}

.contact-info-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 24px;
}

.thanks-card {
    background-color: #ffffff;
    padding: 64px 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-card p {
    font-size: 17px;
    margin-bottom: 28px;
    color: #555;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 16px 24px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.service-selected {
    font-size: 16px;
    color: #27ae60;
}

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

.btn-primary {
    background-color: #1a5490;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #134074;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.legal-page {
    max-width: 900px;
    margin: 48px auto;
    padding: 0 24px;
}

.legal-container {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.legal-container h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

.legal-container h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a5490;
}

.legal-container h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 15px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.legal-container ul {
    margin: 16px 0 16px 24px;
}

.legal-container li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.legal-container a {
    color: #1a5490;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #134074;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero-text h1,
    .hero-content-simple h1 {
        font-size: 32px;
    }

    .card-grid,
    .values-grid,
    .approach-cards,
    .trust-grid,
    .contact-info-cards {
        flex-direction: column;
    }

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

    .service-image,
    .service-detail-image,
    .about-image {
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
    }

    .form-container-card,
    .legal-container,
    .thanks-card {
        padding: 32px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
}