@charset "utf-8";
/* CSS Document */

body {
    margin: 0;
    font-family: "Helvetica Now Text W05", Arial, sans-serif;
    font-style: normal; /* Ensure normal font style */
    padding: 0 0.75rem; /* Margin for text and images */
}

/* Form */
input,
textarea,
button,
select,
label {
	font-family: inherit;
}

/* Header Section */
.header {
    background-color: white;
    padding: 15px 0; /* Padding for the header */
    text-align: left;
}


.header .container {
    max-width: 1440px; /* Updated max width */
	display: flex;
	justify-content: space-between; /* This ensures the logo and site name are on opposite ends */
    align-items: center;
}

.header .site-name { 
	font-size: 24px; 
    color: #262836;
	margin-top: 40px;
	margin-right: 15px;
}

.logo img {
    max-width: 150px;
    height: auto;
}

/* Hero Section */
.hero {
    background-color: #EEF6F7; /* Background color */
    text-align: left; /* Left-align text */
    padding: 80px 0; /* Padding for the hero section */
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding in width calculation */
}

.hero-content {
    max-width: 1440px; /* Updated max width */
    margin: 0 auto; /* Center the content */
    padding: 0 0.75rem; /* Margin for text */
    color: #262836; /* Text color */
}

.hero h1 {
    font-size: 3em;
    margin: 0;
}

.hero p {
    font-size: 1.5em;
    margin: 20px 0 0;
}

/* Text Section */
.text-content {
    padding: 30px 0;
    background-color: #ffffff;
}

.text-content .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0.75rem;
}

.text-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
	color: #262836; /* Text color */
}

.text-content p {
    font-size: 1.2em;
    line-height: 1.6;
    font-style: normal; /* Ensure normal font style */
	color: #5D6D78; /* Text color */
}

/* Footer Section */
.footer {
    background-color: #262836;
    color: #ACC0C4;
    text-align: left; /* Left-align text */
    padding: 20px 0;
}

.footer-content {
    max-width: 1440px; /* Align with hero section */
    margin: 0 auto; /* Center the content */
    padding-left: 0.75rem; /* Align text with page padding */
}

.footer-links-container {
    margin-top: 10px; /* Adds space between the copyright text and the links */
    text-align: left; /* Aligns the links to the left */
    padding: 0; /* Removes any padding that might cause indentation */
}

.footer-links {
	font-size: 14px; /* Sets the font size to 14px */
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	padding: 0px;
	margin: 0px;
}

.footer-links a {
    color: white !important; /* Ensures the text color is white */
    text-decoration: underline!important; /* Removes the underline */
    display: inline-block; /* Ensures links are treated as inline-block elements */
}

.footer-links a:link,
.footer-links a:visited,
.footer-links a:hover,
.footer-links a:active {
	color: white !important; /* Ensures the text color is white */
    text-decoration: underline!important; /* Removes the underline */
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 10px 0; /* Adjusted padding for smaller screens */
    }
	
	.header .container {
        flex-direction: column; /* Stacks items vertically on smaller screens */
        align-items: flex-start; /* Aligns items to the start */
    }

    .header .site-name {
        text-align: left; /* Aligns text to the left on smaller screens */
        margin-right: 0; /* Removes right margin on smaller screens */
        margin-top: 10px; /* Adds some space between logo and site name */
    }

    .hero {
        padding: 50px 0; /* Adjusted padding for smaller screens */
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .text-content h2 {
        font-size: 2em;
    }

    .text-content p {
        font-size: 1em;
    }

    .footer-content {
        padding-left: 0.75rem; /* Align text with page padding */
    }
}

.contact-container {
  max-width: 600px;
  margin: 0;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.form-label {
  display: block;
  margin-top: 12px;
  font-weight: bold;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

.form-btnsubmit {
  	display: inline-block;
    padding: 10px 20px;
    background-color: #003C55;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    margin-right: 20px;
}

.form-button-enabled {
  background-color: #007585;
  cursor: pointer;
}
