 :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --accent-color: #3b82f6;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            padding-top: 80px; /* Account for fixed navbar */
        }

        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
        }

        .navbar-logo {
            height: 40px;
            margin-right: 10px;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%); /* Center the underline */
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: var(--gradient);
            color: white;
            padding: 6rem 0 4rem; /* Adjusted for fixed navbar */
            position: relative;
            overflow: hidden;
            margin-top: 0; /* Reset margin since body has padding */
        }
        .hero-parallax-content {
            transition: transform 0.1s ease-out; /* Smooth the parallax movement slightly */
        }

        .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 1000" opacity="0.1"><circle cx="200" cy="200" r="100" fill="white"/><circle cx="800" cy="300" r="150" fill="white"/><circle cx="400" cy="600" r="80" fill="white"/><circle cx="900" cy="700" r="120" fill="white"/></svg>') no-repeat center;
            background-size: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-image {
            position: relative;
            z-index: 2;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        /* Buttons */
        .btn-primary {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            background: white;
            color: var(--primary-color);
        }

        .btn-outline-primary {
            color: white;
            border-color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background: white;
            color: var(--primary-color);
            border-color: white;
            transform: translateY(-2px);
        }

        /* About Section */
        .about {
            padding: 5rem 0; /* Adjusted padding */
            background: var(--bg-light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem; /* Adjusted margin */
        }

        .section-title h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Publishing Images Section */
        .publishing-images {
            padding: 3rem 0;
            background: white;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .image-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 250px;
        }

        .image-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .image-card:hover img {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 1.5rem;
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .image-card:hover .image-overlay {
            opacity: 1;
        }

        .image-overlay h5 {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .image-overlay p {
            font-size: 0.9rem;
            margin: 0;
            opacity: 0.9;
        }

        /* Services */
        .services {
            padding: 5rem 0; /* Adjusted padding */
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            border: none;
            text-align: center;
        }

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

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .service-icon i {
            font-size: 1.8rem;
            color: white;
        }

        .service-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

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

        /* Features */
        .features {
            padding: 5rem 0; /* Adjusted padding */
            background: var(--bg-light);
        }

        .feature-item {
            display: flex;
            align-items: flex-start; /* Changed to flex-start for better alignment */
            margin-bottom: 2rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .feature-icon i {
            color: white;
            font-size: 1.2rem;
        }

        .feature-content h5 {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .feature-content p {
            color: var(--text-light);
            margin: 0;
        }

        /* Stats */
        .stats {
            padding: 4rem 0;
            background: var(--gradient);
            color: white;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            display: block;
        }

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

        /* Contact */
        .contact {
            padding: 5rem 0; /* Adjusted padding */
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-control {
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            padding: 12px 15px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
        }

        /* Map */
        .map-container {
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            margin-right: 0.5rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
        }

        .contact-info p {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-info p:hover {
            color: var(--primary-color);
        }

        /* WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            transition: all 0.3s ease;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
            color: white;
        }

        .whatsapp-button i {
            font-size: 30px;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 992px) {
            body {
                padding-top: 76px; /* Adjusted for mobile */
            }
            
            .hero {
                padding: 5rem 0 3rem; /* Adjusted for mobile */
                text-align: center;
            }
            
            .hero-content {
                margin-bottom: 3rem;
            }
            
            .service-card {
                margin-bottom: 2rem;
            }
            
            .contact-form {
                padding: 2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .section-title {
                margin-bottom: 2rem;
            }
            
            .about, .services, .features, .contact {
                padding: 4rem 0;
            }
            
            .image-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            
            .navbar-logo {
                height: 35px;
            }
        }

        @media (max-width: 768px) {
            .image-grid {
                grid-template-columns: 1fr;
            }
            
            .image-card {
                height: 200px;
            }
            
            .navbar-brand {
                font-size: 1.3rem;
            }
            
            .navbar-logo {
                height: 30px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 4rem 0 2rem;
            }
            
            .service-card {
                padding: 2rem;
            }
            
            .contact-form {
                padding: 1.5rem;
            }
            
            .whatsapp-button {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }
            
            .whatsapp-button i {
                font-size: 25px;
            }
            
            .navbar-logo {
                height: 25px;
                margin-right: 8px;
            }
            
            .navbar-brand {
                font-size: 1.1rem;
            }
        }
        /* ... (Keep all your existing CSS) ... */

/* Add these lines to the bottom of style.css */

.legal-page {
    background-color: #ffffff;
    padding-top: 100px; /* Space for the navbar */
}

.legal-page h1 {
    color: var(--primary-color);
    font-weight: 700;
}

.legal-page h4 {
    margin-top: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.legal-page p, .legal-page li {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Ensure navbar items link correctly from subpages */
.navbar-nav .nav-link {
    cursor: pointer;
}

/* Fix for parallax image sizing on mobile */
@media (max-width: 768px) {
    .hero-image img {
        margin-top: 2rem;
        width: 100%;
    }
}