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

.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 32px;
    z-index: 999;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-editorial {
    width: 100%;
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #34495e;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.3), rgba(44, 62, 80, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-text-narrow {
    max-width: 680px;
    text-align: center;
    color: #ffffff;
}

.hero-text-narrow h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-size: 19px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.95;
}

.content-editorial {
    width: 100%;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.intro-section,
.story-section,
.detail-section,
.process-section,
.faq-section,
.closing-section,
.visit-info,
.payment-info,
.legal-section,
.experience-section,
.principles-section,
.team-section,
.values-section {
    padding: 50px 0;
}

.intro-section h2,
.story-section h3,
.detail-section h3,
.process-section h3,
.faq-section h3,
.closing-section h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-section p,
.story-section p,
.detail-section p,
.process-section p,
.closing-section p,
.visit-info p,
.payment-info p,
.experience-section p,
.principles-section p,
.team-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.inline-image-section {
    padding: 60px 0;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    background-color: #ecf0f1;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
}

.info-item {
    padding: 24px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 2px;
}

.info-item h5,
.info-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 0;
}

.cta-inline {
    padding: 70px 0;
}

.cta-box {
    background-color: #ecf0f1;
    padding: 48px 40px;
    border-radius: 4px;
    text-align: center;
}

.cta-box.secondary {
    background-color: #e8f4f8;
}

.cta-box h4,
.cta-box h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #34495e;
}

.btn-primary,
.btn-secondary,
.btn-submit,
.btn-service {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
}

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

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    width: 100%;
}

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

.btn-service {
    background-color: #3498db;
    color: #ffffff;
}

.btn-service:hover {
    background-color: #2980b9;
}

.process-steps {
    list-style: none;
    counter-reset: step-counter;
    margin-top: 32px;
}

.process-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 60px;
    margin-bottom: 36px;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.process-steps li strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.process-steps li p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 0;
}

.faq-section {
    padding: 60px 0;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e1e8ed;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h5,
.faq-item h4 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 0;
}

.form-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.form-section h3,
.form-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.form-section > .narrow-content > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #34495e;
}

.main-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: #3498db;
    text-decoration: underline;
}

.page-header {
    padding: 80px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2c3e50;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #7f8c8d;
}

.services-list {
    padding: 60px 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    margin-bottom: 40px;
    overflow: hidden;
}

.service-card.featured {
    border-color: #3498db;
    border-width: 2px;
}

.service-header {
    background-color: #f8f9fa;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.service-card.featured .service-header {
    background-color: #e8f4f8;
}

.service-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
}

.service-body {
    padding: 32px;
}

.service-body p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.service-body h4 {
    font-size: 19px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-body ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #34495e;
}

.service-note {
    font-size: 15px;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 20px;
}

.service-footer {
    padding: 0 32px 32px;
}

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

.contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-block {
    padding: 28px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.contact-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #34495e;
}

.contact-block p:last-of-type {
    margin-bottom: 0;
}

.contact-note {
    font-size: 15px;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 12px;
}

.email-display {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-align: center;
}

.thanks-section {
    padding: 100px 0 60px;
}

.thanks-box {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.thanks-box h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #34495e;
}

.thanks-details {
    background-color: #e8f4f8;
    padding: 24px;
    border-radius: 4px;
    margin-bottom: 32px;
    font-size: 17px;
    color: #2c3e50;
}

.thanks-note {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.next-steps {
    padding: 60px 0;
}

.next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c3e50;
    text-align: center;
}

.legal-section {
    padding: 40px 0 80px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-section a {
    color: #3498db;
    text-decoration: underline;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
    margin: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 24px;
    box-shadow: 0 -2px 12px 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;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

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

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

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

.btn-reject:hover {
    background-color: #7f8c8d;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 16px 20px;
        gap: 16px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-text-narrow h1 {
        font-size: 32px;
    }

    .hero-subtext {
        font-size: 17px;
    }

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

    .intro-section h2,
    .story-section h3,
    .detail-section h3,
    .process-section h3,
    .faq-section h3,
    .closing-section h3 {
        font-size: 26px;
    }

    .cta-box {
        padding: 32px 24px;
    }

    .main-form {
        padding: 28px 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        height: 400px;
    }

    .hero-text-narrow h1 {
        font-size: 26px;
    }

    .hero-subtext {
        font-size: 16px;
    }
}