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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
}

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

.hero-story {
    margin-top: 80px;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.story-intro {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.opening-line {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.narrow-content p {
    margin-bottom: 1.5rem;
}

.emphasis {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 2rem 0;
    display: block;
}

.problem-amplification {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.text-block p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.image-block {
    flex: 1;
    height: 400px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 10px;
}

.insight-reveal {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.centered-block h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.large-text {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.emphasis-color {
    color: #f39c12;
    font-weight: bold;
}

.storytelling-scenario {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.storytelling-scenario h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff5f5;
    border-left: 4px solid var(--secondary-color);
}

.visual-showcase {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.showcase-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

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

.showcase-image {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.showcase-item p {
    font-size: 1.1rem;
    font-weight: 600;
}

.trust-building {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.trust-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.trust-points {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.trust-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.trust-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonial-flow {
    max-width: 900px;
    margin: 0 auto;
}

blockquote {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid white;
    border-radius: 5px;
}

blockquote p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.8;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.benefits-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-layout h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.benefit-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    min-width: 60px;
}

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

.benefit p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.how-it-works {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.process-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.step {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-reveal {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.pricing-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.2);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #c0392b;
}

.urgency-section {
    padding: 4rem 2rem;
    background: #fff5f5;
    border-top: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
}

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

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.urgency-note {
    font-weight: bold;
    color: var(--secondary-color);
}

.form-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
}

.final-cta {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-contact {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-contact:hover {
    transform: translateY(-3px);
}

.site-footer {
    background: #1a252f;
    color: white;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #7f8c8d;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: transform 0.3s;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero {
    margin-top: 80px;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

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

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

.about-intro,
.services-overview {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.about-intro h2,
.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.services-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.values-section,
.team-philosophy {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.values-container,
.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-container h2,
.philosophy-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.story-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-section {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-detail {
    padding: 5rem 2rem;
}

.service-detail.alternate {
    background: var(--bg-light);
}

.service-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-info h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

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

.service-info li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.price-info,
.duration-info {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-image {
    flex: 1;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.faq-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-content {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.info-block p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.info-block a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
}

.additional-info {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.info-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.info-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

.info-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.info-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.thanks-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    text-align: center;
}

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

.success-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.service-info {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.next-steps {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.steps-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

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

.step-info p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.additional-links {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.links-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.link-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.link-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.link-card p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.legal-page {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.legal-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .split-content,
    .contact-container,
    .service-layout {
        flex-direction: column;
    }

    .trust-points,
    .process-steps,
    .showcase-grid,
    .footer-content {
        flex-direction: column;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

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

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

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
