
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
            color: #333;
        }
        header {
            display: flex;
            justify-content: space-between;
            padding: 20px 40px;
            background-color:#f5f5f5;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        header a {
            font-size: 1.0rem;
            text-decoration: none;
            color: black;
        }
        
        nav a{
            margin: 0 10px;
            text-decoration: none;
            color: black;
            justify-content: space-between;
            padding: 10px;
        }

        .main-content {
            display: flex;
            justify-content: space-between;
            padding: 50px;
            align-items: center;
        }
        .text-section {
            max-width: 50%;
        }
        .text-section h2 {
            font-size: 2.5rem;
            color: #5a5a5a;
        }
        .text-section p {
            font-size: 1rem;
            color: #777;
            line-height: 1.5;
            margin-bottom: 30px;
        }
        .cta-buttons {
            display: flex;
            gap: 20px;
        }
        .cta-buttons a {
            padding: 15px 25px;
            background-color: #2f8c6d;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .cta-buttons a:hover {
            background-color: #1a6b4f;
        }
        .image-section {
            position: relative;
            width: 400px;
            height:auto;
            
        }

        .image-section img {
            max-width: 100%;
            border-radius: 20px;

        }

            .img-floating {
                width: 400px;
                animation: float 2s ease-in-out infinite;
            }

            @keyframes float{
                0% {
                    transform: translateY(0px);
                }
                50% {
                    transform: translateY(-20px);
                }
                100% {
                    transform: translateY(0px);
                }
            }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            background: rgba(255, 255, 255, 0.6);
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }

        
        