body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #444;
    background: #f7f8fc;
}

.email,
.email-marketing {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    opacity: 0;
    transform: scale(0.9) rotate(-10deg);
    animation: rotateIn 1s ease-out forwards;
}

.email-marketing {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.email-marketing h2 {
    font-size: 2rem;
    color: #4e54c8;
    margin-bottom: 20px;
}

.email-marketing p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.offer {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.offer h3 {
    background: #4e54c8;
    color: white;
    margin: 0;
    padding: 20px;
    font-size: 1.8rem;
}

.offer p {
    padding: 20px;
    margin: 0;
    font-size: 1rem;
    color: #666;
}

.offer ul {
    list-style: none;
    padding: 0 20px;
    margin: 0;
}

.offer ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.offer ul li:last-child {
    border-bottom: none;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745;
    text-align: center;
    padding: 15px;
}

.offer button {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    background: #4e54c8;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.offer button:hover {
    background: #3c43a8;
}

/* Animation */
@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: scale(0.9) rotate(-10deg);
    }
    50% {
        transform: scale(1.05) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}
