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

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

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

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

.header-main {
    background-color: #1a365d;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brand-logo a {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
}

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

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

.navigation a:hover {
    color: #ffffff;
}

.ad-notice {
    color: #cbd5e0;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid #4a5568;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
}

.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    padding: 3rem 2rem;
    max-width: 900px;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3182ce;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    border: 2px solid #3182ce;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: #3182ce;
    color: #ffffff;
}

.intro-cards {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.card-grid-3 {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.4rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.info-card p {
    color: #4a5568;
}

.content-section {
    padding: 5rem 0;
}

.bg-light {
    background-color: #f7fafc;
}

.bg-dark {
    background-color: #2d3748;
    color: #e2e8f0;
}

.section-title {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

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

.service-content {
    padding: 2rem;
}

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

.service-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.4rem;
    color: #3182ce;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

.btn-select.selected {
    background-color: #3182ce;
}

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

.form-card {
    background-color: #f7fafc;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.form-intro {
    color: #4a5568;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #e2e8f0;
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-group a {
    color: #3182ce;
}

.btn-submit {
    padding: 1.1rem 2rem;
    background-color: #3182ce;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-box {
    background-color: #1a365d;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #3182ce;
}

.disclaimer-box h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.disclaimer-box p {
    color: #e2e8f0;
    line-height: 1.8;
}

.footer-main {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

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

.footer-col p {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    display: none;
}

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

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

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

.btn-accept {
    background-color: #3182ce;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    background-color: #1a365d;
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.content-block p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.image-section {
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3182ce;
}

.value-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4a5568;
}

.process-list {
    padding-left: 1.5rem;
    color: #4a5568;
}

.process-list li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

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

.price-tag {
    display: inline-block;
    background-color: #3182ce;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-detail-content ul {
    padding-left: 1.5rem;
    color: #4a5568;
}

.service-detail-content ul li {
    margin-bottom: 0.5rem;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
}

.cta-section {
    padding: 5rem 0;
    background-color: #1a365d;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

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

.contact-info-card {
    background-color: #f7fafc;
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.8;
}

.contact-map-card {
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.thanks-section {
    padding: 5rem 0;
}

.thanks-card {
    background-color: #f7fafc;
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: #48bb78;
    margin-bottom: 1.5rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.thanks-details p {
    color: #4a5568;
}

.next-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.next-steps h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.next-steps ol {
    padding-left: 1.5rem;
    color: #4a5568;
}

.next-steps ol li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.additional-info {
    font-size: 0.95rem;
    color: #718096;
}

.legal-content {
    color: #4a5568;
}

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

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

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-content a {
    color: #3182ce;
    text-decoration: underline;
}

.legal-content strong {
    color: #2d3748;
}

@media (max-width: 768px) {
    .navigation {
        gap: 1rem;
        flex-wrap: wrap;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .card-grid-3 {
        flex-direction: column;
    }

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

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

    .service-detail-image {
        min-height: 300px;
    }

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

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

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