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;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 20px;
    width: 80%;
    max-width: 1200px;
}
.about-content {
    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: left;
    min-height: 120px;
}
.about-content h2 {
    font-family: "Roboto Slab", sans-serif;
    font-size: 1.8em;
    color: #333;
    margin: 0 0 10px;
}
.about-content p {
    font-family: "Roboto Slab", sans-serif;
    font-size: 1em;
    color: #555;
    margin: 0;
}

.cta-section {
    text-align: center;
    margin: 40px 20px;
}
.cta-section h2 {
    font-family: "Roboto Slab", sans-serif;
    font-size: 2em;
    color: #333;
    margin: 0 0 10px;
}
.cta-section p {
    font-family: "Roboto Slab", sans-serif;
    font-size: 1.2em;
    color: #555;
    margin: 0 0 20px;
}
.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: #005bb5;
}