/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #2ecc71;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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);
    overflow-x: hidden;
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Header and Navigation */
.header-split {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-horizontal {
    padding: 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

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

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    min-height: 450px;
}

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

/* Split Content Sections */
.split-content {
    display: flex;
    flex-direction: column;
}

.split-content.reverse {
    flex-direction: column;
}

.split-text,
.split-image {
    flex: 1;
    min-height: 400px;
}

.split-text {
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--primary-color);
}

.split-text h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.split-image {
    position: relative;
    overflow: hidden;
}

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

/* Process List */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.process-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    min-width: 60px;
}

.process-item h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.process-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Insight Block */
.insight-block {
    background-color: #34495e;
    color: white;
    padding: 80px 30px;
}

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

.insight-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.insight-content p {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 18px;
    opacity: 0.95;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 30px;
    background-color: var(--bg-light);
}

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

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

.testimonial-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services Pricing Section */
.services-pricing {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

.services-pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.pricing-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.pricing-card .description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.pricing-card .features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card .features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-card .features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large,
.btn-select,
.btn-submit,
.btn-service,
.btn-urgent,
.sticky-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary,
.btn-large,
.btn-select,
.btn-submit,
.btn-service {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover,
.btn-large:hover,
.btn-select:hover,
.btn-submit:hover,
.btn-service:hover {
    background-color: #2980b9;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn-urgent {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn-urgent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.inline-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.inline-link:hover {
    gap: 12px;
}

/* Form Section */
.form-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
}

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

.form-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-header p {
    font-size: 1.05rem;
    color: var(--text-light);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    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(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-group label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.btn-submit {
    margin-top: 10px;
    padding: 16px;
    font-size: 1.1rem;
}

/* CTA Sections */
.cta-section,
.cta-urgent {
    padding: 80px 30px;
    text-align: center;
}

.cta-section {
    background-color: var(--bg-light);
}

.cta-urgent {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-section h2,
.cta-urgent h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-urgent h2 {
    color: white;
}

.cta-section p,
.cta-urgent p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
    color: white;
}

/* Footer */
.footer-split {
    background-color: #2c3e50;
    color: white;
    padding: 60px 30px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-brand strong {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: white;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.page-hero .lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Stats List */
.stats-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stats-list li {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stats-list strong {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.stats-list span {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Team Section */
.team-section {
    padding: 80px 30px;
    background-color: var(--bg-light);
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.member-info span {
    display: block;
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.member-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Services Detailed */
.services-detailed {
    padding: 60px 30px;
}

.service-block {
    margin-bottom: 80px;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-content-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-block.reverse .service-content-split {
    flex-direction: column;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-info .price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success-color);
    margin-bottom: 20px;
    display: block;
}

.service-info p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-info h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

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

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

.btn-service {
    margin-top: 20px;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 30px;
    background-color: var(--bg-light);
}

.comparison-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table td {
    font-size: 0.95rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: var(--bg-light);
}

/* Contact Split */
.contact-split {
    padding: 60px 30px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 50px 40px;
    border-radius: 12px;
}

.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--secondary-color);
    font-weight: 600;
}

.map-placeholder {
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.faq-item {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-dark);
}

/* Thanks Section */
.thanks-section {
    padding: 100px 30px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.thanks-message .lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.thanks-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-info-box {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.service-info-box p {
    margin-bottom: 8px;
}

#service-name {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.15rem;
}

.next-steps {
    text-align: left;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps ol li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.contact-reminder {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.contact-reminder p {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.contact-reminder a {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.15rem;
}

/* Legal Pages */
.legal-page {
    padding: 60px 30px 80px;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-page .updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page ul,
.legal-page ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 10px;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .hamburger {
        display: none;
    }

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

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

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

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

    .testimonial-grid {
        flex-direction: row;
    }

    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pricing-card {
        flex: 1 1 calc(50% - 15px);
        min-width: 300px;
    }

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

    .footer-links {
        flex-direction: row;
        gap: 60px;
    }

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

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }

    .stats-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stats-list li {
        flex: 1 1 calc(50% - 15px);
    }

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

    .team-member {
        flex: 1 1 calc(50% - 15px);
    }

    .service-content-split {
        flex-direction: row;
    }

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

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

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

    .faq-item {
        flex: 1 1 calc(50% - 15px);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }

    .split-text {
        padding: 80px 60px;
    }

    .pricing-cards {
        flex-wrap: wrap;
    }

    .pricing-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }

    .team-grid {
        flex-wrap: nowrap;
    }

    .team-member {
        flex: 1;
    }
}

/* Print Styles */
@media print {
    .header-split,
    .sticky-cta,
    .cookie-banner,
    .cta-section,
    .footer-split {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}
