@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
}

.container {
    max-width: 1200px;
}

/* Animation for the sample preview */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sample-preview {
    animation: slideIn 0.8s ease-out forwards;
}

/* Custom button styles */
.btn-primary {
    background-color: #4f46e5;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #4f46e5;
    color: #4f46e5;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #eef2ff;
}

/* Pricing card hover effect */
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}