/* General Styling */
body {
    font-family: 'Lato', sans-serif;
    background-color: #1e1e1e;
    color: #ecf0f1;
    margin: 0;
    padding: 20px 0;
    margin-top: 100px; /* Space for the fixed header */
}

/* Header Styling */
/* Header Styling */
header {
    background-color: #2c3e50;
    padding: 10px 20px;
    color: #ecf0f1;
    font-size: 2rem;
    font-weight: bold;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center; /* Center the header content horizontally */
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space out the arrows and title */
    width: 100%;
    max-width: 1000px; /* Max width to contain the content within a certain width */
    margin-left: -40px; /* Shift the entire content 10px to the left */
}

.header-content h1 {
    margin: 0;
    font-size: 2.2rem;
}

.header-content a {
    font-size: 2rem;
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 20px;
}


header h1 {
    margin: 0;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
}

header a {
    font-size: 2rem;
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 20px;
}

/* Main Section Styling */
section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: #2c3e50;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

h1, h2, h3 {
    color: #ecf0f1;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1abc9c;
}

h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #f39c12;
}

p, ul {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #bdc3c7;
}

ul li {
    margin-bottom: 10px;
}

/* Image Styling */
.concept-img {
    width: 100%;
    max-width: 600px;
    margin: 20px 0;
    display: block;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    position: relative;
}

footer p {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-top: 15px;
}

footer a {
    display: inline-block;
    background-color: #1abc9c;
    color: #ecf0f1;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    margin: 5px;
    transition: background-color 0.3s ease;
}

footer a:hover {
    background-color: #16a085;
}

/* Animations */
.fade-in {
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    body {
        padding: 10px;
    }
    section {
        padding: 15px;
    }
}
