html {
    scroll-behavior: smooth;
}

body {
    background-color: #0f172a;
    color: #f8fafc;
    font-family: Arial, sans-serif;
}

.custom-navbar {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.subtitle {
    color: #60a5fa;
}

.section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 30px;
    font-weight: bold;
    color: #60a5fa;
}

.card-custom {
    background-color: #1e293b;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.card-custom ul {
    margin-bottom: 0;
}

.btn-primary {
    background-color: #2563eb;
    border-color: #2563eb;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
}

footer {
    padding: 30px 0;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

a {
    text-decoration: none;
}