html {
    scroll-behavior: smooth;
}

/* Apply background to body */
body {
    background: linear-gradient(180deg, #fdf2f8 0%, #ffffff 50%, #f0f9ff 100%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: #212529;
}

/* Custom gradient background class */
.bg-gradient {
    background: linear-gradient(180deg, #fdf2f8 0%, #ffffff 50%, #f0f9ff 100%);
    min-height: 100vh;
}

/* Font families */
.font-inter {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(to right, #0ea5e9, #ec4899);
    color: white;
    font-weight: 600;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
}

.btn-primary:hover {
    transform: scale(1.05);
    color: white;
}

.btn-outline {
    border: 2px solid #38bdf8;
    color: #0284c7;
    font-weight: 600;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #f0f9ff;
    color: #0284c7;
}

.card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0369a1;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}
