/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #121212;
    color: #E0E0E0;
}

/* Header */
header {
    background-color: #1E1E2F;
    color: #F0F0F0;
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid #444;
}

header .logo {
    max-width: 200px; /* Adjust logo size */
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

nav a {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

nav a:hover {
    color: #F9A825;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #222222;
    color: #E0E0E0;
    text-align: center;
    padding: 60px 20px;
}

.hero .image-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-img {
    width: 45%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Hero Section */
.hero2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #222222;
    color: #E0E0E0;
    text-align: center;
    padding: 20px 20px;
}

button {
    background-color: #F9A825;
    color: #121212;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    border-radius: 5px;
}

button:hover {
    background-color: #FFB300;
}

/* Footer */
footer {
    background-color: #1E1E2F;
    color: #F0F0F0;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

footer p a {
    color: #F9A825;
    text-decoration: none;
}

footer p a:hover {
    text-decoration: underline;
}


/* Forms */
form input, 
form textarea {
    width: 100%;
    max-width: 600px;
    min-width: 256px;
    min-height: 200px;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #444;
    background-color: #333;
    color: #E0E0E0;
    font-family: inherit;
    border-radius: 5px;
}