        * {
            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;
        }

        /* 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;
        }
		
		.slide4 {
			background-image: url(../images/slide4.jpg);
			background-size: cover;
			background-position: center;
		}

        /* Main Content */
        .main-content {
            padding: 60px 0;
        }

        /* Intro Section */
        .intro-section {
            max-width: 900px;
            margin: 0 auto 60px;
            text-align: center;
        }

        .intro-section h2 {
            font-size: 32px;
            color: #141146;
            margin-bottom: 20px;
        }

        .intro-section p {
            font-size: 18px;
            color: #4b5563;
            line-height: 1.8;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 80px;
        }

        .service-card {
            background: #fff;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }
		
		.icon {
			text-align: center;
			color: #141146;
			font-size: 42px;
			width: 42px;
			height: 42px;
			line-height: 42px;
		}

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin: 0 auto 25px;
            color: #141146;
			border: 1px solid #141146
        }

        .service-card h3 {
            font-size: 22px;
            color: #141146;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #4b5563;
            font-size: 15px;
            line-height: 1.6;
        }

        /* Service Pricing Section */
        .service-pricing {
            background: #f9fafb;
            border-radius: 12px;
            padding: 50px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .service-pricing h2 {
            font-size: 32px;
            color: #141146;
            text-align: center;
            margin-bottom: 40px;
        }

        .pricing-category {
            margin-bottom: 40px;
        }

        .pricing-category:last-child {
            margin-bottom: 0;
        }

        .pricing-category h3 {
            font-size: 24px;
            color: #1f2937;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #141146;
        }

        .pricing-list {
            background: #fff;
            border-radius: 8px;
            padding: 20px;
        }

        .pricing-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .pricing-item:last-child {
            border-bottom: none;
        }

        .pricing-description {
            color: #4b5563;
            font-size: 16px;
            flex: 1;
            padding-right: 20px;
        }

        .pricing-amount {
            font-size: 22px;
            font-weight: bold;
            color: #141146;
            white-space: nowrap;
        }

        .pricing-note {
            background: #eff6ff;
            border-left: 4px solid #141146;
            padding: 15px;
            margin-top: 20px;
            border-radius: 4px;
            font-size: 14px;
            color: #141146;
        }

        /* CTA Section */
        .cta-section {
            background: #eff6ff;
            border: 2px solid #93c5fd;
            padding: 40px;
            text-align: center;
            border-radius: 8px;
            margin-top: 60px;
        }

        .cta-section h2 {
            font-size: 28px;
            margin-bottom: 15px;
            color: #141146;
        }

        .cta-section p {
            color: #4b5563;
            margin-bottom: 20px;
        }

        .cta-button {
            display: inline-block;
            background: #141146;
            color: #fff;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 18px;
            transition: background 0.3s;
            margin: 10px;
        }

        .cta-button:hover {
            background: #141146;
        }

        .cta-button.secondary {
            background: #fff;
            color: #141146;
            border: 2px solid #141146;
        }

        .cta-button.secondary:hover {
            background: #f0f9ff;
        }

        /* 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;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @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;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-pricing {
                padding: 30px 20px;
            }

            .pricing-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .pricing-description {
                padding-right: 0;
            }

            .cta-section {
                padding: 35px 25px;
            }

            .cta-section h3 {
                font-size: 24px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-button {
                width: 100%;
            }
        }
