/* Ensure no horizontal scrolling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Make sure the image doesn't cause overflow */
.full-width-image {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* Header styling */
header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    color: #0C243C;
    padding: 15px 4%; /* Reduced padding */
    position: relative;
}

header h1,
header div {
    margin: 0;
    padding: 0;
    width: 100%;
    padding-left: 4%; /* Reduced padding */
}

header h1 {
    font-size: 2vw; /* Further reduced font size */
}

header div {
    font-size: 1.1vw; /* Further reduced font size */
}

/* Navbar styling */
.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #0C243C;
    padding: 0 4%; /* Reduced padding */
    height: 7vh; /* Reduced height */
}

.navbar > div {
    margin-left: 4%;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar a,
.dropbtn {
    color: #fff;
    text-decoration: none;
    padding: 0.5vh 1.2vw; /* Further reduced padding */
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 1vw; /* Reduced font size */
}

.navbar a:hover,
.dropbtn:hover {
    background-color: #03045e;
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0C243C;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    flex-direction: column;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #03045e;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

/* Image container */
.image-container {
    position: relative;
    width: 100%;
}

.overlap-container {
    position: absolute;
    bottom: -7vh;
    right: 4%;
    background: #0b2036;
    color: white;
    padding: 3%; /* Further reduced padding */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 28%; /* Reduced width */
    font-size: 1.6vw; /* Further reduced font size */
    text-align: center;
}

/* New container */
.new-container {
    margin-top: 8vh; /* Reduced margin */
    background-color: #f9f8f8;
    height: 18vh; /* Reduced height */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-container p {
    font-size: 1.5vw; /* Further reduced font size */
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Placeholder container styling */
/* Placeholder container */
.placeholder-container {
    background-color: #ffffff; /* Keep the white background */
    padding: 40px 5%; /* Padding on the sides to give breathing room */
    margin: auto;
    width: 100%; /* Full width */
    max-width: 1200px; /* Increase the max width to allow more room */
    text-align: center;
    font-family: Arial, sans-serif;
    color: #333;
    min-height: 50vh;
}

/* Styling for the introductory paragraph in the placeholder-container */
.placeholder-container p.intro-paragraph {
    font-size: 1.5vw; /* Adjust font size */
    line-height: 1.6; /* Adjust line spacing */
    font-weight: bold; /* Bold for emphasis */
    margin-bottom: 40px; /* Space below */
    text-align: center;
    max-width: 1000px; /* Allow the paragraph to span wider */
    margin-left: auto;
    margin-right: auto; /* Center the paragraph */
}
.placeholder-container h2 {
    font-size: 2vw; /* Match your header font sizing */
    color: #0C243C;
    margin-bottom: 20px;
}

.placeholder-container p {
    font-size: 1.2vw; /* Slightly smaller font for body text */
    line-height: 1.6;
    margin-bottom: 20px;
}

.placeholder-container ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0;
    margin-bottom: 20px;
    text-align: left; /* Align list text to the left */
}

.placeholder-container ul li {
    font-size: 1.2vw;
    margin: 10px 0;
    padding: 10px;
    border-left: 4px solid #0C243C; /* Vertical bar matching color */
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.placeholder-container ul li b {
    color: #0C243C; /* Bold and emphasized */
}

.placeholder-container ul li:hover {
    background-color: #f0f4f7; /* Subtle hover effect */
}

.placeholder-container p:last-of-type {
    font-size: 1.3vw;
    font-weight: bold;
    color: #0C243C;
}


/* Footer styling */
footer {
    background: #f3f2f1;
    border-top: 1px solid #b1b4b6;
    color: #626a6e;
    padding: 20px;
    font-size: 1vw; /* Further reduced footer font size */
}

/* Contact email section styling */
.contact-email {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35vh; /* Further reduced height */
    text-align: center;
    background-color: #f0f4f8;
}

.contact-email p {
    font-size: 1.4vw; /* Further reduced font size */
    color: #333;
}

.contact-email a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #0056b3;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    /* Adjust header */
    header h1 {
        font-size: 4vw; /* Increase font size for mobile */
    }

    header div {
        font-size: 3vw; /* Increase font size */
    }

    /* Adjust navbar */
    .navbar {
        justify-content: center;
    }

    .navbar a {
        padding: 0.8vh 4vw; /* Increased padding for more spacing between buttons */
        font-size: 3.5vw; /* Increase font size */
    }

    /* Adjust overlap container */
    .overlap-container {
        bottom: -4vh;
        right: 2%;
        font-size: 3vw; /* Reduced font size for mobile */
        width: 60%; /* Increase width for better fit */
    }

    /* Adjust new container text */
    .new-container p {
        font-size: 3vw; /* Adjust text size for mobile */
    }

    /* Adjust placeholder container */
    .placeholder-container {
        padding: 20px 5%; /* Reduce padding for mobile */
        width: 95%; /* Set width to fit mobile screens */
        max-width: 100%; /* Ensure it takes full width */
    }

    .placeholder-container p.intro-paragraph {
        font-size: 4vw; /* Increase font size */
        max-width: 100%; /* Ensure paragraph expands to full width */
    }

    /* Footer adjustments */
    footer {
        font-size: 2vw; /* Adjust font size for mobile */
    }
}

@media (max-width: 480px) {
    /* For very small screens */
    header h1 {
        font-size: 6vw; /* Further adjust for small screens */
    }

    header div {
        font-size: 4vw;
    }

    .navbar a {
        font-size: 4vw;
        padding: 1vh 4vw; /* Increased padding for smaller screens */
    }

    .overlap-container {
        font-size: 4vw;
        width: 70%; /* Adjust width for smaller mobile screens */
    }

    .new-container p {
        font-size: 4vw; /* Adjust font size */
    }

    /* Further adjustments for placeholder container on very small screens */
    .placeholder-container {
        padding: 15px 3%; /* Reduce padding */
    }

    .placeholder-container p.intro-paragraph {
        font-size: 5vw; /* Further increase font size */
        max-width: 100%; /* Ensure paragraph expands */
    }

    footer {
        font-size: 2.5vw;
    }
}
