/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #111;
    color: #fff;
}

/* Hero Section */
header {
    background: url('banner.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Button */
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.2rem;
    color: #fff;
    background: #ff4500;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #ff5722;
}

/* About Section */
.about {
    padding: 50px 20px;
    background-color: #222;
}

h2 {
    font-size: 2rem;
}

/* Footer */
footer {
    padding: 15px;
    background: #000;
    font-size: 0.9rem;
}