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

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 4px 10px;
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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;
    margin: 0;
}

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

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

.btn-cookie {
    background-color: #1a5490;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #144070;
}

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

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.hero-overlay h1 {
    font-size: 56px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 700px;
    line-height: 1.5;
}

.intro-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: #2c3e50;
    text-align: center;
}

.story-section {
    padding: 80px 0;
}

.story-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a5490;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.insight-section {
    padding: 80px 0;
    background-color: #1a5490;
    color: #ffffff;
}

.insight-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #ffffff;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #ecf0f1;
}

.method-section {
    padding: 80px 0;
}

.method-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.method-text {
    flex: 1.2;
}

.method-text h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a5490;
}

.method-item {
    margin-bottom: 32px;
}

.method-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.method-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

.method-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5490;
}

.testimonial {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #1a5490;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
    color: #2c3e50;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #5a6c7d;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #ecf0f1;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a5490;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5a6c7d;
}

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

.btn-primary {
    background-color: #1a5490;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #1a5490;
    border: 2px solid #1a5490;
}

.btn-secondary:hover {
    background-color: #1a5490;
    color: #ffffff;
}

.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a5490;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px 20px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 20px 12px 20px;
    color: #5a6c7d;
    line-height: 1.6;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #1a5490;
    margin: 20px;
}

.services-link {
    text-align: center;
    margin-top: 40px;
}

.services-link a {
    color: #1a5490;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #1a5490;
    transition: color 0.3s;
}

.services-link a:hover {
    color: #144070;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6c7d;
    text-align: center;
    font-style: italic;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-hero {
    padding: 80px 0 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

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

.page-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-block {
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-header {
    margin-bottom: 30px;
}

.service-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
    color: #1a5490;
}

.service-duration {
    font-size: 16px;
    color: #5a6c7d;
    font-weight: 500;
}

.service-body {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-description {
    flex: 2;
}

.service-description p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-description h4 {
    font-size: 18px;
    margin: 24px 0 12px 0;
    color: #2c3e50;
}

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

.service-description li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #5a6c7d;
}

.service-ideal {
    font-style: italic;
    color: #5a6c7d;
    margin-top: 20px;
}

.service-pricing {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #1a5490;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 8px;
}

.price-unit {
    font-size: 14px;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.btn-select {
    width: 100%;
    padding: 14px 20px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    font-weight: 700;
    color: #7f8c8d;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a5490;
}

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

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

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

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

.about-story {
    padding: 60px 0;
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a5490;
}

.about-story p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a5490;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.team-member h3 {
    font-size: 22px;
    margin: 20px 20px 8px 20px;
    color: #2c3e50;
}

.team-role {
    font-size: 16px;
    font-weight: 600;
    color: #1a5490;
    margin: 0 20px 16px 20px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 20px 20px 20px;
    color: #5a6c7d;
}

.philosophy-section {
    padding: 80px 0;
}

.philosophy-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.philosophy-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.philosophy-content {
    flex: 1.2;
}

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a5490;
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c3e50;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a5490;
    text-align: center;
}

.value-item {
    margin-bottom: 40px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.impact-section {
    padding: 80px 0;
}

.impact-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a5490;
}

.impact-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a5490;
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.map-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.map-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a5490;
}

.map-placeholder {
    background-color: #ecf0f1;
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a5490;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.service-confirmation {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 600px;
}

.next-steps {
    margin: 60px auto 40px auto;
    max-width: 700px;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a5490;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a5490;
}

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

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 16px 0;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #5a6c7d;
}

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

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #5a6c7d;
}

.legal-page a {
    color: #1a5490;
    text-decoration: none;
    border-bottom: 1px solid #1a5490;
}

.legal-page a:hover {
    color: #144070;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .story-grid,
    .method-layout,
    .philosophy-layout {
        flex-direction: column;
    }

    .insight-cards {
        flex-direction: column;
    }

    .service-body {
        flex-direction: column;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 12px;
    }

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

    .services-grid,
    .team-grid {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }
}