/* General Styles */
body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 960px; 
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

/* Header Styles */
header {
    background-color: #C3B8A5;
    color: #fff;
    padding: 10px 0;
    text-align: center; /* Center text on all screen sizes */
}

h1 {
    margin: 0;
    font-size: 2em; /* Make the h1 responsive */
}

h2 {
    font-size: 1.5em; 
    margin: 5px 0 0;
}

/* Basic Menu Styling */
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #333;
    text-align: center; /* Center the menu items on large screens */
    overflow: hidden;
}
#coolmenu { 
  background-color: #990000;
}

.menu li {
    display: inline-block;
    padding: 10px 15px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
}

.menu a:hover {
    background-color: #555;
    border-radius: 5px;
}
/* Main Content Styles */
main {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack sections vertically on default/larger screens */
}

.main-content {
    flex: 2;
    padding-right: 20px;
    order: 2;
}

article {
    margin-bottom: 20px;
}

/* Sidebar Styles */
.sidebar {
    flex: 1;
    order: 1;
}

/* Footer Styles */
footer {
    text-align: center;
    margin-top: 20px;
    order: 3;
}

/* Download Section Styles */
.download-section {
    text-align: center; /* Center the elements */
}

.download-header {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.download-list {
    list-style: none; /* Remove default bullet points */
    padding: 0;
}

.download-list li {
    margin-bottom: 10px;
}

.download-title {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.download-link {
    display: inline-block; /* Make the link behave like a button */
    padding: 8px 16px;
    background-color: #007bff; /* Blue background color */
    color: #fff; 
    text-decoration: none;
    border-radius: 5px; 
    transition: background-color 0.3s ease; /* Add a hover effect */
}

.download-link:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Responsive Styles (for smaller screens) */
@media (min-width: 769px) {
    main {
        flex-direction: row; /* Display sections side-by-side on larger screens */
    }

    .main-content {
        order: 1;
        padding-right: 20px;
    }

    .sidebar {
        order: 2;
    }
}


@media (max-width: 768px) { 
    .container {
        width: 100%;
    }

    h1 {
        font-size: 1.5em; 
    }

    h2 {
        font-size: 1.2em;
    }
    
    .menu {
        text-align: left;
    }

    .menu li {
        display: block;
        width: 100%;
        text-align: center;
    }

    .main-content,
    .sidebar {
        padding: 0;
    }
}



