/* Import Responsable Grid styles */
@import url('https://cdn.jsdelivr.net/npm/responsable@1.1.0/dist/responsable.min.css');

/* General Body Styles */
body {
    font-family: 'PT Serif', serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0; /* Example light background color */
    color: #333; /* Example text color */
}

/* Header Styles */
header {
    background-color: #002147; /* Dark Oxford blue for the header background */
    color: #fff; /* White text color */
    padding: 10px 0; /* Adjust padding as needed */
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

/* Main Content Styles */
main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
}

#hero {
    background-color: #f9f9f9; /* Example light background color for hero section */
    padding: 50px 0;
    text-align: center;
}

#hero h1 {
    font-family: 'PT Sans Narrow', sans-serif; /* PT Sans Narrow for large headings */
    font-size: 36px;
    color: #002147; /* Dark Oxford blue text color */
}

#hero p {
    font-size: 18px;
    color: #666; /* Example dark gray text color */
}

/* Contact Form Styles */
.contact-form {
    background-color: #fff; /* White background for contact form */
    padding: 20px;
    font-family: 'PT Serif', serif;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f0f0f0; /* Example light gray background color for form */
    padding: 20px;
    border-radius: 8px;
    font-family: 'PT Serif', serif;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-family: 'PT Serif', serif;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc; /* Example border color */
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'PT Serif', serif;
}

.contact-form textarea {
    height: 100px;
}

.contact-form button {
    background-color: #3277ae; /* Updated light blue button background */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'PT Serif', serif;
}

.contact-form button:hover {
    background-color: #1f5f8b; /* Darker shade of blue on hover */
}

/* Footer Styles */
footer {
    background-color: #002147; /* Dark Oxford blue for the footer background */
    color: #fff; /* White text color */
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}

/* Container Styles (To center content and limit width) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Links and Buttons */
a,
button {
    color: #3277ae; /* Updated light blue for links and buttons */
    transition: color 0.3s ease; /* Smooth transition for color change */
}

a:hover,
button:hover {
    color: #1f5f8b; /* Darker shade on hover for links and buttons */
}

/* Font Awesome Icons */
.icon {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900; /* Adjust weight as needed */
}
