/* style.css - JInet Home Template */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: #2B0052;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 50px;
    width: auto;
}

.header-title {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
}

.main-content {
    flex: 1;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer {
    background-color: #2B0052;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

/* Footer link styles */
footer.footer a,
.footer a,
footer a {
    color: white !important;
    text-decoration: none;
}

footer.footer a:hover,
.footer a:hover,
footer a:hover {
    color: white !important;
    text-decoration: underline;
}

.footer p {
    color: white;
    margin: 0;
}

.page-title {
    color: #2B0052;
    margin-bottom: 20px;
    font-size: 2em;
}

.content-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1.6;
}

.content-box ul {
    margin: 15px 0;
    padding-left: 40px;
}

.content-box li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.navigation {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.navigation a {
    color: #2B0052;
    text-decoration: none;
    margin-right: 15px;
}

.navigation a:hover {
    text-decoration: underline;
}

.content-box a {
    color: #2B0052;
    text-decoration: none;
}

.content-box a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .main-content {
        padding: 20px 15px;
    }
    
    .content-box {
        padding: 20px;
    }
    
    .page-title {
        font-size: 1.5em;
    }
}