
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background-color: #f8f4f5;
            color: #222;
            line-height: 1.6;
        }

        header {
            background-color: #0b1f3a;
            color: white;
            padding: 20px;
            text-align: center;
        }

        header h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }

        nav {
            background-color: #123c69;
            padding: 12px;
            text-align: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-weight: bold;
        }

        nav a:hover {
            color: #ffd700;
        }

        .hero {
            background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1200&q=80");
            background-size: cover;
            background-position: center;
            color: rgb(206, 194, 194);
            text-align: center;
            padding: 90px 20px;
        }

        .hero h2 {
            font-size: 42px;
            margin-bottom: 15px;
            color: white;
        }

        .hero p {
            font-size: 20px;
            max-width: 800px;
            margin: auto;
        }

        .btn {
            display: inline-block;
            margin-top: 25px;
            background-color: #ff9800;
            color: rgba(229, 219, 219, 0.904);
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
        }

        .btn:hover {
            background-color: #e68900;
        }

        section {
            padding: 50px 8%;
        }

        section h2 {
            text-align: center;
            font-size: 32px;
            margin-bottom: 30px;
            color: #0b1f3a;
        }

        .about {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .products {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: 0.3s;
        }

        .card:hover {
            transform: translateY(-6px);
        }

        .card img {
            width: 100%;
            height: 190px;
            object-fit: cover;
        }

        .card-content {
            padding: 20px;
        }

        .card-content h3 {
            color: #123c69;
            margin-bottom: 10px;
        }

        .price {
            color: #008000;
            font-weight: bold;
            font-size: 18px;
            margin: 10px 0;
        }

        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .service-box {
            background-color: white;
            padding: 25px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .service-box h3 {
            color: #0b1f3a;
            margin-bottom: 10px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: center;
        }

        th {
            background-color: #123c69;
            color: white;
        }

        form {
            background-color: white;
            max-width: 650px;
            margin: auto;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        label {
            display: block;
            margin-top: 15px;
            font-weight: bold;
        }

        input, select, textarea {
            width: 100%;
            padding: 12px;
            margin-top: 6px;
            border: 1px solid #ccc;
            border-radius: 6px;
        }

        button {
            margin-top: 20px;
            background-color: #0b1f3a;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
        }

        button:hover {
            background-color: #ff9800;
        }

        footer {
            background-color: #0b1f3a;
            color: white;
            text-align: center;
            padding: 25px;
            margin-top: 40px;
        }

        @media (max-width: 700px) {
            header h1 {
                font-size: 28px;
            }

            .hero h2 {
                font-size: 30px;
            }

            nav a {
                display: block;
                margin: 8px 0;
            }
        }