:root {
    --color-primary-blue: #245F8F; /* Colorado Blue */
    --color-secondary-red: #BF0A30; /* Colorado Red */
    --color-accent-gold: #FBB03B; /* Colorado Gold */
    --color-white: #FFFFFF;
    --color-light-gray: #f4f4f4;
    --color-dark-gray: #333;
    --color-lighter-blue: #ADD8E6; /* Light Blue for gradients */
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--color-white);
    color: var(--color-dark-gray);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--color-primary-blue);
}

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

/* Header */
header {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    padding: 15px 0; /* Increased padding */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 70px; /* Adjust as needed */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px; /* Increased spacing */
}

nav ul li a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600; /* Bolder font */
    transition: color 0.3s ease, transform 0.2s ease;
}

nav ul li a:hover {
    color: var(--color-accent-gold);
    transform: translateY(-2px);
}

/* Hero Section */
#hero {
    background: linear-gradient(to right, var(--color-primary-blue), var(--color-lighter-blue)); /* Gradient background */
    color: var(--color-white); /* White text for contrast */
    text-align: center;
    padding: 100px 0; /* Increased padding */
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="%239BD2DB" fill-opacity="0.2" fill-rule="evenodd"><path d="M11 0L0 11L11 22L22 11L11 0zm0 44L0 55L11 66L22 55L11 44zm33 0L22 55L33 66L44 55L33 44zm0-44L33 11L44 22L55 11L44 0zM0 33L11 44L22 33L11 22L0 33zm33 0L44 44L55 33L44 22L33 33z" fill="%23333333"/></g></svg>');
    opacity: 0.1;
    z-index: 1;
}

#hero h1 {
    font-size: 3.5em; /* Larger heading */
    margin-bottom: 20px;
    color: var(--color-white); /* White for hero H1 */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* Text shadow for pop */
    position: relative;
    z-index: 2;
}

#hero p {
    font-size: 1.3em; /* Larger paragraph */
    margin-bottom: 40px; /* More space */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-white); /* White for hero P */
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-block;
    background-color: var(--color-secondary-red);
    color: var(--color-white);
    padding: 15px 30px; /* Larger button */
    text-decoration: none;
    border-radius: 8px; /* More rounded */
    font-weight: 700; /* Bolder */
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Added shadow */
    position: relative;
    z-index: 2;
}

.btn:hover {
    background-color: #A00A2C; /* Slightly darker red */
    transform: translateY(-3px); /* Lift effect */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Services Section */
#services {
    padding: 80px 0; /* Increased padding */
    text-align: center;
    background-color: var(--color-light-gray); /* Light background for contrast */
}

#services h2 {
    font-size: 3em; /* Larger heading */
    margin-bottom: 50px;
    color: var(--color-primary-blue);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15); /* Enhanced shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px); /* More pronounced lift */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service-item h3 {
    color: var(--color-secondary-red);
    margin-bottom: 15px;
    font-size: 1.8em;
}

/* About Us Section */
#about-content {
    padding: 80px 0; /* Increased padding */
    line-height: 1.8;
}

#about-content h1 {
    font-size: 3em;
    color: var(--color-primary-blue);
    margin-bottom: 40px;
    text-align: center;
}

#about-content p {
    margin-bottom: 25px;
    font-size: 1.15em;
}

/* Contact Us Section */
#contact-content {
    padding: 80px 0; /* Increased padding */
}

#contact-content h1 {
    font-size: 3em;
    color: var(--color-primary-blue);
    margin-bottom: 40px;
    text-align: center;
}

.contact-info {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.2em; /* Larger font */
}

.contact-info p {
    margin: 12px 0;
}

.contact-info a {
    color: var(--color-secondary-red);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-accent-gold);
    text-decoration: underline;
}

.contact-form {
    max-width: 650px; /* Slightly wider form */
    margin: 0 auto;
    padding: 40px; /* More padding */
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: calc(100% - 24px); /* Account for padding + border */
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1.05em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--color-primary-blue);
    box-shadow: 0 0 8px rgba(36, 95, 143, 0.2); /* Focus highlight */
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px; /* Min height for textarea */
}

.contact-form button.btn {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 15px;
    font-size: 1.2em;
    background-color: var(--color-primary-blue); /* Changed button color */
}

.contact-form button.btn:hover {
    background-color: #1A4D78; /* Darker blue on hover */
}

/* Footer */
footer {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    text-align: center;
    padding: 30px 0; /* Increased padding */
    margin-top: 60px; /* More space above footer */
}
