/* General Reset & Body Styles */
        body, h1, h2, h3, p, ul, li, form, input, textarea, button, select {
            margin: 0;
            padding: 0;
            border: 0;
            font-size: 100%;
            font: inherit;
            vertical-align: baseline;
            box-sizing: border-box;
        }
        ul {
            list-style: none;
        }
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #e0ffe0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            flex-grow: 1;
        }

        /* Header Styles (Consistent) */
        header {
            background-color: #fff;
            padding: 15px 20px; /* Adjusted padding to match other pages */
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Adjusted shadow */
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo-image {
            height: 60px; /* Consistent logo size */
            width: auto;
        }
        nav ul {
            display: flex;
            gap: 25px;
            align-items: center;
        }
        nav a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            padding: 5px 0;
            transition: color 0.3s ease, border-bottom 0.3s ease;
            position: relative;
        }
        nav a:hover,
        nav a.current {
            color: #007bff;
            border-bottom: 2px solid #007bff;
        }

        /* Page Hero Section */
        .page-hero {
            background-image: url('Fuji.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }
        .page-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        .page-hero h1 {
            font-size: 48px;
            margin-bottom: 15px;
            color: #1a2b47;
            font-family: 'Merriweather', serif;
        }
        .page-hero p {
            font-size: 22px;
            color: #1a2b47;
        }

        /* Contact Section */
        .contact-section {
            padding: 60px 20px;
        }
        .contact-content {
            display: flex;
            gap: 40px;
            background-color: #e6f2ff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        .contact-form-section,
        .contact-info-section {
            flex: 1;
        }
        .contact-form-section h2,
        .contact-info-section h2 {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #2c3e50;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: #444;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .btn-submit {
            background-color: #007bff;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        .btn-submit:hover {
            background-color: #0056b3;
        }

        .contact-info-section p {
            font-size: 18px;
            margin-bottom: 15px;
            color: #555;
        }
        .contact-info-section a {
            color: #007bff;
            text-decoration: underline;
        }
        .map-container {
            margin-top: 30px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Footer Styles */
        footer {
            background-color: #1a2b47;
            color: white;
            padding: 40px 20px;
            text-align: center;
            font-size: 15px;
            margin-top: auto;
        }
        footer .company-info {
            margin-bottom: 15px;
        }
        footer .legal-links a {
            color: #a0aec0;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        footer .legal-links a:hover {
            color: white;
        }
        footer .company-info p {
            margin-bottom: 5px;
        }

        /* Language Toggle Button */
        #language-toggle {
            background-color: #e0e0e0;
            color: #333;
            padding: 8px 12px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.2s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        #language-toggle:hover {
            background-color: #ccc;
        }
        #language-toggle i {
            font-size: 1em;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 15px;
                padding: 15px 10px;
            }
            nav ul {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            .logo-image {
                height: 40px; /* Smaller logo on mobile */
            }
            .page-hero {
                padding: 40px 15px;
            }
            .page-hero h1 {
                font-size: 38px;
            }
            .page-hero p {
                font-size: 18px;
            }
            .contact-content {
                flex-direction: column;
                gap: 20px;
            }
            .contact-section {
                padding: 30px 15px;
            }
            .contact-form-section h2,
            .contact-info-section h2 {
                font-size: 28px;
                margin-bottom: 20px;
            }
            .contact-info-section p {
                font-size: 16px;
            }
            footer {
                padding: 30px 15px;
            }
        }