/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #F5F5F5;
    line-height: 1.6;
}

header {
    background: linear-gradient(to bottom, #00274D, #004C73), url('hero-image.jpg') no-repeat center center/cover;
    color: white;
    height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2em;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5em;
}

header p {
    font-size: 1.5rem;
    margin-bottom: 1.5em;
}

.cta-btn {
    padding: 0.8em 2em;
    background-color: #FFD700;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #E6C200;
}

/* Navigation Bar */
.navbar {
    background: #00274D;
    padding: 1em 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2em;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #FFD700;
}

.phone {
    margin-top: 1em;
    font-size: 1.2rem;
}

.phone a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.phone a:hover {
    color: #FFFFFF;
}

/* Section Styles */
section {
    padding: 4em 2em;
    background-color: white;
    margin-bottom: 2em;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2.5rem;
    color: #00274D;
    border-bottom: 3px solid #FFD700;
    display: inline-block;
    padding-bottom: 0.3em;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: #F9F9F9;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
    color: #00274D;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1.5em;
    border: 1px solid #CCC;
    border-radius: 4px;
    font-size: 1rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: block;
    width: 100%;
    background-color: #FFD700;
    color: #000;
    padding: 0.8em 2em;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #E6C200;
}

/* Footer */
footer {
    background: #00274D;
    color: white;
    text-align: center;
    padding: 1.5em 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1.2rem;
    }

    .cta-btn {
        font-size: 1rem;
    }

    .navbar ul {
        flex-direction: column;
        gap: 1em;
    }

    .contact-form {
        padding: 1.5em;
    }
}