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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --light-accent: #0f3460;
    --text-primary: #1a1a1a;
    --text-secondary: #555;
    --text-light: #fff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

li {
    margin-bottom: 0.6rem;
    color: var(--text-secondary);
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

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

.ad-notice {
    background-color: var(--bg-light);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-split {
    display: flex;
    min-height: 650px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 2rem;
    background-color: var(--bg-light);
}

.hero-content-left h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--light-accent);
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #d63651;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image-left {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-content-right p {
    font-size: 1.05rem;
}

.services-grid {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.service-cards-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card-split {
    display: flex;
    gap: 3rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.service-card-split:hover {
    box-shadow: var(--shadow-md);
}

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

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

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-info p {
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.select-service-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.form-content-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content-left h2 {
    margin-bottom: 1rem;
}

.form-benefits {
    list-style: none;
    margin-left: 0;
    margin-top: 2rem;
}

.form-benefits li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 1rem;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.form-container-right {
    flex: 1;
    padding: 4rem;
    background-color: var(--bg-white);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    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(--accent-color);
}

.btn-submit {
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d63651;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.disclaimer-section {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    margin-top: 6rem;
}

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

.disclaimer-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.8;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 2rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer-left h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-left p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    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: 2rem;
}

.cookie-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

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

.btn-accept {
    background-color: var(--accent-color);
    color: var(--text-light);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

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

.page-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    gap: 3rem;
    padding: 0 2rem;
}

.hero-text-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-visual-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.content-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    gap: 3rem;
    padding: 0 2rem;
}

.content-left-wide {
    flex: 2;
}

.content-right-narrow {
    flex: 1;
}

.stats-box {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.philosophy-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.philosophy-split.reverse {
    flex-direction: row-reverse;
}

.philosophy-image-left {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.team-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.expertise-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.expertise-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.expertise-card h3 {
    margin-bottom: 1rem;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 4rem;
    padding: 0 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 4rem;
}

.values-content-left {
    flex: 1;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    margin-bottom: 0.5rem;
}

.values-image-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-white);
}

.cta-section-centered {
    text-align: center;
    max-width: 800px;
    margin: 5rem auto;
    padding: 4rem 2rem;
}

.cta-section-centered h2 {
    margin-bottom: 1rem;
}

.page-header-centered {
    text-align: center;
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.page-header-centered h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto 6rem auto;
    padding: 0 2rem;
}

.service-detail-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content ul {
    margin-bottom: 2rem;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 2rem 0 1.5rem 0;
}

.form-section-centered {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    margin-top: 6rem;
}

.form-wrapper-narrow {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.form-wrapper-narrow h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-wrapper-narrow > p {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-split-layout {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    gap: 3rem;
    padding: 0 2rem;
}

.contact-info-left {
    flex: 1.2;
}

.contact-intro {
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-block h3 {
    margin-bottom: 0.8rem;
}

.contact-block p {
    margin-bottom: 0.5rem;
}

.email-display {
    font-weight: 600;
    color: var(--text-primary);
}

.hours-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.contact-image-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.response-info-section {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.response-info-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.thanks-section-centered {
    max-width: 800px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-content {
    background-color: var(--bg-light);
    padding: 4rem 3rem;
    border-radius: 8px;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.selected-service-info {
    margin: 2rem 0;
}

.service-selected {
    background-color: var(--bg-white);
    padding: 1.2rem;
    border-radius: 6px;
    font-size: 1.1rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-list {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d63651;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-intro {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-split,
    .page-hero-split,
    .content-split,
    .philosophy-split,
    .values-split,
    .service-card-split,
    .service-detail-split,
    .contact-split-layout {
        flex-direction: column;
    }

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

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-right {
        gap: 1.5rem;
    }

    .expertise-card {
        flex: 1 1 100%;
    }

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

    .footer-split {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-right {
        flex-wrap: wrap;
        gap: 1rem;
    }

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