/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: url('https://i.ibb.co/xKKHHmNq/image.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    padding: 20px;
    text-align: center;
    min-height: 100vh;
}

.container {
    max-width: 450px;
    background: rgba(255, 255, 255, 0.8); /* Transparent white background */
    padding: 25px;
    margin: 50px auto;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.promo-image {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    color: #333;
}

p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

.search-bar {
    width: 90%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #ff416c;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

.cta-button {
    display: block;
    background: #ff416c;
    color: white;
    padding: 14px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.cta-button:hover {
    background: #e0345b;
    transform: scale(1.05);
}

.features {
    margin-top: 30px;
}

.features h2 {
    font-size: 20px;
    color: #333;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    font-size: 16px;
    color: #444;
    background: #f8f8f8;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}
