/* General Page Styles */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #0C3C60; /* Direct Systems Blue */
    color: white;
    padding: 20px;
}

/* Header Bar */
.header {
    background-color: #FF0000; /* Direct Systems Red */
    padding: 15px;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

/* Main Content Container */
.container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    color: #333; /* Dark text inside content box */
    max-width: 700px;
}

/* Direct Systems Logo */
.logo {
    width: 200px;
    margin-bottom: 20px;
}

/* Text Styles */
h1, h2 {
    color: #333;
}

p {
    font-size: 18px;
    margin: 15px 0;
}

.pagebody {
    background-color: #0C3C60; /* Direct Systems Blue */
    color: white;
}
.btn-secondary {
    background-color: #0C3C60; /* Deep Blue */
    color: white;
    border: none;
    margin-top: 10px;
}

.btn-secondary:hover {
    background-color: #092d4a;
}

/* Footer */
.footer {
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}
