body {
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.page-content {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    min-height: 70vh;
}

.hero {
    background-color: #008cff;
    color: white;
    text-align: center;
    padding: 50px 20px;
    width: 100%;
}
.hero h1 {
    font-family: "Roboto Slab", sans-serif;
    font-size: 2.5em;
    margin: 0;
}
.hero p {
    font-family: "Roboto Slab", sans-serif;
    font-size: 1.2em;
    margin: 10px 0 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 20px;
    width: 100%;
}
.contact-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.contact-card img {
    width: 40px;
    height: 40px;
}
.contact-card h2 {
    font-family: "Roboto Slab", sans-serif;
    font-size: 1.5em;
    color: #333;
    margin: 0 0 10px;
}
.contact-card p {
    font-family: "Roboto Slab", sans-serif;
    font-size: 1em;
    color: #555;
    margin: 0 0 15px;
}
.contact-card .link {
    font-family: "Roboto Slab", sans-serif;
    font-size: 1em;
    color: #008cff;
    text-decoration: none;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background-color: #008cff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-family: "Roboto Slab", sans-serif;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 200ms ease;
}
.cta-button:hover {
    background-color: #0074e9;
    color: white;
    transition: background-color 200ms ease;
}