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

:root {
    --primary-color: #2c5f8d;
    --primary-dark: #1a3e5e;
    --secondary-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--text-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

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

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

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding: 4rem;
    background-color: var(--bg-light);
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-right {
    flex: 1;
    background-color: var(--primary-color);
    min-height: 600px;
}

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

/* Split Sections */
.split-intro,
.split-benefits,
.testimonials-split,
.industries-split,
.about-story-split,
.mission-split,
.certifications-split,
.services-intro-split,
.services-cta-split,
.contact-split {
    display: flex;
    align-items: center;
}

.split-image-left,
.split-image-right {
    flex: 1;
    min-height: 500px;
}

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

.split-content-left,
.split-content-right {
    flex: 1;
    padding: 4rem;
}

.split-content-left h2,
.split-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.split-content-left p,
.split-content-right p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.inline-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Services Preview Section */
.services-preview {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-header-centered p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-cta-centered {
    text-align: center;
    margin-top: 3rem;
}

/* Benefits Section */
.benefit-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 80px;
}

.benefit-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.benefit-text p {
    color: var(--text-light);
}

/* Testimonials */
.section-header-left {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.section-header-left h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.testimonial-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-content p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

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

/* Stats Section */
.stats-split {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 5rem 2rem;
}

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

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

.stats-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Industry List */
.industry-list {
    list-style: none;
    margin: 2rem 0;
}

.industry-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
    color: var(--text-light);
}

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

/* Process Steps */
.process-split {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-line {
    width: 2px;
    flex: 1;
    background-color: var(--border-color);
    margin: 1rem 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

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

/* CTA Final Split */
.cta-final-split {
    display: flex;
    align-items: center;
    background-color: var(--primary-dark);
    color: var(--text-white);
}

.cta-content-left {
    flex: 1;
    padding: 4rem;
}

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

.cta-content-left p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.cta-action-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-primary-large,
.btn-outline-large,
.btn-select-service,
.btn-submit {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary,
.btn-primary-large {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover,
.btn-primary-large:hover {
    background-color: var(--primary-dark);
    color: var(--text-white);
}

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

.btn-secondary:hover {
    background-color: #d35400;
    color: var(--text-white);
}

.btn-outline,
.btn-outline-large {
    background-color: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-outline:hover,
.btn-outline-large:hover {
    background-color: var(--text-white);
    color: var(--primary-dark);
}

.btn-primary-large,
.btn-outline-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-select-service,
.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
}

.btn-select-service:hover,
.btn-submit:hover {
    background-color: var(--primary-dark);
}

/* Page Hero */
.page-hero {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 5rem 2rem;
    text-align: center;
}

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

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Services Full Page */
.services-full {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro-split {
    margin-bottom: 4rem;
}

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

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

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

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    padding: 2rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.service-detail-left {
    flex: 2;
}

.service-detail-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-left h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-highlights {
    margin: 2rem 0;
}

.service-highlights h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-highlights ul {
    list-style: none;
    margin-left: 0;
}

.service-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.service-meta span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.price-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    width: 100%;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-label {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.services-cta-split {
    background-color: var(--bg-light);
    padding: 3rem;
    margin-top: 4rem;
    border-radius: 8px;
}

.cta-left {
    flex: 1;
}

.cta-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

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

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
}

/* Certifications */
.cert-list {
    list-style: none;
    margin: 2rem 0;
}

.cert-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
    color: var(--text-light);
}

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

/* Approach Section */
.approach-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.approach-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.approach-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approach-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.approach-card p {
    color: var(--text-light);
}

/* Contact Page */
.contact-info-left {
    flex: 1;
    padding: 4rem;
    background-color: var(--bg-light);
}

.contact-map-right {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 600px;
    background-color: var(--border-color);
}

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

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    color: var(--primary-color);
}

.contact-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

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

.contact-text a {
    color: var(--primary-color);
}

.contact-note {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

/* FAQ Section */
.contact-faq {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.faq-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.faq-item p {
    color: var(--text-light);
}

/* Thanks Page */
.thanks-page {
    padding: 5rem 2rem;
    min-height: 60vh;
}

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

.thanks-icon {
    color: var(--success-color);
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.thanks-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-dark);
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
}

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

.step-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.step-text p {
    color: var(--text-light);
}

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

.thanks-support {
    color: var(--text-light);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-white);
    margin: auto;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

/* Forms */
.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

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

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

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

.legal-container h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-container li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-dark);
}

.cookie-table td {
    color: var(--text-light);
}

/* Footer */
.main-footer {
    background-color: var(--text-dark);
    color: var(--text-white);
    padding: 4rem 2rem 2rem;
}

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

.footer-main {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: var(--text-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .split-intro,
    .split-benefits,
    .industries-split,
    .about-story-split,
    .mission-split,
    .certifications-split,
    .cta-final-split,
    .contact-split {
        flex-direction: column;
    }

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

    .service-detail-card {
        flex-direction: column;
    }

    .services-cta-split {
        flex-direction: column;
        text-align: center;
    }

    .cta-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
        padding: 2rem;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content-left h1,
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .split-content-left h2,
    .split-content-right h2,
    .section-header-centered h2 {
        font-size: 1.75rem;
    }

    .hero-content-left,
    .split-content-left,
    .split-content-right,
    .cta-content-left,
    .cta-action-right,
    .contact-info-left {
        padding: 2rem;
    }

    .services-grid-split {
        flex-direction: column;
    }

    .testimonial-grid,
    .stats-grid,
    .team-grid,
    .approach-grid,
    .faq-grid {
        flex-direction: column;
    }

    .benefit-item {
        flex-direction: column;
        gap: 1rem;
    }

    .benefit-number {
        min-width: auto;
    }

    .hero-cta,
    .thanks-actions {
        flex-direction: column;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content-left h1,
    .page-hero-content h1 {
        font-size: 1.5rem;
    }

    .split-content-left h2,
    .split-content-right h2 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.75rem 1.5rem;
    }
}
