* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    background: #ffffff; /* Change background to white */
    color: #333333; /* Set a dark font color for better contrast */
    padding: 20px 0;
}

.header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #333333; /* Change logo text color to dark */
    text-decoration: none;
}

.header nav ul {
    display: flex; /* Makes the list items align horizontally */
    list-style: none; /* Removes bullet points */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}

.header nav ul li {
    margin-right: 20px; /* Adds space between each menu item */
}

.header nav ul li a {
    color: #005b99; /* Sets link color */
    text-decoration: none;
    transition: color 0.3s;
}

.header nav ul li a:hover {
    color: #ffffff; /* Sets hover effect color */
}

.header .cta-button {
    background: #ffa500;
    color: #ffffff; /* Keep the CTA button text white for contrast */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero .cta-button {
    background: #ffa500;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Section Styles */
.about, .services, .contact {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about h2, .services h2, .contact h2 {
    margin-bottom: 20px;
    color: #005b99;
}

.service-item {
    margin: 20px 0;
}

/* Contact Form */
.contact form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 20px auto;
}

.contact form input, .contact form textarea, .contact form button {
    margin: 10px 0;
    padding: 10px;
}

.contact form button {
    background: #005b99;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 15px;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer .social-links a {
    color: #ffa500;
    margin: 0 10px;
    text-decoration: none;
}


/* Mobile-Friendly Adjustments */
/* Hide navigation menu and show hamburger icon on mobile */
@media (max-width: 768px) {
    .header nav ul {
        display: none; /* Hide the navigation menu by default */
        flex-direction: column;
        background: #ffffff; /* Optional: background color for menu */
        position: absolute;
        top: 70px; /* Adjust based on your header height */
        right: 0;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .header nav ul li {
        margin: 15px 0;
        text-align: center;
    }

    .hamburger {
        display: block; /* Show hamburger icon */
        font-size: 24px;
        cursor: pointer;
        color: #005b99; /* Adjust color as needed */
    }

    /* Show the menu when active */
    .header nav ul.active {
        display: flex; /* Display the menu when active */
    }
}


    /* Adjust Hero Section */
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero {
        padding: 60px 20px;
    }

    /* Section Padding for Mobile */
    .about, .services, .contact {
        padding: 40px 20px;
    }

    /* Contact Form */
    .contact form {
        max-width: 100%;
    }

    /* Footer Text Centered for Smaller Screens */
    .footer {
        text-align: center;
    }
}

