body {
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    background: linear-gradient(to bottom, #EBF5F0, #EBF5);
    color: #333;
    padding: 45px;
    margin: 0;
    min-height: 100vh;
}

h1 {
    color: #1a5c9a;
    margin-bottom: 30px;
    font-size: 40px;
    letter-spacing: 2px;
}

h2 {
    color: #38a798;
    margin-top: 50px;
    font-weight: normal;
    font-size: 40px;
}

p {
    max-width: 700px;
    margin: 10px auto 30px auto;
    line-height: 1.6;
    padding: 5px;
    font-size: 18px;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

header {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(26, 92, 154, 0.1);
}

nav a {
    color: #1a5c9a;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #38a798;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #38a798;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(56, 167, 152, 0.3);
    transition: background-color 0.3s, transform 0.1s;
}

.cta-button:hover {
    background-color: #2e8b7d;
    transform: translateY(-2px);
}

footer {
    width: 100%;
    padding: 15px 0;
    margin-top: 30px;
    font-size: 0.9em;
    color: #777;
    border-top: 1px solid rgba(26, 92, 154, 0.05);
}
