 
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #fff;
    text-align: center;
}

/* Header */
header {
    background-color: #222;
    padding: 20px;
}

header h1 {
    margin: 0;
    font-size: 32px;
}

/* Navigation */
nav {
    background-color: #333;
    padding: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

nav a:hover {
    color: #e63946;
}

/* Page Content */
.secondary-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
    padding: 20px;
}

.secondary-layout h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.secondary-layout p {
    font-size: 18px;
    max-width: 600px;
    line-height: 1.6;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #e63946;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #c62f3e;
}

/* Footer */
footer {
    background-color: #222;
    padding: 20px;
    margin-top: 20px;
    font-size: 14px;
}
