
body {
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
	margin: 0;
	padding: 0;
}

.hero-gradient {
	background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
}
h1 {
	font-size: 16px;
	margin-top: 0;
}

p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}
.card {
	max-width: 620px;
	margin: 0 auto;
	padding: 16px;
	border: 1px solid lightgray;
	border-radius: 16px;
}
.btn-primary {
    background-color: #2563eb;
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.card p:last-child {
	margin-bottom: 0;
}
