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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #0f3460;
    --accent-color: #16213e;
    --highlight-color: #e94560;
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept {
    background-color: var(--highlight-color);
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    padding: 5px 0;
    position: relative;
}

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

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

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

/* Hero Split Screen (Main Archetype) */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

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

.hero-left p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

/* Split Screen Layouts */
.split-layout,
.split-reverse {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

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

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

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cta-primary {
    background-color: var(--highlight-color);
    color: white;
}

.cta-primary:hover {
    background-color: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: var(--highlight-color);
    border: 2px solid var(--highlight-color);
}

.cta-secondary:hover {
    background-color: var(--highlight-color);
    color: white;
}

/* Trust Indicators */
.trust-indicators {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.stat-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--highlight-color);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Insight Section */
.insight-section {
    padding: 100px 20px;
    background-color: white;
}

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--primary-color);
    line-height: 1.3;
}

.insight-section p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.inline-cta {
    margin-top: 36px;
}

/* Testimonials */
.testimonial-inline {
    background-color: var(--secondary-color);
    padding: 80px 20px;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 26px;
    line-height: 1.6;
    color: white;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

/* Services Section */
.services-pricing {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--highlight-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--highlight-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--highlight-color);
    margin: 20px 0;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.select-service {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
}

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

/* Engagement Form */
.engagement-form {
    padding: 80px 20px;
    background-color: white;
}

.engagement-form h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

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

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

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

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.9);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 20px;
    background-color: white;
}

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

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

.philosophy-item {
    flex: 1;
    min-width: 280px;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Expertise Section */
.expertise-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

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

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expertise-item {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.expertise-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.expertise-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Team Approach */
.team-approach {
    padding: 100px 20px;
    background-color: white;
}

.team-approach h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.team-approach p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Commitment Section */
.commitment-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

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

.commitment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.commitment-item {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--highlight-color);
}

.commitment-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.commitment-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* CTA About */
.cta-about {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
    color: white;
}

.cta-about h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 20px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Overview */
.services-overview {
    padding: 60px 20px;
}

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

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-tagline {
    font-size: 20px;
    color: var(--highlight-color);
    margin-bottom: 24px;
    font-weight: 600;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-deliverables {
    list-style: none;
    margin: 20px 0;
}

.service-deliverables li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-secondary);
}

.service-deliverables li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
}

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

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

.service-pricing-detail {
    margin-top: 32px;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 10px;
    position: relative;
}

.price-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--highlight-color);
}

.badge-popular {
    display: inline-block;
    margin-top: 12px;
    background-color: var(--highlight-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Service Process */
.service-process {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.service-process h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--highlight-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Service CTA */
.service-cta {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
}

.service-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-cta p {
    font-size: 20px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Page */
.contact-content {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.contact-item a {
    color: var(--highlight-color);
}

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

.contact-note {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 10px;
    border-left: 4px solid var(--highlight-color);
}

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

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

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

.contact-image {
    flex: 1;
}

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

/* Location Info */
.location-info {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.location-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.location-info p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Thanks Page */
.thanks-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.service-confirmation {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 10px;
    margin: 40px 0;
}

.service-selected h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: white;
    font-weight: 600;
}

.service-selected p {
    font-size: 16px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.service-note {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 36px;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 700px;
    margin: 0 auto;
}

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

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--highlight-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

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

/* Thanks Additional */
.thanks-additional {
    padding: 80px 20px;
    background-color: white;
}

.thanks-additional h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.resource-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.resource-item {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 10px;
    text-align: center;
}

.resource-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.resource-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.resource-item a {
    color: var(--highlight-color);
    font-weight: 600;
}

.resource-item a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 60px 20px 100px;
    background-color: white;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 28px;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--highlight-color);
    text-decoration: underline;
}

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

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th {
    padding: 14px;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
}

.cookies-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 20px 20px;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background-color: var(--highlight-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.3);
    transition: var(--transition);
}

.sticky-btn:hover {
    background-color: #d63851;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(233, 69, 96, 0.4);
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .hero-left p {
        font-size: 18px;
    }

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

    .split-layout,
    .split-reverse {
        flex-direction: column;
        min-height: auto;
    }

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

    .split-content h2 {
        font-size: 28px;
    }

    .split-content p {
        font-size: 16px;
    }

    .split-image {
        min-height: 300px;
    }

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

    .service-cards {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .service-detail-image {
        min-height: 300px;
    }

    .process-steps {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .contact-image {
        min-height: 300px;
    }

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

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

    .philosophy-grid,
    .expertise-list,
    .commitment-grid {
        flex-direction: column;
    }

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

    .sticky-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookies-table {
        font-size: 14px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 28px;
    }

    .split-content h2 {
        font-size: 24px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 42px;
    }

    .price {
        font-size: 28px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }
}
