:root {
    --brand-navy: #0b1325;
    --brand-accent: #138db9;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.hero-section {
    background: linear-gradient(rgba(11, 19, 37, 0.8), rgba(11, 19, 37, 0.9)), url('../img/Background.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.nav-link {
    transition: all 0.3s ease;
}

.contact-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form-input:focus {
    border-color: var(--brand-accent);
}

footer {
    background-color: var(--brand-navy);
}
