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

.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.navbar {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #d97706;
}

.hero-editorial {
    padding: 80px 40px;
    background: #fefefe;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.hero-content-narrow h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
}

.hero-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

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

.intro-offset {
    padding: 100px 40px;
    background: #f7fafc;
}

.offset-block {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.text-content {
    flex: 1.2;
}

.text-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a202c;
    font-weight: 700;
}

.text-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.image-aside {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #e2e8f0;
}

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

.feature-cards {
    padding: 100px 40px;
    background: #ffffff;
}

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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.feature-cards h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a202c;
    font-weight: 700;
}

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

.card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

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

.card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a202c;
    font-weight: 600;
}

.card p {
    padding: 0 25px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.services-preview {
    padding: 90px 40px;
    background: #1a202c;
    color: #ffffff;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-intro p {
    font-size: 19px;
    color: #cbd5e0;
}

.service-highlight {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.service-detail {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-detail h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #f7fafc;
    font-weight: 600;
}

.service-detail p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #cbd5e0;
}

.price-tag {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #fbbf24;
}

.cta-link {
    display: inline-block;
    padding: 15px 35px;
    background: #d97706;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s;
}

.cta-link:hover {
    background: #b45309;
}

.testimonial-block {
    padding: 100px 40px;
    background: #fef3c7;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content blockquote {
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    color: #78350f;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 18px;
    font-style: normal;
    color: #92400e;
}

.form-section {
    padding: 100px 40px;
    background: #f7fafc;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a202c;
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a5568;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #d97706;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #b45309;
}

.values-section {
    padding: 100px 40px;
    background: #ffffff;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.site-footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 60px 40px 30px;
}

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

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

.footer-col h4 {
    color: #f7fafc;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

.footer-col ul li a:hover {
    color: #f7fafc;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #a0aec0;
    margin-top: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 20px 40px;
    display: none;
    z-index: 1000;
    border-top: 2px solid #4a5568;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

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

.cookie-btn.accept:hover {
    background: #b45309;
}

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

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

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

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.story-section {
    padding: 80px 40px;
    background: #ffffff;
}

.story-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 40px;
    object-fit: cover;
    background: #e2e8f0;
}

.story-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 700;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.mission-visual {
    padding: 80px 40px;
    background: #f7fafc;
}

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

.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 700;
}

.content-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.content-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #e2e8f0;
}

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

.values-detailed {
    padding: 100px 40px;
    background: #ffffff;
}

.values-detailed h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.principle-blocks {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.principle {
    flex: 1;
    min-width: 240px;
    padding: 35px;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #d97706;
}

.principle h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 600;
}

.principle p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.team-approach {
    padding: 80px 40px;
    background: #fef3c7;
}

.team-approach h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #78350f;
    font-weight: 700;
}

.team-approach p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #92400e;
}

.impact-section {
    padding: 100px 40px;
    background: #ffffff;
}

.impact-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.impact-intro {
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a5568;
}

.impact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.impact-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #f7fafc;
    border-radius: 8px;
}

.impact-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 600;
}

.impact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.services-full {
    padding: 60px 40px 100px;
    background: #f7fafc;
}

.service-entry {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.service-entry.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #e2e8f0;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

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

.service-price {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #718096;
    font-weight: 500;
}

.price-amount {
    font-size: 32px;
    color: #d97706;
    font-weight: 700;
}

.service-cta {
    padding: 80px 40px;
    background: #1a202c;
    text-align: center;
}

.service-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.service-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #cbd5e0;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #d97706;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #b45309;
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #d97706;
    text-decoration: none;
    border: 2px solid #d97706;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: #d97706;
    color: #ffffff;
}

.contact-details {
    padding: 60px 40px 100px;
    background: #ffffff;
}

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

.contact-main {
    flex: 1;
}

.contact-main h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 700;
}

.contact-main > p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #4a5568;
}

.contact-info-block {
    margin-bottom: 35px;
}

.contact-info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 600;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #e2e8f0;
}

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

.visit-info {
    padding: 80px 40px;
    background: #f7fafc;
}

.visit-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 700;
}

.visit-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.inquiry-types {
    padding: 80px 40px;
    background: #ffffff;
}

.inquiry-types h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a202c;
    font-weight: 700;
}

.inquiry-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.inquiry-item {
    flex: 1;
    min-width: 260px;
    padding: 30px;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 3px solid #d97706;
}

.inquiry-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 600;
}

.inquiry-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-section {
    padding: 100px 40px;
    background: #f7fafc;
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a202c;
    font-weight: 800;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-selected {
    font-size: 17px;
    font-weight: 600;
    color: #d97706;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.thanks-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #e2e8f0;
}

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

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

.next-steps h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a202c;
    font-weight: 700;
}

.steps-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 260px;
    padding: 35px;
    background: #f7fafc;
    border-radius: 8px;
    text-align: center;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 600;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.legal-page {
    padding: 60px 40px 100px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 800;
}

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

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d3748;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d3748;
    font-weight: 600;
}

.legal-page h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 600;
}

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a5568;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content-narrow h1 {
        font-size: 38px;
    }

    .offset-block,
    .split-content,
    .service-entry,
    .contact-layout,
    .thanks-container {
        flex-direction: column;
    }

    .cards-flex,
    .service-highlight,
    .values-grid,
    .footer-content {
        flex-direction: column;
    }

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