body {
    font-family: Arial, sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.wrapper {
    min-height: 100%;
    margin-bottom: -50px;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header .logo h1 {
    margin: 0;
    padding: 20px;
}

nav ul {
    padding: 0;
    list-style-type: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ddd;
}

.hero {
    background-color: #fff;
    padding: 115px 0;
    text-align: center;
}

.services {
    background-color: #eee;
    padding: 50px 0;
    text-align: center;
}

.services h2 {
    margin-bottom: 60px; /* Adjust this value as needed */
}

.service-item {
    margin: 20px 0;
}

.clearfix {
    height: 50px;
    clear: both;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF; /* Change to your preferred color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 30px;
}

.cta-button:hover {
    background-color: #0056b3; /* Slightly darker shade for hover effect */
}

.policies-support {
    background-color: #f4f4f4; /* Light gray background */
    padding: 20px 0;
    margin-bottom: 72px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.policy, .support {
    flex: 1;
    padding: 0 15px;
}

.policy h3, .support h3 {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.policy ul, .support ul {
    list-style-type: none;
    padding: 0;
}

.policy li, .support li {
    margin-bottom: 10px;
}

.policy a, .support a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.policy a:hover, .support a:hover {
    color: #007BFF; /* Change to your preferred hover color */
}


footer {
    height: 50px; /* This should match the negative margin of the wrapper */
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    width: 100%;
}