body {
    font-family: Arial, sans-serif;
  background: #ffffff;
color: #222;
    text-align: center;
    margin: 0;
    padding: 0;
}

.hero {
    padding: 0;
}

.logo {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 {
    color: #111111;
    font-size: 48px;
    font-weight: 700;
}

h2 {
    color: #111111;
    font-weight: 600;
}

button {
    background: #111111;
    color: #ffffff;
    border: 2px solid #c0c0c0;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

button:hover {
    transform: translateY(-2px);
    background: #c0c0c0;
    color: #111111;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 25px 0;
}
