body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url("Images/background1.png") no-repeat center center / cover;
    color: white;
    min-height: 100vh;
}

header {
    background-color: rgba(28, 28, 28, 0.8);
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #444;
}

.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 48px;
}

.hero p {
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}

button {
    margin-top: 30px;
    padding: 15px 30px;
    border: none;
    background-color: #c0392b;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background-color: #e74c3c;
}