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

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

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5282;
}

.navigation {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

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

.navigation a:hover {
    color: #2c5282;
}

.ad-notice {
    font-size: 11px;
    color: #718096;
    background-color: #f7fafc;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.hero-card {
    background-color: #ffffff;
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.hero-content-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.hero-text-card {
    flex: 1;
    min-width: 300px;
    padding: 60px 50px;
    background-color: #2c5282;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-text-card p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.hero-image-card {
    flex: 1;
    min-width: 300px;
    background-color: #cbd5e0;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2c5282;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #e2e8f0;
    color: #2c5282;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.intro-cards {
    margin: 60px 0;
}

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

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

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

.card-icon {
    color: #2c5282;
    margin-bottom: 20px;
}

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

.info-card p {
    color: #718096;
    line-height: 1.7;
}

.services-section {
    margin: 80px 0;
}

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

.section-header-card h2 {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 15px;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-content {
    padding: 30px;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 12px;
    background-color: #2c5282;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.contact-form-section {
    margin: 80px 0;
}

.form-card-wrapper {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-intro-card {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro-card h2 {
    font-size: 32px;
    color: #2d3748;
    margin-bottom: 15px;
}

.form-intro-card p {
    font-size: 17px;
    color: #718096;
}

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

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c5282;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #2a4365;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

.trust-card-section {
    margin: 60px 0;
}

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

.trust-card {
    flex: 1;
    min-width: 200px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 10px;
}

.trust-label {
    font-size: 16px;
    color: #718096;
}

.footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

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

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

.footer-card p {
    color: #cbd5e0;
    line-height: 1.7;
}

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

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

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

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

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    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: 300px;
}

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

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

.btn-cookie-accept {
    background-color: #2c5282;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #2a4365;
}

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

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

.page-hero {
    background-color: #2c5282;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: #e2e8f0;
}

.about-content {
    margin: 60px 0;
}

.content-card-layout {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

.content-card-image {
    flex: 1;
    min-width: 300px;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

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

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

.content-card-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.values-section {
    margin: 80px 0;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

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

.value-card p {
    color: #718096;
    line-height: 1.7;
}

.team-section {
    margin: 80px 0;
}

.team-intro {
    text-align: center;
    margin-bottom: 40px;
}

.team-intro h2 {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 15px;
}

.team-intro p {
    font-size: 18px;
    color: #718096;
    max-width: 800px;
    margin: 0 auto;
}

.team-image-card {
    background-color: #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.process-section {
    margin: 80px 0;
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 50px;
}

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

.process-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.process-number {
    font-size: 36px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 12px;
}

.process-card p {
    color: #718096;
    line-height: 1.7;
}

.services-detail-section {
    margin: 60px 0;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    color: #2d3748;
    margin-bottom: 15px;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-features li {
    color: #4a5568;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.contact-info-section {
    margin: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.contact-info-card h3 {
    font-size: 18px;
    color: #2d3748;
    margin-top: 20px;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 12px;
}

.no-link {
    color: #2c5282;
    font-weight: 600;
}

.address p {
    margin-bottom: 5px;
}

.hours-list {
    margin-bottom: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.day {
    font-weight: 600;
    color: #2d3748;
}

.time {
    color: #4a5568;
}

.hours-note,
.contact-note {
    font-size: 14px;
    color: #718096;
    margin-top: 15px;
}

.contact-detail {
    margin-top: 20px;
}

.contact-cta {
    margin-top: 25px;
}

.contact-map-section {
    margin: 60px 0;
}

.map-placeholder {
    background-color: #e2e8f0;
    padding: 100px 40px;
    border-radius: 12px;
    text-align: center;
    color: #718096;
    font-size: 18px;
}

.legal-page {
    margin: 60px 0;
}

.legal-content {
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 40px;
    color: #2d3748;
    margin-bottom: 15px;
}

.last-updated {
    color: #718096;
    font-size: 14px;
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 22px;
    color: #2d3748;
    margin-top: 25px;
    margin-bottom: 12px;
}

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

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.cookies-table th {
    background-color: #f7fafc;
    color: #2d3748;
    font-weight: 600;
}

.cookies-table td {
    color: #4a5568;
}

.thanks-section {
    margin: 80px 0;
}

.thanks-card {
    background-color: #ffffff;
    padding: 80px 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    color: #2c5282;
    margin-bottom: 30px;
}

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

.thanks-card p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-details {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

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

@media (max-width: 768px) {
    .hero-text-card h1 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .section-header-card h2,
    .values-section h2,
    .process-section h2,
    .team-intro h2 {
        font-size: 28px;
    }

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

    .form-card-wrapper {
        padding: 30px 20px;
    }

    .content-card-layout,
    .service-detail-card {
        padding: 30px 20px;
    }

    .legal-content {
        padding: 40px 25px;
    }

    .thanks-card {
        padding: 50px 30px;
    }
}