
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @font-face {
		  font-family: 'TitreSite';
		  src: url('../fonts/Oswald-VariableFont_wght.ttf') format('truetype');
		  font-weight: normal;
		  font-style: normal;
		  font-display: swap;
		}

        body {
		  line-height: 1.7;
		  font-weight: 400;
		  font-size: 1rem; 
		  color:#454545;
		  font-family:Open Sans, sans-serif;
        }
		
		h1, h2, h3, h4, h5,
		.h1, .h2, .h3, .h4, .h5 {
		  font-family: "TitreSite", sans-serif;
		  text-transform: uppercase; 
		}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Top */
        .header-top {
            background: #fff;
            padding: 15px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .lang-switch {
            cursor: pointer;
            font-size: 24px;
        }

        .contact-info {
            display: flex;
            gap: 25px;
            font-size: 14px;
        }

        .contact-info a {
            color: #333;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .contact-info a:hover {
            color: #141146;
        }
		
		.slide3 {
			background-image: url(../images/slide3.jpg);
			background-size: cover;
			background-position: center;
		}

        /* Navigation */
        nav {
            background: #141146;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
			text-transform:uppercase;
        }

        .nav-links a:hover {
            color: #93c5fd;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: #f3f4f6;
            padding: 15px 0;
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 14px;
        }

        .breadcrumb-content a {
            color: #141146;
            text-decoration: none;
        }

        .breadcrumb-content a:hover {
            text-decoration: underline;
        }

        .breadcrumb-content span {
            color: #6b7280;
        }

        /* Page Header */
        .page-header {
            color: #fff;
            padding: 60px 0;
            text-align: center;
			text-shadow: 1px 1px 2px black;
        }

        .page-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
        }

        .page-header p {
            font-size: 18px;
            opacity: 0.9;
        }

        /* Main Content */
        .main-content {
            padding: 60px 0;
        }

        /* Intro Section */
        .intro-section {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .intro-section h2 {
            font-size: 32px;
            color: #141146;
            margin-bottom: 20px;
        }

        .intro-section p {
            font-size: 18px;
            color: #4b5563;
            margin-bottom: 15px;
        }

        /* Two Columns Layout */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 40px;
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .contact-form-wrapper h3 {
            font-size: 24px;
            color: #141146;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #374151;
        }

        .form-group label .required {
            color: #dc2626;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e5e7eb;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #141146;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-button {
            width: 100%;
            background: #141146;
            color: #fff;
            padding: 15px 30px;
            border: none;
            border-radius: 6px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-button:hover {
            background: #141146;
        }

        .form-note {
            margin-top: 15px;
            font-size: 14px;
            color: #6b7280;
        }

        /* Contact Info Box */
        .contact-info-box {
            background: #f9fafb;
            padding: 40px;
            border-radius: 8px;
            border: 2px solid #e5e7eb;
        }

        .contact-info-box h3 {
            font-size: 24px;
            color: #141146;
            margin-bottom: 25px;
        }

        .info-item {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #e5e7eb;
        }

        .info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .info-item-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: #141146;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .info-item h4 {
            font-size: 18px;
            color: #1f2937;
        }

        .info-item p {
            color: #4b5563;
            margin-left: 65px;
        }

        .info-item a {
            color: #141146;
            text-decoration: none;
        }

        .info-item a:hover {
            text-decoration: underline;
        }

        /* Map Section */
        .map-section {
            margin-top: 60px;
            background: #f3f4f6;
            padding: 60px 0;
        }

        .map-section h3 {
            font-size: 32px;
            color: #141146;
            text-align: center;
            margin-bottom: 30px;
        }

        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            font-size: 18px;
        }

        /* Business Hours */
        .business-hours {
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            margin-top: 25px;
        }

        .business-hours h5 {
            font-size: 16px;
            color: #141146;
            margin-bottom: 15px;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #f3f4f6;
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .day {
            color: #4b5563;
        }

        .time {
            color: #1f2937;
            font-weight: 600;
        }

                /* Footer */
        footer {
            background: #454545;
            color: #fff;
            padding: 40px 0 20px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            margin-bottom: 15px;
            color: #FFF;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section a {
            color: #d1d5db;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #fff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
			border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #9ca3af;
        }

        /* Success Message */
        .success-message {
            display: none;
            background: #d1fae5;
            border: 2px solid #10b981;
            color: #065f46;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 20px;
            text-align: center;
        }

        .success-message.show {
            display: block;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .contact-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #141146;
                padding: 20px;
                gap: 15px;
            }

            .nav-links.active {
                display: flex;
            }

            .contact-info {
                flex-direction: column;
                gap: 10px;
            }

            .page-header h1 {
                font-size: 32px;
            }

            .contact-form-wrapper,
            .contact-info-box {
                padding: 25px;
            }

            .info-item p {
                margin-left: 0;
                margin-top: 10px;
            }

            .map-container {
                height: 300px;
            }
        }
