:root {
    --primary: #1D8C89;
    --primary-foreground: #ffffff;
    --background: #ffffff;
    --foreground: #1f2937;
    --muted-foreground: #6b7280;
    --secondary: #f8fafc;
    --card: #ffffff;
    --border: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 5rem 1rem;
    background-color: rgba(248, 250, 252, 0.3);
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.text-4xl {
    font-size: 2.25rem;
    font-weight: 700;
}

.text-xl {
    font-size: 1.25rem;
    font-weight: 600;
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

.max-w-2xl {
    max-width: 42rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gap-8 {
    gap: 2rem;
}

.p-6 {
    padding: 1.5rem;
}

.border {
    border: 1px solid var(--border);
}

.rounded-xl {
    border-radius: 0.75rem;
}

.hover-shadow:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.transition-all {
    transition: all 0.3s ease;
}

.bg-card {
    background-color: var(--card);
}

.hover\:border-primary\/50:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.group:hover .group-hover\:bg-primary\/20 {
    background-color: rgba(59, 130, 246, 0.2);
}

.transition-colors {
    transition: background-color 0.3s ease;
}

.transition-transform {
    transition: transform 0.3s ease;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

.bg-primary\/10 {
    background-color: rgba(59, 130, 246, 0.1);
}

.rounded-lg {
    border-radius: 0.5rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.text-primary {
    color: var(--primary);
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.w-1\.5 {
    width: 0.375rem;
}

.h-1\.5 {
    height: 0.375rem;
}

.bg-primary {
    background-color: var(--primary);
}

.rounded-full {
    border-radius: 9999px;
}

.text-sm {
    font-size: 0.875rem;
}

/* Animation classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-fade {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.card-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-hover:hover {
    transform: translateY(-5px);
}

.icon-rotate:hover {
    transform: rotate(360deg);
}

.icon-transition {
    transition: transform 0.5s ease;
}