* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header and Navigation */
header {
    background-color: #E5E5E5;
    padding: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
/* Remove underline and prevent color change on click */
a.logo {
    text-decoration: none;  
    color: inherit;       
}

a.logo:visited {
    color: inherit;  /* Prevents the color from changing after being clicked */
}

a.logo:hover {
    text-decoration: none;  /* Ensures no underline on hover */
}

a.logo:focus, 
a.logo:active {
    text-decoration: none;  /* Ensures no underline on focus or active state */
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

.auth-buttons button {
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-btn {
    background-color: #f4f4f4;
    color: #333;
}

.signup-btn {
    background-color: #14213D;
    color: #fff;
}
/* Innovation Hub Intro Section */
#innovation-hub-intro {
    background-color: #FCA311;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

#innovation-hub-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#innovation-hub-intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Article Section Styles */
#innovation-hub-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
}

.article-section {
    margin-bottom: 2rem;
}

.article-section h2 {
    font-size: 2rem;
    color: #14213D;
    margin-bottom: 1rem;
    text-align: center;
}

.article-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.article-section ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

.article-section ul li {
    margin-bottom: 0.5rem;
}

.article-section ul li a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #FCA311;
    transition: color 0.3s ease;
}

.article-section ul li a:hover {
    color: #14213D;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    #innovation-hub-intro h1 {
        font-size: 2rem;
    }

    #innovation-hub-intro p {
        font-size: 1rem;
    }

    .article-section h2 {
        font-size: 1.5rem;
    }

    .article-section p {
        font-size: 1rem;
    }

    .article-section ul li a {
        font-size: 1rem;
    }
}
