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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

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

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

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

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-right a:hover {
    color: var(--primary-color);
}

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--bg-white);
    transition: background-color 0.3s;
}

.btn-cookie:hover {
    background-color: var(--primary-dark);
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--bg-white);
}

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

.hero-split {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 48px;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-left p {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.intro-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
    text-align: center;
}

.intro-section p {
    font-size: 20px;
    color: var(--text-medium);
    text-align: center;
    line-height: 1.8;
}

.services-preview {
    padding: 100px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-left {
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.section-header-left p {
    font-size: 20px;
    color: var(--text-medium);
}

.services-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    flex: 1;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
}

.service-card p {
    margin: 0 24px 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.service-card .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 24px 24px;
}

.cta-center {
    text-align: center;
}

.process-split {
    background-color: var(--bg-light);
    padding: 100px 48px;
}

.process-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 42px;
    margin-bottom: 48px;
}

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

.step {
    display: flex;
    gap: 24px;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 48px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-medium);
    line-height: 1.7;
}

.process-image {
    flex: 1;
    background-color: var(--bg-white);
}

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

.form-section {
    padding: 100px 48px;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.form-info p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
    color: var(--text-medium);
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.form-wrapper {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.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);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: var(--bg-white);
}

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

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 48px 24px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.page-hero {
    background-color: var(--bg-light);
    padding: 80px 48px;
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-medium);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 48px;
}

.service-detail-split {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

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

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-medium);
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
}

.pricing-box {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.price-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-medium);
    margin-bottom: 8px;
}

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

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

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

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

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

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--bg-light);
}

.cta-section .btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.cta-section .btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.about-hero-split {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 48px;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
}

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

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

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

.mission-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
    text-align: center;
}

.mission-section p {
    font-size: 20px;
    color: var(--text-medium);
    text-align: center;
    line-height: 1.8;
}

.values-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 48px;
}

.value-item {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.value-item.reverse {
    flex-direction: row-reverse;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.value-content p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
}

.value-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.team-intro {
    background-color: var(--bg-light);
    padding: 80px 48px;
    text-align: center;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.team-intro p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.approach-section {
    padding: 100px 48px;
}

.approach-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.approach-left {
    flex: 1;
}

.approach-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.approach-left p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.approach-right {
    flex: 1;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-point {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

.approach-point h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.approach-point p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-info-section {
    padding: 80px 48px;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.contact-details p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-item .note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
}

.contact-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

.contact-cta {
    background-color: var(--bg-light);
    padding: 80px 48px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-cta p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.faq-section {
    padding: 80px 48px;
}

.faq-section h2 {
    font-size: 42px;
    margin-bottom: 48px;
    text-align: center;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1 1 calc(50% - 16px);
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 48px;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-service {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-next {
    text-align: left;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.thanks-next ul {
    list-style: none;
}

.thanks-next ul li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-next ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

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

.legal-page .updated {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 8px;
}

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

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

.legal-page ul li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

@media (max-width: 1024px) {
    .hero-split,
    .process-content,
    .form-container-split,
    .service-detail-split,
    .about-hero-split,
    .value-item,
    .approach-content-split,
    .contact-split {
        flex-direction: column;
        gap: 48px;
    }

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

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

    .hero-left h1,
    .page-hero h1 {
        font-size: 42px;
    }

    .footer-content {
        flex-direction: column;
    }

    .nav-split {
        padding: 20px 24px;
    }

    .nav-right {
        gap: 16px;
        font-size: 14px;
    }

    .faq-grid {
        flex-direction: column;
    }

    .faq-item {
        flex: 1 1 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 640px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-right {
        flex-wrap: wrap;
    }
}