
body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica', Arial, sans-serif; /* Helvetica font */
    background-color: #f0f0f0; /* Light grey background */
    color: #000;
    overflow-x: hidden;
}
header {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #d3d3d3, #e0e0e0); /* Grey gradient */
    text-align: center;
    background-image: url('../images/background.jpg'); /* Background image placeholder */
    background-size: cover;
    background-position: center;
}
header h1 {
    font-size: 4em;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin: 0;
    text-transform: uppercase;
    color: #fff; /* White text */
    
}
header p {
    font-size: 1.2em;
    font-weight: 300;
    margin-top: 10px;
    color: #fff; /* White text */
    
}
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}
h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}
p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
}
.highlight, .highlight-contact {
    font-weight: bold;
    color: #000; /* Black highlights */
}
ul {
    list-style-type: none;
    padding: 0;
}
ul li {
    margin: 10px 0;
    font-size: 1.1em;
    position: relative;
}
ul li::before {
    content: "•";
    color: #000; /* Black bullet points */
    margin-right: 10px;
}
footer {
    background: #f0f0f0; /* Same as middle section */
    color: #000; /* Black text */
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}
footer a {
    color: #000; /* Black link for Contact Us */
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
