body {
    font-family: 'Inter', sans-serif;
    background-color: #0a192f;
    color: #8892b0;
}

.nav-link {
    position: relative;
    color: #64ffda;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #64ffda;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.section-title {
    color: #ccd6f6;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #64ffda;
}

.card {
    background-color: #112240;
    border: 1px solid #233554;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.button {
    background-color: transparent;
    border: 1px solid #64ffda;
    color: #64ffda;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: rgba(100, 255, 218, 0.1);
}

.container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
}
