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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.main-nav {
    background: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.btn-primary:hover {
    background: transparent;
    color: #ffffff;
}

.intro-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.intro-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 1.15rem;
    display: block;
}

.services-preview {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.services-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.services-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.9rem 2rem;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #5568d3;
}

.approach-split {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-image {
    min-height: 400px;
}

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

.approach-text {
    padding: 4rem 2rem;
    background: #2c3e50;
    color: #ffffff;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    min-width: 60px;
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: #bdc3c7;
}

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

.benefits-asymmetric h2 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-major,
.benefit-minor {
    padding: 2.5rem;
    border-radius: 8px;
}

.benefit-major {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.benefit-major h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-minor {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
}

.benefit-minor h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.case-section {
    background: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
}

.case-section h2 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
    text-align: center;
}

.cases-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-card {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #f5576c;
}

.case-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.case-author {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.form-container {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    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: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #5568d3;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-col p {
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #bdc3c7;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-detail-content {
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-lead {
    font-size: 1.25rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

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

.service-detail-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #555;
}

.service-detail-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f8f9fa;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.cta-services,
.cta-about {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-services h2,
.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services p,
.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #f5576c;
}

.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6rem 2rem;
}

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

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.4rem;
    opacity: 0.95;
}

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

.story-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

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

.values-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.values-section h2 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

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

.expertise-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.expertise-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.expertise-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.8;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expertise-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #667eea;
}

.expertise-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.expertise-item p {
    color: #666;
    margin: 0;
}

.expertise-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.approach-detail {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.approach-detail h2 {
    font-size: 2.75rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #2c3e50;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
}

.timeline-marker {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
}

.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.contact-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.contact-info-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-info-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.contact-note {
    padding: 2rem;
    background: #fffbea;
    border-left: 4px solid #f5576c;
    border-radius: 6px;
}

.contact-note h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-note p {
    color: #555;
    line-height: 1.7;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-content {
    max-width: 800px;
    background: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    text-align: center;
}

.selected-service {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
}

.thanks-next {
    margin-bottom: 3rem;
}

.thanks-next h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.next-steps li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.policy-page h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.updated {
    color: #777;
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.policy-page h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.policy-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.policy-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #555;
}

.policy-page a {
    color: #667eea;
    text-decoration: none;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
    }

    .hero-left,
    .hero-right {
        flex: 1;
    }

    .hero-right {
        min-height: 85vh;
    }

    .intro-asymmetric {
        flex-direction: row;
        gap: 5rem;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .approach-split {
        flex-direction: row;
    }

    .approach-image,
    .approach-text {
        flex: 1;
    }

    .benefits-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-major {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .benefit-minor {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .cases-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .case-card {
        flex: 1;
        min-width: calc(33.333% - 1.5rem);
    }

    .form-split {
        flex-direction: row;
    }

    .form-info,
    .form-container {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .story-split {
        flex-direction: row;
    }

    .story-text,
    .story-image {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .expertise-split {
        flex-direction: row;
    }

    .expertise-content,
    .expertise-visual {
        flex: 1;
    }

    .contact-info-section {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .nav-links {
        gap: 2.5rem;
    }

    .hero-left h1 {
        font-size: 3.5rem;
    }

    .service-card {
        min-width: calc(33.333% - 1.5rem);
    }
}