* { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;           /* exact match to logo PNG */
    color: #f0f0f0;
    line-height: 1.7;
}
header {
    background: #000000;
    ...
}
nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img { height: 58px; }

.nav-links a {
    color: #ddd;
    text-decoration: none;
    margin-left: 2.2rem;
    font-weight: 500;
    font-size: 1.05rem;
}
.nav-links a:hover { color: #ff0000; }

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    background: #000000;
    text-align: center;
}
.hero-content { max-width: 1100px; margin: 0 auto; }

section { 
    padding: 6rem 2rem; 
    max-width: 1280px; 
    margin: 0 auto; 
}
h2 { 
    font-size: 2.6rem; 
    text-align: center; 
    margin-bottom: 3rem; 
    color: #fff;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
}
.card {
    background: #111;
    padding: 2.8rem;
    border-radius: 12px;
    border: 1px solid #222;
    transition: border-color 0.3s;
}
.card:hover { border-color: #ff0000; }

.btn-red {
    background: #ff0000;
    color: white;
    padding: 1.1rem 2.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}
.btn-red:hover { background: #e60000; transform: translateY(-2px); }

footer {
    background: #000000;
    padding: 4rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid #222;
    font-size: 0.95rem;
}