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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8ba6;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 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-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    padding: 5px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 15px 0;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

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

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

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

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

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

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

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

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

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

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-section p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-light);
}

.service-grid-split {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    gap: 40px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-image {
    flex: 1;
    background-color: var(--border-color);
    min-height: 400px;
}

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.btn-select-service {
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.why-choose-split {
    display: flex;
    gap: 60px;
    padding: 80px 20px;
    background-color: var(--bg-white);
    max-width: 1200px;
    margin: 0 auto;
}

.why-left {
    flex: 1;
}

.why-left h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.why-right {
    flex: 1;
    background-color: var(--border-color);
}

.why-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--text-dark);
}

.contact-form-section > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.main-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    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: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 20px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    color: var(--bg-light);
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--bg-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #999;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

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

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.about-story-split {
    display: flex;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-white);
}

.story-left {
    flex: 1;
    background-color: var(--border-color);
}

.story-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.story-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.story-right p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.philosophy-section p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-split {
    display: flex;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-white);
}

.values-content {
    flex: 1.5;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.value-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-block h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.values-image {
    flex: 1;
    background-color: var(--border-color);
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.approach-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

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

.approach-step {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.approach-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.cta-about h2 {
    font-size: 42px;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.cta-about p {
    font-size: 18px;
    color: var(--bg-light);
    margin-bottom: 32px;
}

.cta-about .cta-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

.services-detailed {
    padding: 80px 20px;
    background-color: var(--bg-white);
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
    min-height: 500px;
}

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

.service-detail-content {
    flex: 1;
    padding: 50px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.service-detail-content > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-features h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-features ul {
    list-style-position: inside;
    color: var(--text-light);
}

.service-features ul li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.service-pricing .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.service-form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--text-dark);
}

.service-form-section > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-content-split {
    display: flex;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-white);
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-info-side > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.contact-note {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-note p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-image-side {
    flex: 1;
    background-color: var(--border-color);
}

.contact-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.location-info {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.location-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-dark);
}

.location-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.thanks-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

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

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.thanks-details p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.thanks-details strong {
    color: var(--primary-color);
}

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

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-next-steps ul {
    list-style-position: inside;
    color: var(--text-light);
}

.thanks-next-steps ul li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

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

.legal-page {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

.legal-page ul {
    margin: 16px 0 16px 20px;
    color: var(--text-light);
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

    .hero-left {
        padding: 40px 20px;
    }

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

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

    .service-content {
        padding: 30px 20px;
    }

    .why-choose-split,
    .about-story-split,
    .values-split,
    .contact-content-split {
        flex-direction: column;
    }

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

    .service-detail-content {
        padding: 30px 20px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

    .approach-step {
        flex: 1 1 100%;
    }

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

    .thanks-actions a {
        display: block;
        text-align: center;
    }
}