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

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

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

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

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d6d;
}

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

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #1a3d6d;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 2rem;
    height: 0.2rem;
    background-color: #333;
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 5rem 0 2rem;
    overflow-y: auto;
}

.nav.active {
    right: 0;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.nav-list li {
    border-bottom: 1px solid #f0f0f0;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #f5f5f5;
    color: #2c5aa0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3d6d 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-small {
    padding: 3rem 0;
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

.btn-primary {
    background-color: #2c5aa0;
    color: #fff;
    border-color: #2c5aa0;
}

.btn-primary:hover {
    background-color: #1a3d6d;
    border-color: #1a3d6d;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #2c5aa0;
    border-color: #2c5aa0;
}

.btn-secondary:hover {
    background-color: #2c5aa0;
    color: #fff;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: #f9f9f9;
}

.section-title-center {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a3d6d;
}

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

.content-block h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1a3d6d;
}

.content-block p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* Two Column Layout */
.two-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.column {
    flex: 1;
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

.feature-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #1a3d6d;
}

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

/* Statistics */
.stat-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
    color: #333;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5aa0;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #2c5aa0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a3d6d;
}

.process-step p {
    color: #555;
    line-height: 1.7;
}

/* Info Blocks */
.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-block {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 3px solid #2c5aa0;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a3d6d;
}

.info-block p {
    color: #555;
    line-height: 1.7;
}

/* Industries List */
.industries-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.industry-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c5aa0;
}

.industry-item p {
    color: #555;
    line-height: 1.7;
}

/* FAQ */
.faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a3d6d;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-icon {
    font-size: 1.5rem;
    color: #2c5aa0;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.7;
}

/* CTA Block */
.cta-block {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a3d6d;
}

.cta-block p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Philosophy Grid */
.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.philosophy-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

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

/* Team Grid */
.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #555;
}

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

.team-member {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a3d6d;
}

.team-role {
    font-size: 1rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member p {
    color: #555;
    line-height: 1.7;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.benefit-item p {
    color: #555;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #2c5aa0;
}

.timeline-item {
    position: relative;
}

.timeline-year {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #2c5aa0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    transform: translateX(-50%);
}

.timeline-content {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a3d6d;
}

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

/* Services List */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #555;
}

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 1.5rem;
    color: #1a3d6d;
    flex: 1;
    min-width: 200px;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5aa0;
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
}

/* Comparison Table */
.comparison-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    color: #555;
}

.comparison-table {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.comparison-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background-color: #2c5aa0;
    color: #fff;
    font-weight: 700;
}

.comparison-cell {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-cell:last-child {
    border-bottom: none;
}

.comparison-header .comparison-cell {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Included Features */
.included-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.included-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.included-icon {
    width: 64px;
    height: 64px;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.included-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a3d6d;
}

.included-item p {
    color: #555;
    line-height: 1.7;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a3d6d;
}

.contact-info > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

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

.contact-item a {
    color: #2c5aa0;
    font-weight: 600;
}

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

.info-box {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.info-box h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #1a3d6d;
}

.info-box p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Enquiry Tips */
.enquiry-tips {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tip-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tip-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

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

/* Company Info Block */
.company-info-block {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.company-info-block h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1a3d6d;
}

.company-info-block p {
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.8;
}

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

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a3d6d;
}

.final-cta p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
}

.final-cta a {
    font-weight: 600;
}

/* Thank You Page */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: #2c5aa0;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a3d6d;
}

.thank-you-text {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #555;
}

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

.next-steps h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: #1a3d6d;
    text-align: center;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #2c5aa0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a3d6d;
}

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

.thank-you-info {
    margin: 3rem 0;
}

.thank-you-info p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.thank-you-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-reminder {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.contact-reminder p {
    font-size: 1rem;
    color: #555;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.875rem;
    margin: 2.5rem 0 1.5rem;
    color: #1a3d6d;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.375rem;
    margin: 2rem 0 1rem;
    color: #2c5aa0;
}

.legal-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #555;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
    color: #555;
}

.legal-text li {
    margin-bottom: 0.75rem;
}

/* Cookie Table */
.cookie-table {
    margin: 1.5rem 0;
}

.cookie-row {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 6px;
}

.cookie-name {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.75rem;
}

.cookie-info p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.cookie-info p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #1a3d6d;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.footer-column p {
    line-height: 1.7;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #fff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3d6d;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

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

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

.cookie-banner-text {
    line-height: 1.6;
}

.cookie-banner-text a {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-banner-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #2c5aa0;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #1a3d6d;
}

.cookie-decline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Cookie Preferences Modal */
.cookie-preferences {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-preferences.show {
    display: flex;
}

.cookie-preferences-modal {
    background-color: #fff;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

.cookie-preferences-modal h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1a3d6d;
}

.cookie-preference-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-preference-item:last-child {
    border-bottom: none;
}

.cookie-preference-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-preference-header h3 {
    font-size: 1.25rem;
    color: #2c5aa0;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 26px;
    transition: 0.3s;
}

.toggle-slider::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #2c5aa0;
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-preference-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.cookie-preferences-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-preferences-buttons button {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-preferences {
    background-color: #2c5aa0;
    color: #fff;
}

.save-preferences:hover {
    background-color: #1a3d6d;
}

.close-preferences {
    background-color: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.close-preferences:hover {
    background-color: #f5f5f5;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        overflow: visible;
    }

    .nav-list {
        flex-direction: row;
        gap: 2rem;
    }

    .nav-list li {
        border-bottom: none;
    }

    .nav-link {
        padding: 0.5rem 0;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: transparent;
    }

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

    .two-column {
        flex-direction: row;
    }

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

    .feature-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .philosophy-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

    .industry-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .comparison-row {
        flex-direction: row;
    }

    .comparison-cell {
        flex: 1;
        border-bottom: none;
        border-right: 1px solid #e0e0e0;
    }

    .comparison-cell:last-child {
        border-right: none;
    }

    .comparison-header .comparison-cell {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .comparison-header .comparison-cell:last-child {
        border-right: none;
    }

    .included-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .included-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .contact-info {
        flex: 1;
    }

    .contact-additional {
        flex: 1;
    }

    .enquiry-tips {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tip-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .thank-you-links {
        flex-direction: row;
        max-width: none;
    }

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

    .cookie-banner-buttons {
        flex-direction: row;
        flex-shrink: 0;
    }

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

    .footer-column {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

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

    .feature-card {
        flex: 1;
    }

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

    .philosophy-card {
        flex: 1;
    }

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

    .industry-item {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .included-features {
        flex-wrap: nowrap;
    }

    .included-item {
        flex: 1;
    }

    .enquiry-tips {
        flex-wrap: nowrap;
    }

    .tip-card {
        flex: 1;
    }
}