/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #222; /* Darker text for better contrast */
    background-color: #ffffff; /* White Background */
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #ffffff;
    border-bottom: 2px solid #3364ff; /* Blue underline */
}

/* Logo and Name */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.company-name {
    color: #2244cc; /* Slightly darker blue */
    font-size: 20px;
    font-weight: bold;
}

/* Navigation Links */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    margin-left: auto;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #2244cc;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #112288; /* Darker on hover */
}

/* Header with Background Image */
header {
    background: url('Background.jpg') no-repeat center center/cover;
    color: #111; /* Darker text */
    text-align: left;
    padding: 80px 20px;
    position: relative;
    height: 420px;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    max-width: 40%;
    margin-left: 5%;
    color: #111; /* Strong dark text */
    text-shadow: none; /* Remove light shadow that reduces contrast */
}

.hero h1, .hero h2 {
    color: #111;
    font-weight: bold;
}

.hero p {
    font-size: 1.1em;
    margin-top: 10px;
    color: #333; /* Medium-dark gray for readability */
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
