
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Open Sans', sans-serif;
        }

        body {
            background: #f5f5f5;
        }

        /* Navbar */
        .navbar {
            background: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 80px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .navbar ul {
            list-style: none;
            display: flex;
            gap: 25px;
        }

        .navbar a {
            text-decoration: none;
            color: #555;
            font-weight: 600;
        }

        .navbar a:hover {
            color: #ff5a3c;
        }

        /* Hero Section */
        .hero {
            background: url('https://images.unsplash.com/photo-1509395176047-4a66953fd231') no-repeat center center/cover;
            height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
        }

        .hero h1 {
            font-size: 42px;
            font-weight: 600;
        }

        .hero p {
            margin-top: 10px;
            font-size: 18px;
        }

        .btn {
            margin-top: 20px;
            padding: 12px 30px;
            background: #ff5a3c;
            color: white;
            border: none;
            cursor: pointer;
            font-weight: 600;
            border-radius: 3px;
        }

        .btn:hover {
            background: #e94e2f;
        }

        /* Features */
        .features {
            text-align: center;
            padding: 60px 80px;
            background: #fff;
        }

        .features h2 {
            margin-bottom: 40px;
            color: #444;
        }

        .feature-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .feature {
            width: 250px;
            margin: 20px;
        }

        .feature i {
            font-size: 50px;
            color: #ff5a3c;
            margin-bottom: 15px;
        }

        /* Call to Action */
        .cta {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f2e5df;
            padding: 50px;
            gap: 40px;
        }

        .cta img {
            width: 300px;
            border-radius: 5px;
        }

        .cta-text {
            max-width: 400px;
        }

        .cta-text p {
            font-style: italic;
            margin-bottom: 20px;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 30px;
            background: #fff;
            color: #777;
        }