
/* Reset and Base Styles */
body {
    font-family: 'Roboto', sans-serif; /* Modern and clean font */
    margin: 0;
    padding: 0;
    line-height: 1.8;
    background: #f8f9fa; /* Light background for professionalism */
    color: #333;
}
header {
    background: linear-gradient(90deg, #0056b3, #007bff); /* Professional gradient header */
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
header ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
header ul li {
    display: inline;
    margin: 0 20px;
}
header ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}
header ul li a:hover {
    color: #ffdd57; /* Accent color on hover */
}
main {
    padding: 40px;
    margin: 0 auto;
    max-width: 1200px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
main h1, main h2 {
    color: #0056b3;
}
main h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Merriweather', serif; /* Elegant font for headings */
}
main h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
}
main p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}
main.two-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
main.two-columns .column {
    width: 48%;
}
footer {
    background: #0056b3;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.9em;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}
footer a {
    color: #ffdd57;
    text-decoration: none;
    font-weight: bold;
}
footer a:hover {
    text-decoration: underline;
}
.cta-button {
    display: inline-block;
    padding: 15px 25px;
    color: #fff;
    background: #007bff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cta-button:hover {
    background: #0056b3;
    transform: translateY(-3px);
}
/* Responsive Design */
@media (max-width: 768px) {
    main.two-columns {
        flex-direction: column;
        gap: 20px;
    }
    main.two-columns .column {
        width: 100%;
    }
    header ul li {
        margin: 0 10px;
    }
    header ul li a {
        font-size: 1em;
    }
}


.cta-button:hover {
    background: #003f8a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-form input, .contact-form textarea {
    background: #fdfdfd;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}
