body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    background-color: #f5f5f5; /* Light background for contrast */
    color: #333; /* Default text color, adjust as needed */
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; /* Center items horizontally */
    text-align: center;
    padding: 20px;
    background: #32236C;
    color: #7bdcb5;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-height: 50px; 
    max-width: 100%; 
    height: auto;
}

header h1 {
    flex-grow: 1; /* Allows the title to expand */
    margin: 0; /* Remove default margin */
    padding: 0 50px; 
}

h1 {
    margin: 0;
    align-items: center;
}

.introduction {
    text-align: center;
    margin-bottom: 20px;
}

.introduction {
    background-color: #e6e6e6; /* Lighter gray for a less stark contrast */
    color: #333; /* Darker text color */
    padding: 20px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1000px;
}

.intro-content h2 {
    margin-bottom: 15px;
    color: #32236C;
    font-size: 2em; /* Larger font size for the heading */
}

.intro-content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.showcase {
    background-color: white;
    margin: 20px auto;
    padding: 20px;
    border-radius: 5px;
    border-left: 3px solid #7bdcb5; /* Corporate green */
    border-right: 3px solid #7bdcb5; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 1000px; 
}
.showcase h2 {
    color: #32236C; /* Text color for consistency with the logo */
}

.showcase-link {
    color: #5390d9; /* Color for links */
    text-decoration: none;
}

footer {
    background-color: #32236C; 
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.footer-project p {
    font-size: 0.9em; 
    margin-top: 20px; /* Additional space above this section */
    color: #7bdcb5; /* color for this texta */
}
   
.footer-content .footer-section a {
    color: #7bdcb5 !important; /* link color */
}

@media (max-width: 768px) {
    header {
        flex-direction: column; /* Stacks logo and title vertically on small screens */
    }

    .logo-container, header h1 {
        flex: none; /* Override flex settings for mobile */
        width: 100%; /* Ensure full width to center content */
    }

    header h1 {
        padding-top: 10px; /* Add some space between the logo and the title */
    }
}

@media (max-width: 768px) {
    .footer-project p {
        margin-top: 10px;
    }
}
  
