body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9fafb;
    color: #1f2937;
}
header {
    background-color: #1e3a8a;
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header img {
    height: 60px;
    background-color: #f3f4f6;
}
.content {
    /*max-width: 70ch; !* Optimal line length for desktop *!*/
    margin: 0 auto; /* Center the block horizontally */
    padding: 20px; /* Add some padding around the text */
    line-height: 1.6; /* Ensure comfortable line spacing */
    /*font-family: Arial, sans-serif; !* Readable font *!*/
    /*color: #333; !* Dark gray text for good contrast *!*/
    background-color: #f3f4f6; /* Slightly off-white background */
}
nav a {
    color: white;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 600;
}
.parallax {
    background-image: url('https://img.icons8.com/ios-filled/500/telephone.png');
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}
.parallax h2 {
    background: rgba(30, 58, 138, 0.8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
}
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #ffffff;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.125rem;
    color: #4b5563;
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 4rem 2rem;
    background-color: #f3f4f6;
}
.feature {
    max-width: 300px;
    margin: 1rem;
    text-align: center;
}
.feature h3 {
    margin-top: 1rem;
    color: #1e3a8a;
}
.cta {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #1e40af;
    color: white;
}
.cta a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #3b82f6;
    color: white;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
}
footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #111827;
    color: #d1d5db;
    font-size: 0.875rem;
}