* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-disclosure {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: var(--primary-color);
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image {
    flex: 1;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

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

.cta-primary,
.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.cta-primary:hover,
.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-secondary,
.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover,
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.intro-section,
.insight-section,
.values-section,
.approach-section,
.expertise-section,
.commitment-section,
.form-section,
.references-section {
    padding: 80px 0;
}

.intro-grid,
.about-grid,
.trust-grid,
.approach-grid,
.problem-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image,
.about-image,
.trust-visual,
.approach-image,
.problem-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.intro-image img,
.about-image img,
.trust-visual img,
.approach-image img,
.problem-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-text,
.about-text,
.trust-content,
.approach-content,
.problem-text {
    flex: 1;
}

.intro-text h2,
.about-text h2,
.trust-content h2,
.approach-content h2,
.problem-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-text p,
.about-text p,
.trust-content p,
.approach-content p,
.problem-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.problem-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.problem-grid {
    flex-direction: row-reverse;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.problem-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.problem-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.insight-content {
    max-width: 900px;
    margin: 0 auto;
}

.insight-content h2 {
    font-size: 38px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--primary-color);
}

.insight-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.principle-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.principle h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.principle p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.testimonial-section {
    background-color: var(--secondary-color);
    padding: 80px 0;
    color: white;
}

.testimonial-wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial p {
    margin-bottom: 16px;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 16px;
}

.services-preview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.service-link {
    display: inline-block;
    padding: 12px 24px 24px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color);
}

.cta-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--primary-color);
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.references-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.reference-list {
    list-style-position: inside;
    font-size: 14px;
    line-height: 1.8;
}

.reference-list a {
    color: var(--secondary-color);
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-col a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

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

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

.service-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-features {
    margin: 32px 0;
}

.service-features h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.service-features ul {
    list-style-position: inside;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

.service-pricing {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.about-intro {
    padding: 80px 0;
}

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

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.expertise-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.expertise-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.commitment-section {
    background-color: var(--bg-light);
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--primary-color);
}

.commitment-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

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

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.info-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.info-block .note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.map-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--primary-color);
}

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

.map-placeholder p {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.map-note {
    font-size: 14px;
    color: var(--text-light);
}

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

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-detail {
    font-weight: 600;
    color: var(--secondary-color);
}

.next-steps {
    margin: 60px 0;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--primary-color);
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

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

.thanks-resources {
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
}

.thanks-resources h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-resources ul {
    list-style-position: inside;
    font-size: 16px;
    line-height: 1.8;
}

.thanks-resources a {
    color: var(--secondary-color);
    text-decoration: none;
}

.thanks-resources a:hover {
    text-decoration: underline;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.update-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page ul,
.legal-page ol {
    margin-left: 20px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 8px;
    font-size: 16px;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 15px;
}

.warning-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 16px;
    margin: 24px 0;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 30px;
    }

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

    .intro-grid,
    .about-grid,
    .trust-grid,
    .approach-grid,
    .problem-grid,
    .service-block {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .nav-menu {
        gap: 20px;
    }
}

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

    .hero-text p {
        font-size: 16px;
    }

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

    .services-preview h2,
    .insight-content h2,
    .cta-content h2 {
        font-size: 28px;
    }

    .form-wrapper {
        padding: 32px 20px;
    }

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

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }

    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .cta-primary,
    .cta-secondary {
        display: block;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }
}