body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa; /* Light pastel background for a clean look */
}

.header {
    background-color: #35495e; /* Adjusted for a softer pastel blue */
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-links {
    display: flex;
}

.header-links a {
    text-decoration: none;
    color: #fff; /* Keep link color white */
}

.header-links p {
    margin: 0;
    padding: 10px;
    cursor: pointer;
    font-weight: 500; /* Slightly bolder for emphasis */
}

h1 {
    margin: 0;
    font-size: 2.5em; /* Increase size for impact */
}

.image-section {
    position: relative;
    max-height: 80vh;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #35495e; /* Deeper shade of pastel blue for contrast */
    color: #fff;
    padding: 10px;
}

.blurred-background {
    backdrop-filter: blur(5px);
}

.gray-box {
    background-color: #acc2d0; /* Lighter and softer shade of blue */
    color: #2c3e50; /* Darker text for readability */
    text-align: center;
    padding: 30px;
}

.contact-box {
    background-color: #5c6f7b; /* Matching the header color */
    color: #fff;
    text-align: center;
    padding: 50px;
}

.contact-info {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.light-gray-box {
    background-color: #d3dde6; /* Even lighter shade for a subtle look */
    color: #2c3e50; /* Dark text for contrast */
    text-align: center;
    padding: 30px;
    border-left: 4px solid #5c6f7b; /* Complementing the header color */
}

.contact-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.dark-gray-box {
    background-color: #35495e; /* Same as the header for consistency */
    color: #fff;
    text-align: center;
    padding: 20px;
}

.dark-gray-box p {
    margin: 0;
}

.bigger-box {
    padding: 50px;
}

.about-light-gray-box {
    background-color: #ecf0f1; /* Very light pastel color */
    color: #34495e; /* Dark text for a formal appearance */
    padding: 30px;
}

.about-light-gray-box h2.section-header {
    font-weight: bold;
    text-decoration: underline;
}

.about-light-gray-box .column p {
    margin: 10px 0;
}

.about-light-gray-box .column p strong {
    font-weight: bold;
}

.about-light-gray-box .column p:last-child {
    margin-bottom: 0;
}

.centered-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.centered-text {
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #acc2d0; /* Border color to match the gray-box */
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #acc2d0; /* Consistent with the form border */
}

.form-row textarea {
    resize: vertical;
}

.dark-gray-box a {
    color: #fff;
    text-decoration: none; /* Remove underlines from links */
    transition: color 0.2s; /* Smooth transition for hover effect */
}

.dark-gray-box a:hover {
    color: #d3dde6; /* Lighter link color on hover for contrast */
}

.light-gray-box p,
.gray-box p {
    margin-bottom: 5px;
}

.light-gray-box.gray-box ul {
    list-style-type: none;
}

.gray-box ul li {
    margin-left: 20px;
}

.section-header {
    font-weight: bold;
    text-decoration: underline;
}

.main-content {
    display: flex;
    width: 100%;
}

.left-content {
    width: 50%;
    padding: 0;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
}

.right-image {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.right-image img {
    max-width: 100%;
    height: auto;
}

.logo-link {
    text-decoration: none;
    color: white;
}
