body { 
    background-color: #0f111a; 
    color: #a9b1d6; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    line-height: 1.8; 
    margin: 0; 
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

nav {
    background: #16161e;
    padding: 15px 50px;
    border-bottom: 1px solid #414868;
    display: flex;
    justify-content: flex-end;
}

nav a {
    color: #7aa2f7;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #89ddff;
}

.container { 
    max-width: 900px; 
    margin: 60px auto;
    padding: 40px;
    background: #1a1b26;
    border-left: 4px solid #7aa2f7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

h1 { 
    color: #7aa2f7; 
    font-size: 2.5em;
    letter-spacing: -1px;
    margin-bottom: 0.5em;
    text-transform: uppercase;
}

h2 { 
    color: #bb9af7; 
    border-bottom: 1px solid #414868;
    padding-bottom: 10px;
    font-weight: 400;
}

/* Miglioramento leggibilità "Inquire Privately" */
.cta-link, a[href*="mailto"] {
    color: #89ddff !important;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px dashed #89ddff;
    transition: all 0.3s ease;
}

.cta-link:hover, a[href*="mailto"]:hover {
    color: #bb9af7 !important;
    border-bottom: 1px solid #bb9af7;
}

.status-bar {
    font-family: monospace;
    font-size: 0.85em;
    color: #565f89;
    margin-top: 30px;
    border-top: 1px solid #414868;
    padding-top: 15px;
}