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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo h1 {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #334155;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,0 1000,100"/></svg>');
    background-size: 100% 100%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    min-width: 160px;
}

.btn-primary {
    background: #fff;
    color: #2563eb;
    box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}

.btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.service-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-card a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.service-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1.5rem;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.service-link:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

/* Stats Section */
.stats {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.05"><circle cx="50" cy="50" r="2"/></svg>');
    background-size: 50px 50px;
}

.stats h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Featured Content */
.featured-content {
    padding: 120px 0;
    background: #fff;
}

.featured-content h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid #2563eb;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.content-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.3;
}

.content-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.content-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.content-card a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.1"><polygon points="50,0 100,50 50,100 0,50"/></svg>');
    background-size: 100px 100px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #334155, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.7;
    color: #cbd5e1;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #60a5fa;
    transform: translateX(3px);
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    padding: 0.8rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-image img {
        transform: none;
        height: 350px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.4s ease;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        padding: 3rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem 0;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .services, .stats, .featured-content, .cta {
        padding: 80px 0;
    }
    
    .services h2, .stats h2, .featured-content h2, .cta h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .services, .stats, .featured-content, .cta {
        padding: 60px 0;
    }
    
    .services h2, .stats h2, .featured-content h2, .cta h2 {
        font-size: 1.8rem;
    }
    
    .service-card, .content-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-menu a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta {
        display: none;
    }
    
    .hero {
        margin-top: 0;
        background: none;
        color: #000;
    }
    
    .service-card,
    .content-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Additional styles for openbaar-vervoer.html and other pages */

.logo a {
    text-decoration: none;
    color: inherit;
}

.nav-menu .active {
    color: #2563eb;
    font-weight: 600;
}

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

/* Page Hero Styles */
.page-hero {
    margin-top: 80px;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.05"><circle cx="50" cy="50" r="2"/></svg>');
    background-size: 50px 50px;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.page-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.breadcrumb a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #93c5fd;
}

/* OV Services Styles */
.ov-services {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.ov-services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.ov-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.ov-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.ov-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ov-card:hover::before {
    transform: scaleX(1);
}

.ov-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.ov-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.ov-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.3;
}

.ov-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.ov-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ov-card a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* OV Features Styles */
.ov-features {
    padding: 100px 0;
    background: #fff;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

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

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2563eb;
    font-weight: 600;
}

.feature-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

.features-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* OV Tips Styles */
.ov-tips {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.ov-tips h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.tip-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-left: 6px solid #2563eb;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.tip-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.3;
}

.tip-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.tip-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tip-card a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* OV Integration Styles */
.ov-integration {
    padding: 100px 0;
    background: #fff;
}

.ov-integration h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.integration-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.integration-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2563eb;
    font-weight: 600;
    line-height: 1.3;
}

.integration-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.integration-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.integration-card a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* CTA Section Styles */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.1"><polygon points="50,0 100,50 50,100 0,50"/></svg>');
    background-size: 100px 100px;
    animation: float 20s ease-in-out infinite;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.cta-section .cta-buttons {
    position: relative;
    z-index: 2;
}

/* Responsive adjustments for new elements */
@media (max-width: 1024px) {
    .features-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .features-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .ov-services, .ov-features, .ov-tips, .ov-integration, .cta-section {
        padding: 80px 0;
    }
    
    .ov-services h2, .ov-tips h2, .ov-integration h2 {
        font-size: 2.2rem;
    }
    
    .features-text h2, .cta-section h2 {
        font-size: 2rem;
    }
    
    .ov-grid, .tips-grid, .integration-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ov-card, .tip-card, .integration-card {
        padding: 2rem;
    }
    
    .feature-list {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 80px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .ov-services, .ov-features, .ov-tips, .ov-integration, .cta-section {
        padding: 60px 0;
    }
    
    .ov-services h2, .ov-tips h2, .ov-integration h2 {
        font-size: 1.8rem;
    }
    
    .features-text h2, .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .ov-card, .tip-card, .integration-card {
        padding: 1.5rem;
    }
    
    .ov-icon {
        font-size: 2.5rem;
    }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
}

/* Additional styles for carpooling.html */

/* Benefits Grid */
.carpooling-benefits {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.carpooling-benefits h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #10b981, #059669);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.3;
}

.benefit-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    text-align: left;
}

