.marketing-section {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.marketing-section h1 {
    margin-top: 20px;
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    animation: slideIn 1s ease-out forwards;
    color: #00bcd4;
}

.marketing-section h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: #00d4ff;
    animation: expandLine 1s ease-out 0.5s forwards;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInScale 1.5s ease-out forwards;
    justify-content: center;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    transform: scale(0.9);
    animation: floatIn 1.2s ease-in-out;
    margin: 0 auto;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 70px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: rotate(15deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 15px 0;
    color: #007bff;
}

.service-card p {
    font-size: 1rem;
    color: #555;
}

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

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

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

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@media screen and (max-width: 768px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}
