* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #0a2472; /* Dark blue text */
    background: url('bg2.jpg') no-repeat center center; /* Replace URL with your background image */
    background-size: cover; /* Ensure the image covers the entire page */
    background-attachment: scroll; /* Avoid fixed background if performance issues */
    min-height: 100%; /* Ensure the body takes up at least the full viewport height */
    background-position: center center; /* Center the background image */
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(255, 255, 255, 0.8); /* Optional: Add a semi-transparent background to header */
}

.top-links {
    display: flex;
    justify-content: space-between; /* Distribute space evenly between items */
    flex-grow: 1;
    max-width: 600px;
}

.top-links a {
    text-decoration: none;
    color: #0a2472;
    font-weight: 700; /* Bold font */
    font-size: 18px; /* Smaller font */
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
    position: relative;
    margin: 0 30px; /* Increase horizontal space between links */
}

.top-links a:hover {
    color: #1d4ed8;
    transform: scale(1.1);
}

.top-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #1d4ed8;
    transition: width 0.3s ease-in-out;
}

.top-links a:hover::before {
    width: 100%;
}

.logo-container {
    margin-left: auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 700;
    color: #0a2472;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Content with image and paragraph aligned horizontally */
.content {
    display: flex;
    align-items: flex-start;
    padding: 40px 50px;
    gap: 80px; /* Space between image and text container */
}

.image-container {
    flex-shrink: 0; /* Prevent image from shrinking */
}

.content-image {
    width: 300px; /* Fixed width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.text-container {
    display: flex;
    justify-content: flex-end; /* Align text to the right */
    width: 100%;
}

.styled-paragraph {
    max-width: 600px; /* Adjusted width for better layout */
    font-size: 20px; /* Slightly larger font size for better readability */
    line-height: 1.6;
    font-family: 'Roboto', sans-serif; /* More robust font */
    color: #0a2472;
    background: linear-gradient(135deg, #f5faff, #e0f0ff); /* Gradient background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transition: transform 0.3s ease-in-out;
    text-align: left; /* Align text within the paragraph */
    bottom:40px;
}

.bottom-left-paragraph {
    position: absolute;
    bottom: 100px;
    left: 20px;
    max-width: 900px; /* Adjusted width for better layout */
}

.bottom-paragraph {
    font-size: 20px; /* Same font size as the previous paragraph */
    line-height: 1.6;
    font-family: 'Roboto', sans-serif; /* Consistent font */
    color: #0a2472;
    background: linear-gradient(135deg, #f5faff, #e0f0ff); /* Same gradient background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transition: transform 0.3s ease-in-out;
    text-align: left; /* Align text within the paragraph */
}

    header2 {
    width: 100%;
    height:82px;
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    align-items: center;
    align-content: right;
    padding: 20px 50px;
    padding-left: 1175px;
    background: rgba(255, 255, 255, 0.8); /* Optional: Add a semi-transparent background to header */
}