* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #f5f8fc, #e0e7ef);
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
}

.marketing-section .title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
    animation: fadeInDown 1s ease-in;
}

.marketing-section .subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    animation: fadeIn 1.5s ease-in-out;
}

.box {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 1s ease-in;
}

.box h2,
.box h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.steps ul,
.help ul {
    list-style-type: none;
    padding-left: 0;
}

.steps ul li,
.help ul li {
    margin-bottom: 0.75rem;
}

.checklist li::before {
    content: "✓ ";
    color: green;
    font-weight: bold;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.services span {
    background: #0066cc;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    animation: popIn 0.3s ease;
}

.cta-btn {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 1rem;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background-color: #004c99;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .marketing-section .title {
        font-size: 2rem;
    }

    .services {
        flex-direction: column;
    }
}

@media (orientation: portrait) {
    body {
        background: linear-gradient(to top right, #f0f4fa, #dbe9f3);
    }
}

@media (orientation: landscape) {
    body {
        background: linear-gradient(to bottom right, #f0f4fa, #dbe9f3);
    }
}