:root {
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section {
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.hero-section h1 {
    color: white;
    background: none;
    -webkit-text-fill-color: unset;
}

.hero-section .lead {
    color: rgba(255,255,255, 0.9);
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.feature-card .card-title {
    color: #667eea;
    font-weight: bold;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

footer {
    margin-top: auto;
}
