.marketing1 {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.marketing1 h1 {
    font-size: 3rem;
    color: #7510d4;
    margin-bottom: 20px;
    font-weight: bold;
    animation: slideIn 1s ease-out forwards;
}

.marketing1 .catchy-text {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 30px;
    font-weight: 400;
}

.marketing1 .btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1rem;
    color: #fff;
    background-color: #ba3fd3;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.marketing1 .btn:hover {
    background-color: #008c9e;
    transform: translateY(-3px);
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .marketing1 h1 {
        font-size: 2.5rem;
    }

    .marketing1 .catchy-text {
        font-size: 1rem;
    }

    .marketing1 .btn {
        font-size: 1rem;
    }
}