:root {
    --primary-color: #5261ff;
    --secondary-color: #8bceff;
    --card-bg: #ffffff;
    --text-color: #333;
    --muted-text: #6b7280;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --border-radius-main: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}


img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

a,
button {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
}


@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
}



.btn-gradient {
    background-image: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    background-size: 200%;
    transition: all 0.4s ease;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
}

.btn-gradient:hover {
    background-position: right;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(82, 97, 255, 0.3);
}

.card {

    background-color: var(--card-bg);
    border-radius: var(--border-radius-main);
    box-shadow: var(--shadow);

    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);

}

.hero-bg {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}


.text-primary-color {
    color: var(--primary-color);
}

.text-muted-text {
    color: #6b7280;
}



.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--muted-text);
    line-height: 1.75;
}

.step-image {
    border-radius: var(--border-radius-main);
    border: 1px solid #e5e7eb;
    margin-top: 1.5rem;
}