/* General Styling */
body {
    background-color: #0D0D0D; /* Darker background for better contrast */
    color: #EAEAEA; /* Light gray text for readability */
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px; /* Increased padding for spacing */
    border-bottom: 2px solid #555; /* Subtle border for structure */
}

header h1 {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff; /* Strong contrast */
    text-transform: uppercase;
    letter-spacing: 2px;
}

header p {
    font-size: 18px;
    color: #f8d210; /* Accent color for tagline */
    margin-top: 10px;
}

/* Navigation */
nav {
    text-align: center;
    margin-top: 20px;
}

nav a {
    text-decoration: none;
    color: #f8d210;
    font-weight: bold;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff6b35; /* Subtle hover effect */
}

/* Sections */
section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #181818; /* Slight contrast for content areas */
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.1); /* Soft glow */
}

/* Section Titles */
h2 {
    font-size: 24px;
    color: #f8d210;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

/* Paragraphs */
p {
    font-size: 16px;
    color: #cccccc;
}

/* Bullet Points */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 16px;
}

ul li::before {
    content: "●";
    color: #ff6b35; /* Accent color */
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Articles */
article {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

article:hover {
    transform: translateY(-3px);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

article h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
}

article p {
    font-size: 14px;
    color: #aaaaaa;
}

article a {
    text-decoration: none;
    color: #f8d210;
    font-weight: bold;
    transition: color 0.3s ease;
}

article a:hover {
    color: #ff6b35;
}

/* Contact Section */
#contact {
    text-align: center;
    background: #111;
    padding: 40px 20px;
    border-radius: 10px;
}

#contact input,
#contact textarea {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #555;
    border-radius: 5px;
    background: #222;
    color: #ffffff;
}

#contact button {
    background: #f8d210;
    color: #111;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
}

#contact button:hover {
    background: #ff6b35;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    background: #0D0D0D;
    border-top: 1px solid #444;
    color: #cccccc;
}
