/* Reset & base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body, html {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            height: 100%;
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

        /* Top image */
        .top-image {
            width: 100%;
            height: 50vh;
            background-image: url('https://images.unsplash.com/photo-1516387938699-a93567ec168e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
        }

        .top-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .top-image-text {
            position: relative;
            color: white;
            text-align: center;
            max-width: 800px;
            padding: 20px;
            z-index: 1;
        }

        .top-image-text h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }

        .top-image-text p {
            font-size: 1.2rem;
        }

        /* Container for bottom content */
        .contact-container {
            max-width: 1200px;
            margin: 0 auto 60px;
            background: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: flex;
            gap: 40px;
            padding: 40px;
            border-radius: 12px;
            flex-wrap: wrap;
        }

        /* Left side - form */
        .contact-form {
            flex: 1 1 400px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-header {
            margin-bottom: 10px;
        }

        .form-header h2 {
            color: #010349;
            font-size: 1.8rem;
        }

        .form-header p {
            color: #666;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .contact-form label {
            font-weight: bold;
            margin-bottom: 6px;
            display: block;
            color: #333;
        }

        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            padding: 12px;
            font-size: 1em;
            border: 1px solid #ddd;
            border-radius: 6px;
            resize: vertical;
            width: 100%;
            font-family: inherit;
            transition: border 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            border-color: #010242;
            outline: none;
            box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
        }

        .contact-form textarea {
            min-height: 120px;
        }

        .error {
            color: #dc3545;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }

        .input-error {
            border-color: #dc3545;
        }

        .contact-form button {
            padding: 14px 28px;
            font-size: 1.1em;
            background-color: #660303;
            border: none;
            color: white;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 150px;
            align-self: flex-start;
            margin-top: 10px;
        }

        .contact-form button:hover {
            background-color: #010253;
        }

        .success-message {
            background-color: #d4edda;
            color: #155724;
            padding: 12px;
            border-radius: 6px;
            margin-top: 20px;
            display: none;
        }

        /* Right side - contact info - FIXED COLORS */
        .contact-info {
            flex: 1 1 300px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            font-size: 1em;
            color: #444;
        }

        .contact-info-header h2 {
            color: #000958;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .contact-info p {
            line-height: 1.6;
            color: #333; /* Fixed: Changed from white to dark gray */
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .info-item i {
            color: #020a50;
            font-size: 1.2rem;
            min-width: 24px;
        }

        .info-content h3 {
            margin-bottom: 5px;
            color: #222; /* Fixed: Changed from white to dark gray */ 
        }
        .contact-info h3,
        .contact-info p {
         color: #222 !important;
         font-weight: 600 !important;
        }

        /* Business hours */
        .business-hours {
            margin-top: 10px;
        }

        .hours-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }

        .hours-table tr {
            border-bottom: 1px solid #eee;
        }

        .hours-table td {
            padding: 8px 0;
            color: #333; /* Fixed: Changed from white to dark gray */
        }

        .hours-table td:last-child {
            text-align: right;
        }

        /* Social media icons */
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #f5f5f5;
            color: hsl(241, 93%, 17%);
            border-radius: 50%;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            color: white;
            background-color: oklch(20.321% 0.12955 269.352);
            transform: translateY(-3px);
        }

        /* Map */
        .map-container {
            margin-top: 30px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 200px;
            border: none;
        }

        /* Spacer between sections */
        .section-spacer {
            height: 40px;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .contact-container {
                flex-direction: column;
                margin: 0 20px 40px;
                padding: 30px;
            }
            
            .top-image-text h1 {
                font-size: 2.2rem;
            }
            
            .top-image-text p {
                font-size: 1rem;
            }
            
            .contact-form button {
                width: 100%;
            }
            
            .top-image {
                height: 40vh;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 480px) {
            .contact-container {
                padding: 20px;
            }
            
            .top-image {
                height: 35vh;
                margin-bottom: 20px;
            }
            
            .section-spacer {
                height: 20px;
            }
        }

        /* Footer base */
        footer {
            background-color: #001f4d;
            color: white;
            font-family: Arial, sans-serif;
        }

        /* Main container */
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 40px 20px 0;
            gap: 30px;
        }

        /* Footer sections */
        .footer-left, .footer-center, .footer-right {
            padding: 0 15px;
            box-sizing: border-box;
        }

        /* Left section */
        .footer-left {
            flex: 1 1 250px;
            min-width: 250px;
        }

        .footer-left img {
            max-width: 100px;
            margin: 0 auto 20px;
            display: block;
        }

        .about-box {
            background-color: #003366;
            border-radius: 8px;
            padding: 30px 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
            font-size: 0.95em;
            line-height: 1.5;
            color: #ddd;
        }

        /* Center section */
        .footer-center {
            flex: 2 1 350px;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .footer-heading {
            font-size: 1.3em;
            margin-bottom: 15px;
            color: white;
            font-weight: bold;
            width: 100%;
            text-align: center;
        }

        .footer-nav {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
        }

        .footer-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1em;
            text-decoration: none;
            transition: color 0.3s ease;
            white-space: nowrap;
            padding: 5px 0;
        }

        .footer-nav a:hover {
            color: #f44336;
        }

        .newsletter-form {
            width: 100%;
            max-width: 350px;
        }

        .newsletter-form label {
            font-weight: 600;
            font-size: 1.1em;
            margin-bottom: 8px;
            display: block;
            text-align: center;
            color: white;
        }

        .email-input-group {
            display: flex;
            gap: 10px;
            width: 100%;
        }

        .email-input-group input {
            padding: 12px 15px;
            border-radius: 30px;
            border: none;
            flex: 1;
            font-size: 1em;
        }

        .email-input-group button {
            background-color: #f44336;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .email-input-group button:hover {
            background-color: #d32f2f;
        }

        /* Right section */
        .footer-right {
            flex: 1 1 250px;
            min-width: 250px;
        }

        .footer-contact-info {
            margin-bottom: 25px;
        }

        .footer-contact-info strong {
            font-size: 1.3em;
            color: white;
            display: block;
            margin-bottom: 15px;
            white-space: nowrap;
        }

        .footer-contact-info p {
            margin: 8px 0;
            font-size: 0.95em;
            display: flex;
            align-items: center;
            color: #ddd;
            line-height: 1.4;
        }

        .footer-contact-info i {
            margin-right: 10px;
            color: #ffffff;
            width: 20px;
            text-align: center;
        }

        .social-links {
            display: flex;
            gap: 15px;
            justify-content: center;
            width: 100%;
            margin-top: 15px;
        }

        .social-links a {
            color: white;
            font-size: 1.5em;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .social-links a:hover {
            color: #f44336;
            background-color: rgba(255, 255, 255, 0.2);
        }

        /* Copyright section */
        .copyright {
            background-color: #001732;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding: 20px;
            text-align: center;
            font-size: 0.9em;
            width: 100%;
            color: #ccc;
        }

        /* Responsive adjustments */
        @media (max-width: 900px) {
            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 40px;
            }

            .footer-left, .footer-center, .footer-right {
                align-items: center;
                text-align: center;
                width: 100%;
            }

            .footer-contact-info p {
                justify-content: center;
            }

            .footer-nav {
                flex-direction: column;
                gap: 15px;
            }

            .email-input-group {
                flex-direction: column;
            }

            .email-input-group button {
                width: 100%;
                margin-top: 10px;
            }
            
            .social-links {
                justify-content: center;
            }
        }

        .user-generated-content {
  color: #333; /* Sets a default pleasant dark gray */
  line-height: 1.6;
}

/* This rule is the key: it forces ANY tag inside the container to inherit our styles */
.user-generated-content * {
  color: inherit !important;
  background-color: inherit !important;
  font-family: inherit !important;
  /* Add any other properties you want to enforce, like font-size */
}