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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-dark: #1f2937;
    --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;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.intro-split {
    display: flex;
    align-items: center;
}

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

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.btn-inline {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin-top: 16px;
    transition: transform 0.3s;
}

.btn-inline:hover {
    transform: translateX(5px);
}

.benefits-grid {
    padding: 100px 20px;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

.benefits-layout {
    display: flex;
    gap: 40px;
}

.benefit-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-preview {
    padding: 100px 20px;
}

.services-preview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

.services-split-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-visual {
    flex: 1;
    min-height: 350px;
}

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

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

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.btn-select-service {
    padding: 14px 28px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    align-self: flex-start;
}

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

.testimonial-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.testimonial-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    opacity: 0.9;
}

.process-section {
    padding: 100px 20px;
}

.process-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.process-content {
    flex: 1.5;
}

.process-visual {
    flex: 1;
}

.process-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

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

.step-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    color: var(--text-light);
    font-size: 18px;
}

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

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

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

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

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

.btn-submit {
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.cta-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.btn-primary-large {
    display: inline-block;
    padding: 20px 48px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.sticky-cta-btn {
    display: block;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    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: 40px;
}

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

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

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

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

.btn-cookie.btn-secondary {
    background: #4b5563;
}

.btn-cookie.btn-secondary:hover {
    background: #374151;
}

.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-split {
    display: flex;
    padding: 100px 20px;
    gap: 60px;
    align-items: center;
}

.about-split h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.values-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 100px 20px;
}

.team-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

.team-split-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.team-member-split {
    display: flex;
    gap: 40px;
    align-items: center;
}

.team-member-split.reverse {
    flex-direction: row-reverse;
}

.member-image {
    flex: 1;
}

.member-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-info {
    flex: 1.5;
}

.member-info h3 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 700;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 18px;
}

.member-info p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 700;
}

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

.services-detail-section {
    padding: 100px 20px;
}

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

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-price-large {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-price-large span {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.pricing-info-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.pricing-info-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 700;
}

.pricing-cards {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.pricing-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.pricing-note {
    font-weight: 600;
    color: var(--primary-color);
}

.contact-split-section {
    display: flex;
    min-height: 600px;
}

.contact-info-side {
    flex: 1;
    padding: 80px 60px;
    background: var(--bg-light);
}

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-info-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-block a:hover {
    text-decoration: underline;
}

.contact-map-side {
    flex: 1;
    overflow: hidden;
}

.contact-map-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta-section {
    padding: 100px 20px;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.thanks-section {
    padding: 100px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    color: white;
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

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

.service-confirmation p {
    font-size: 18px;
    color: var(--text-dark);
}

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

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.thanks-next-steps ul li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: #e5e7eb;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #d1d5db;
}

.legal-page {
    padding: 60px 20px 100px;
}

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.legal-intro {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

.legal-page ul {
    margin: 16px 0 24px 40px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-page ul li {
    margin-bottom: 8px;
}

.legal-updated {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-style: italic;
}

.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: var(--bg-light);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .benefits-layout,
    .testimonial-grid,
    .values-grid,
    .pricing-cards {
        flex-direction: column;
    }

    .hero-split,
    .intro-split,
    .service-card-split,
    .process-split,
    .about-split,
    .team-member-split,
    .service-detail-split,
    .contact-split-section {
        flex-direction: column;
    }

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

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

    .service-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: block;
    }

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

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

    .section-title {
        font-size: 32px;
    }

    .form-container {
        padding: 40px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }
}
