<style>
        .header img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .carousel {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            margin: 15px 0;
        }
        .carousel img {
            width: 150px;
            height: 100px;
            object-fit: cover;
            border-radius: 5px;
            cursor: pointer;
        }
        h2 {
            color: #b1078d;
            border-bottom: 2px solid #b1078d;
            padding-bottom: 5px;
            padding-top: 15px;

        }
        
        .cta {
            text-align: center;
            margin-top: 20px;
        }
        .cta a {
            background-color: #90157b;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
        }
        .cta a:hover {
            background-color: #e67e22;
        }
    </style>