.benefit-card a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.benefit-card a:hover {
    color: #059669;
    text-decoration: underline;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: #fff;
}

.how-it-works h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.step-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Success Stories */
.success-stories {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.success-stories h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.story-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-left: 6px solid #10b981;
    position: relative;
}

.story-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #10b981;
    font-family: serif;
    opacity: 0.3;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.story-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #10b981;
    font-weight: 600;
}

.story-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    font-style: italic;
}

.story-card p:last-child {
    font-style: normal;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.story-card a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.story-card a:hover {
    color: #059669;
    text-decoration: underline;
}

/* Corporate Programs */
.corporate-programs {
    padding: 100px 0;
    background: #fff;
}

.corporate-programs h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.program-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #10b981;
    font-weight: 600;
    line-height: 1.3;
}

.program-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.program-card a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.program-card a:hover {
    color: #059669;
    text-decoration: underline;
}

/* Integration Section */
.integration-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.integration-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.integration-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.integration-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1e293b;
    font-weight: 600;
}

.integration-text h3:first-child {
    margin-top: 0;
}

.integration-text p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.integration-text a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.integration-text a:hover {
    color: #059669;
    text-decoration: underline;
}

.integration-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-box .stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive adjustments for carpooling page */
@media (max-width: 1024px) {
    .integration-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .integration-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-box {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .carpooling-benefits, .how-it-works, .success-stories, .corporate-programs, .integration-section {
        padding: 80px 0;
    }
    
    .carpooling-benefits h2, .how-it-works h2, .success-stories h2, .corporate-programs h2, .integration-section h2 {
        font-size: 2.2rem;
    }
    
    .benefits-grid, .stories-grid, .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card, .story-card, .program-card {
        padding: 2rem;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .integration-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .carpooling-benefits, .how-it-works, .success-stories, .corporate-programs, .integration-section {
        padding: 60px 0;
    }
    
    .carpooling-benefits h2, .how-it-works h2, .success-stories h2, .corporate-programs h2, .integration-section h2 {
        font-size: 1.8rem;
    }
    
    .benefit-card, .story-card, .program-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        font-size: 3rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-box .stat-number {
        font-size: 2rem;
    }
}

/* Additional styles for fiets-naar-werk.html */

/* Cycling Benefits */
.cycling-benefits {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.cycling-benefits h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

/* Route Planning */
.route-planning {
    padding: 100px 0;
    background: #fff;
}

.route-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.route-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.route-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.route-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #059669;
    font-weight: 600;
}

.route-feature p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

.route-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Bike Types */
.bike-types {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.bike-types h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.bikes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.bike-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.bike-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #059669, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bike-card:hover::before {
    transform: scaleX(1);
}

.bike-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.bike-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #059669;
    font-weight: 600;
    line-height: 1.3;
}

.bike-card p {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.bike-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bike-specs span {
    background: #f0fdf4;
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Workplace Facilities */
.workplace-facilities {
    padding: 100px 0;
    background: #fff;
}

.workplace-facilities h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.facility-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.facility-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #059669;
    font-weight: 600;
    line-height: 1.3;
}

.facility-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.facility-card a {
    color: #059669;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.facility-card a:hover {
    color: #047857;
    text-decoration: underline;
}

/* Safety Tips */
.safety-tips {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.safety-tips h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.safety-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-left: 6px solid #059669;
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.safety-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.3;
}

.safety-card ul {
    list-style: none;
    padding: 0;
}

.safety-card li {
    margin-bottom: 1rem;
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.safety-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* Employer Programs */
.employer-programs {
    padding: 100px 0;
    background: #fff;
}

.employer-programs h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.programs-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.programs-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1e293b;
    font-weight: 600;
}

.programs-text h3:first-child {
    margin-top: 0;
}

.programs-text p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.programs-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Environmental Impact */
.environmental-impact {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.environmental-impact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.impact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.impact-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1e293b;
    font-weight: 600;
}

.impact-text h3:first-child {
    margin-top: 0;
}

.impact-text p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.impact-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impact-stat {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #059669, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.impact-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Multimodal Cycling */
.multimodal-cycling {
    padding: 100px 0;
    background: #fff;
}

.multimodal-cycling h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.multimodal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.modal-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.modal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.modal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #059669;
    font-weight: 600;
    line-height: 1.3;
}

.modal-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.modal-card a {
    color: #059669;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.modal-card a:hover {
    color: #047857;
    text-decoration: underline;
}

/* Responsive adjustments for cycling page */
@media (max-width: 1024px) {
    .route-content, .programs-content, .impact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .route-image img {
        height: 300px;
    }
    
    .programs-stats, .impact-visual {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-box, .impact-stat {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .cycling-benefits, .route-planning, .bike-types, .workplace-facilities, .safety-tips, .employer-programs, .multimodal-cycling, .environmental-impact {
        padding: 80px 0;
    }
    
    .cycling-benefits h2, .bike-types h2, .workplace-facilities h2, .safety-tips h2, .employer-programs h2, .multimodal-cycling h2, .environmental-impact h2 {
        font-size: 2.2rem;
    }
    
    .route-text h2 {
        font-size: 2rem;
    }
    
    .benefits-grid, .bikes-grid, .facilities-grid, .safety-grid, .multimodal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card, .bike-card, .facility-card, .safety-card, .modal-card {
        padding: 2rem;
    }
    
    .route-features {
        gap: 1.5rem;
    }
    
    .programs-stats, .impact-visual {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cycling-benefits, .route-planning, .bike-types, .workplace-facilities, .safety-tips, .employer-programs, .multimodal-cycling, .environmental-impact {
        padding: 60px 0;
    }
    
    .cycling-benefits h2, .bike-types h2, .workplace-facilities h2, .safety-tips h2, .employer-programs h2, .multimodal-cycling h2, .environmental-impact h2 {
        font-size: 1.8rem;
    }
    
    .route-text h2 {
        font-size: 1.6rem;
    }
    
    .benefit-card, .bike-card, .facility-card, .safety-card, .modal-card {
        padding: 1.5rem;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .bike-specs {
        gap: 0.3rem;
    }
    
    .bike-specs span {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Additional styles for verkeersinformatie.html */

/* Traffic Dashboard */
.traffic-dashboard {
    padding: 100px 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}

.traffic-dashboard h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.traffic-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.traffic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.traffic-card:hover::before {
    transform: scaleX(1);
}

.traffic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.traffic-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.traffic-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.3;
}

.traffic-status {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.light {
    background: #10b981;
}

.status-indicator.moderate {
    background: #f59e0b;
}

.status-indicator.heavy {
    background: #ef4444;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.status-text {
    font-weight: 600;
    color: #1e293b;
}

.incident-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.incident-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 8px;
}

.incident-road {
    background: #3b82f6;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 40px;
    text-align: center;
}

.incident-desc {
    color: #64748b;
    font-size: 0.9rem;
}

.weather-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.weather-temp {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
}

.weather-desc {
    color: #64748b;
    font-weight: 500;
}

.traffic-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.traffic-card a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.traffic-card a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Traffic Sources */
.traffic-sources {
    padding: 100px 0;
    background: #fff;
}

.traffic-sources h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.source-card {
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.source-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.source-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #3b82f6;
    font-weight: 600;
    line-height: 1.3;
}

.source-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.source-card a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.source-card a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Roadworks Info */
.roadworks-info {
    padding: 100px 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}

.roadworks-info h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.roadworks-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.roadworks-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1e293b;
    font-weight: 600;
}

.roadworks-text h3:first-child {
    margin-top: 0;
}

.roadworks-text p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.roadworks-timeline {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-date {
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    height: fit-content;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 600;
}

.timeline-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Business Solutions */
.business-solutions {
    padding: 100px 0;
    background: #fff;
}

.business-solutions h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.business-card {
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.business-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #3b82f6;
    font-weight: 600;
    line-height: 1.3;
}

.business-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.business-card a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.business-card a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Technology Integration */
.technology-integration {
    padding: 100px 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}

.technology-integration h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.tech-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.tech-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1e293b;
    font-weight: 600;
}

.tech-text h3:first-child {
    margin-top: 0;
}

.tech-text p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.tech-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tech-stat {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.tech-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.tech-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.tech-stat .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Emergency Info */
.emergency-info {
    padding: 100px 0;
    background: #fff;
}

.emergency-info h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.emergency-card {
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(254, 226, 226, 0.8);
    text-align: center;
}

.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.emergency-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.emergency-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #dc2626;
    font-weight: 600;
    line-height: 1.3;
}

.emergency-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    text-align: left;
}

/* API Integration */
.api-integration {
    padding: 100px 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}

.api-integration h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.api-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.api-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.api-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.api-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #3b82f6;
    font-weight: 600;
    line-height: 1.3;
}

.api-card p {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.api-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.api-specs span {
    background: #f1f5f9;
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive adjustments for traffic page */
@media (max-width: 1024px) {
    .roadworks-content, .tech-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tech-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .roadworks-timeline {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .traffic-dashboard, .traffic-sources, .roadworks-info, .business-solutions, .technology-integration, .emergency-info, .api-integration {
        padding: 80px 0;
    }
    
    .traffic-dashboard h2, .traffic-sources h2, .roadworks-info h2, .business-solutions h2, .technology-integration h2, .emergency-info h2, .api-integration h2 {
        font-size: 2.2rem;
    }
    
    .dashboard-grid, .sources-grid, .business-grid, .emergency-grid, .api-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .traffic-card, .source-card, .business-card, .emergency-card, .api-card {
        padding: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-date {
        width: fit-content;
    }
    
    .tech-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .incident-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .weather-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .traffic-dashboard, .traffic-sources, .roadworks-info, .business-solutions, .technology-integration, .emergency-info, .api-integration {
        padding: 60px 0;
    }
    
    .traffic-dashboard h2, .traffic-sources h2, .roadworks-info h2, .business-solutions h2, .technology-integration h2, .emergency-info h2, .api-integration h2 {
        font-size: 1.8rem;
    }
    
    .traffic-card, .source-card, .business-card, .emergency-card, .api-card {
        padding: 1.5rem;
    }
    
    .traffic-icon, .emergency-icon {
        font-size: 2.5rem;
    }
    
    .tech-stat .stat-number {
        font-size: 1.8rem;
    }
    
    .weather-temp {
        font-size: 1.5rem;
    }
    
    .api-specs {
        gap: 0.3rem;
    }
    
    .api-specs span {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .roadworks-timeline {
        padding: 1.5rem;
    }
}

/* Additional styles for werkplek-veiligheid.html */

/* Safety Overview */
.safety-overview {
    padding: 100px 0;
    background: linear-gradient(180deg, #fef7f0 0%, #ffffff 100%);
}

.safety-overview h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.safety-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.safety-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.safety-card:hover::before {
    transform: scaleX(1);
}

.safety-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.safety-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.safety-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.3;
}

.safety-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.safety-card strong {
    color: #ea580c;
    font-weight: 600;
}

.safety-card a {
    color: #ea580c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.safety-card a:hover {
    color: #dc2626;
    text-decoration: underline;
}

/* Infrastructure Maintenance */
.infrastructure-maintenance {
    padding: 100px 0;
    background: #fff;
}

.maintenance-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.maintenance-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.maintenance-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.maintenance-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #ea580c;
    font-weight: 600;
}

.maintenance-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

.maintenance-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Case Studies */
.case-studies {
    padding: 100px 0;
    background: linear-gradient(180deg, #fef7f0 0%, #ffffff 100%);
}

.case-studies h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.case-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-left: 6px solid #ea580c;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ea580c;
    font-weight: 600;
    line-height: 1.3;
}

.case-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.case-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.case-specs span {
    background: #fef7f0;
    color: #ea580c;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Safety Standards */
.safety-standards {
    padding: 100px 0;
    background: #fff;
}

.safety-standards h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.standards-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.standards-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1e293b;
    font-weight: 600;
}

.standards-text h3:first-child {
    margin-top: 0;
}

.standards-text p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.standards-text a {
    color: #ea580c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.standards-text a:hover {
    color: #dc2626;
    text-decoration: underline;
}

.standards-certifications {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cert-item {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.cert-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ea580c;
    font-weight: 600;
}

.cert-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Technology Integration */
.technology-integration {
    padding: 100px 0;
    background: linear-gradient(180deg, #fef7f0 0%, #ffffff 100%);
}

.technology-integration h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.tech-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.tech-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ea580c;
    font-weight: 600;
    line-height: 1.3;
}

.tech-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

/* Emergency Procedures */
.emergency-procedures {
    padding: 100px 0;
    background: #fff;
}

.emergency-procedures h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.emergency-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.emergency-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1e293b;
    font-weight: 600;
}

.emergency-text h3:first-child {
    margin-top: 0;
}

.emergency-text p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.emergency-checklist {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 20px;
    border-left: 6px solid #dc2626;
}

.emergency-checklist h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #dc2626;
    font-weight: 600;
}

.emergency-checklist ul {
    list-style: none;
    padding: 0;
}

.emergency-checklist li {
    margin-bottom: 1rem;
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.emergency-checklist li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Workplace Mobility */
.workplace-mobility {
    padding: 100px 0;
    background: linear-gradient(180deg, #fef7f0 0%, #ffffff 100%);
}

.workplace-mobility h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.mobility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.mobility-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.mobility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.mobility-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ea580c;
    font-weight: 600;
    line-height: 1.3;
}

.mobility-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.mobility-card a {
    color: #ea580c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobility-card a:hover {
    color: #dc2626;
    text-decoration: underline;
}

/* Contact Dakdekker */
.contact-dakdekker {
    padding: 100px 0;
    background: #fff;
}

.contact-dakdekker h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ea580c;
    font-weight: 600;
}

.contact-info p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.contact-details {
    background: #fef7f0;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 1rem;
}

.contact-item strong {
    color: #1e293b;
    font-weight: 600;
}

.contact-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.specialties-list {
    list-style: none;
    padding: 0;
}

.specialties-list li {
    margin-bottom: 0.8rem;
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.specialties-list li::before {
    content: '🔧';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 600;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

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

.quote-form .btn {
    margin-top: 1rem;
    align-self: flex-start;
}

/* Responsive adjustments for workplace safety page */
@media (max-width: 1024px) {
    .maintenance-content, .standards-content, .emergency-content, .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .maintenance-image img {
        height: 300px;
    }
    
    .standards-certifications {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cert-item {
        flex: 1;
        min-width: 200px;
    }
    
    .emergency-checklist {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .safety-overview, .infrastructure-maintenance, .case-studies, .safety-standards, .technology-integration, .emergency-procedures, .workplace-mobility, .contact-dakdekker {
        padding: 80px 0;
    }
    
    .safety-overview h2, .case-studies h2, .safety-standards h2, .technology-integration h2, .emergency-procedures h2, .workplace-mobility h2, .contact-dakdekker h2 {
        font-size: 2.2rem;
    }
    
    .maintenance-text h2 {
        font-size: 2rem;
    }
    
    .safety-grid, .cases-grid, .tech-grid, .mobility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .safety-card, .case-card, .tech-card, .mobility-card {
        padding: 2rem;
    }
    
    .maintenance-features {
        gap: 1.5rem;
    }
    
    .standards-certifications {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .case-specs {
        gap: 0.3rem;
    }
    
    .case-specs span {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .safety-overview, .infrastructure-maintenance, .case-studies, .safety-standards, .technology-integration, .emergency-procedures, .workplace-mobility, .contact-dakdekker {
        padding: 60px 0;
    }
    
    .safety-overview h2, .case-studies h2, .safety-standards h2, .technology-integration h2, .emergency-procedures h2, .workplace-mobility h2, .contact-dakdekker h2 {
        font-size: 1.8rem;
    }
    
    .maintenance-text h2 {
        font-size: 1.6rem;
    }
    
    .safety-card, .case-card, .tech-card, .mobility-card {
        padding: 1.5rem;
    }
    
    .safety-icon {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-details {
        padding: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .quote-form .btn {
        width: 100%;
        text-align: center;
    }
}

/* Additional styles for bedrijfsoplossingen.html */

/* Business Overview */
.business-overview {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.business-overview h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.business-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.business-card:hover::before {
    transform: scaleX(1);
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.business-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.business-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.3;
}

.business-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.business-card a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.business-card a:hover {
    color: #0284c7;
    text-decoration: underline;
}

/* Corporate Benefits */
.corporate-benefits {
    padding: 100px 0;
    background: #fff;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

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

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #0ea5e9;
    font-weight: 600;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

.benefits-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Implementation Process */
.implementation-process {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.implementation-process h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.step-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Client Showcase */
.client-showcase {
    padding: 100px 0;
    background: #fff;
}

.client-showcase h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.client-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.client-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #0ea5e9;
    font-weight: 600;
    line-height: 1.3;
}

.client-card p {
    margin-bottom: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.client-results {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.client-results span {
    background: #f0f9ff;
    color: #0ea5e9;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Service Packages */
.service-packages {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.service-packages h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    position: relative;
}

.package-card.professional {
    border-color: #0ea5e9;
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.package-card.professional:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.package-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: #0ea5e9;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0 0 10px;
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.package-features {
    padding: 0 2rem 1rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features li {
    margin-bottom: 0.8rem;
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.package-ideal {
    padding: 1rem 2rem 2rem;
    color: #64748b;
    font-size: 0.9rem;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

/* Infrastructure Services */
.infrastructure-services {
    padding: 100px 0;
    background: #fff;
}

.infrastructure-services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.infra-card {
    background: linear-gradient(135f, #f0f9ff 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.infra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.infra-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #0ea5e9;
    font-weight: 600;
    line-height: 1.3;
}

.infra-card p {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.infra-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.infra-services span {
    background: #f0f9ff;
    color: #0ea5e9;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

/* Technology Platform */
.technology-platform {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.technology-platform h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.platform-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1e293b;
    font-weight: 600;
}

.platform-text h3:first-child {
    margin-top: 0;
}

.platform-text p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.platform-text a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.platform-text a:hover {
    color: #0284c7;
    text-decoration: underline;
}

.platform-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-box {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #0ea5e9;
    font-weight: 600;
}

.feature-box p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Sustainability Focus */
.sustainability-focus {
    padding: 100px 0;
    background: #fff;
}

.sustainability-focus h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.sustainability-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
}

.sustainability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.sustain-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.sustainability-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #059669;
    font-weight: 600;
    line-height: 1.3;
}

.sustainability-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    text-align: left;
}

/* Getting Started */
.getting-started {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.getting-started h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.getting-started-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.start-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1e293b;
    font-weight: 600;
}

.start-text h3:first-child {
    margin-top: 0;
}

.start-text p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

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

.start-step {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.start-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.start-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 600;
}

.start-step p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive adjustments for business solutions page */
@media (max-width: 1024px) {
    .benefits-content, .platform-content, .getting-started-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .benefits-image img {
        height: 300px;
    }
    
    .process-timeline {
        max-width: 600px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .package-card.professional {
        transform: none;
    }
    
    .package-card.professional:hover {
        transform: translateY(-5px);
    }
    
    .infra-services {
        grid-template-columns: 1fr;
    }
    
    .platform-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .business-overview, .corporate-benefits, .implementation-process, .client-showcase, .service-packages, .infrastructure-services, .technology-platform, .sustainability-focus, .getting-started {
        padding: 80px 0;
    }
    
    .business-overview h2, .client-showcase h2, .service-packages h2, .infrastructure-services h2, .technology-platform h2, .sustainability-focus h2, .getting-started h2 {
        font-size: 2.2rem;
    }
    
    .benefits-text h2, .implementation-process h2 {
        font-size: 2rem;
    }
    
    .business-grid, .showcase-grid, .infrastructure-grid, .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .business-card, .client-card, .infra-card, .sustainability-card {
        padding: 2rem;
    }
    
    .benefit-list {
        gap: 1.5rem;
    }
    
    .process-timeline {
        gap: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .platform-features {
        grid-template-columns: 1fr;
    }
    
    .start-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .client-results {
        gap: 0.3rem;
    }
    
    .client-results span {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .business-overview, .corporate-benefits, .implementation-process, .client-showcase, .service-packages, .infrastructure-services, .technology-platform, .sustainability-focus, .getting-started {
        padding: 60px 0;
    }
    
    .business-overview h2, .client-showcase h2, .service-packages h2, .infrastructure-services h2, .technology-platform h2, .sustainability-focus h2, .getting-started h2 {
        font-size: 1.8rem;
    }
    
    .benefits-text h2, .implementation-process h2 {
        font-size: 1.6rem;
    }
    
    .business-card, .client-card, .infra-card, .sustainability-card {
        padding: 1.5rem;
    }
    
    .business-icon, .sustain-icon {
        font-size: 2.5rem;
    }
    
    .package-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .package-features {
        padding: 0 1.5rem 1rem;
    }
    
    .package-ideal {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .infra-services {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
    
    .infra-services span {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .feature-box {
        padding: 1.5rem;
    }
    
    .start-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Additional styles for contact.html */

/* Contact Options */
.contact-options {
    padding: 100px 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}

.contact-options h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.contact-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.3;
}

.contact-card p {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

.contact-card a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #7c3aed;
    text-decoration: underline;
}

.contact-details {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #8b5cf6;
}

.contact-details p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #64748b;
}

.contact-details strong {
    color: #1e293b;
    font-weight: 600;
}

/* Contact Forms */
.contact-forms {
    padding: 100px 0;
    background: #fff;
}

.contact-forms h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

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

.form-tabs {
    display: flex;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 0.5rem;
    margin-bottom: 3rem;
    gap: 0.5rem;
}

.tab-button {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.tab-button.active {
    background: #fff;
    color: #8b5cf6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tab-button:hover {
    color: #8b5cf6;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

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

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.checkbox-label:hover {
    background: #f1f5f9;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    margin-right: 0.8rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #8b5cf6;
    border-color: #8b5cf6;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Office Locations */
.office-locations {
    padding: 100px 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}

.office-locations h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.location-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #8b5cf6;
    font-weight: 600;
    line-height: 1.3;
}

.location-details {
    margin-bottom: 2rem;
}

.location-details p {
    margin-bottom: 1rem;
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

.location-details strong {
    color: #1e293b;
    font-weight: 600;
}

.location-services h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.location-services ul {
    list-style: none;
    padding: 0;
}

.location-services li {
    margin-bottom: 0.5rem;
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.location-services li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.faq-category h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #8b5cf6;
    font-weight: 600;
    text-align: center;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #8b5cf6;
    font-weight: bold;
    margin-left: 1rem;
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.7;
}

/* Response Times */
.response-times {
    padding: 100px 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}

.response-times h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -1px;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.guarantee-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.guarantee-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #8b5cf6;
    font-weight: 600;
    line-height: 1.3;
}

.guarantee-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    text-align: left;
}

.guarantee-card strong {
    color: #1e293b;
    font-weight: 600;
}

/* Responsive adjustments for contact page */
@media (max-width: 1024px) {
    .form-tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .tab-button {
        border-radius: 0;
        padding: 1rem;
    }
    
    .tab-button:first-child {
        border-radius: 8px 8px 0 0;
    }
    
    .tab-button:last-child {
        border-radius: 0 0 8px 8px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-options, .contact-forms, .office-locations, .faq-section, .response-times {
        padding: 80px 0;
    }
    
    .contact-options h2, .contact-forms h2, .office-locations h2, .faq-section h2, .response-times h2 {
        font-size: 2.2rem;
    }
    
    .contact-grid, .locations-grid, .faq-grid, .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card, .location-card, .guarantee-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .tab-button {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    
    .contact-details {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-options, .contact-forms, .office-locations, .faq-section, .response-times {
        padding: 60px 0;
    }
    
    .contact-options h2, .contact-forms h2, .office-locations h2, .faq-section h2, .response-times h2 {
        font-size: 1.8rem;
    }
    
    .contact-card, .location-card, .guarantee-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-icon, .guarantee-icon {
        font-size: 2.5rem;
    }
    
    .forms-container {
        margin: 0 1rem;
    }
    
    .tab-button {
        font-size: 0.8rem;
        padding: 0.7rem 0.8rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
        margin-right: 0.6rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
}

/* Form validation styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
}

.checkbox-group.error {
    border: 2px solid #ef4444;
    border-radius: 8px;
    padding: 1rem;
}

/* Success message styles */
.success-message {
    background: #f0fdf4;
    color: #166534;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
    margin-bottom: 1rem;
    display: none;
}

.success-message.show {
    display: block;
}