* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

:root {
    --brand-dark: #000000;
    --text-white: #C0C0C0;
    --radius: 18px;
}

body {
    background: #000;
    color: var(--text-white);
}

.hero {
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.hero img {
    max-width: 50%;
    height: auto;
}

.new-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
}

.new-card {
    background: #000;
    padding: 40px;
    border-radius: var(--radius);
}

.new-card-content h3 {
    margin-top: 20px;
    font-size: 1.4rem;
    color: var(--text-white);
}

.new-card-content p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: var(--text-white);
}

.footer {
    background: #000;
    color: var(--text-white);
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
}

