/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

a {
    color: #333;
    text-decoration: underline; /* Set default to underline */
    transition: color 0.3s;
}

a.no-underline {
    text-decoration: none; /* Use this class for links without underline */
}
.section-header::after {
    content: "";
    display: block;
    height: 3px; /* Height of the accent line */
    background: #0056b3; /* Accent color */
    width: auto; Width of the accent line */
    margin-bottom: 5px; /* Space between the line and the text */
}

.section-header {
    font-size: 1.5em; /* Adjust font size */
    font-weight: bold; /* Bold text */
    display: inline-block; /* Ensure width defined by content */
}
a:hover {
    color: #0056b3;
}

.highlight {
   text-align: center;
   padding: 0;
}

ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

li {
    display: inline-block;
}

.highlight li {
   display: inline-block;
}

/* For desktop: */
body {
    background-color: white;
}

/* Header Styles */
header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px;
    text-align: center;
}

header .logo h1 {
    font-size: 4em;     /* Large title */
    font-weight: bold;  /* Bolder text */
    margin: 0;
    color: #333;
}

header .logo h2 {
    font-size: 1.5em;   /* Adjust subtitle size */
    color: #666;
    margin: 0;
}
 .header {
            background-color: lightgrey;
            border: 2px solid black;
            padding: 20px;
        }

        .header h1 {
            margin: 0;
        }
/* Main Content Styles */
main {
    display: grid;
    grid-template-columns: 30% 40% 30%;
    gap: 20px;
    padding: 20px;
}

section {
    border: none;
    padding: 0;
    margin: 0;
}

section h3 {
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 10px;
    font-size: 1.5em;
    color: #444;
    margin-bottom: 20px;
}

ul.headlines {
    list-style-type: none;
    padding: 0;
}

ul.headlines li {
    margin-bottom: 10px;
}

ul.headlines li a {
    text-decoration: none;
    color: #333;
    font-size: 1.2em;
    font-weight: bold;
}

ul.headlines li a:hover {
    text-decoration: underline;
}

/* Footer Styles */
/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

/* Additional Styling for Responsive Design */
@media (max-width: 1200px) {
    main {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    section h3 {
        font-size: 1.2em;
    }

    ul.headlines li a {
        font-size: 1em;
    }
}
@media only screen and (max-width: 600px) {
    body {
        background-color: lightblue;
    }
}
@media (max-width: 600px) {
    header .logo h1 {
        font-size: 2.5em; /* Smaller title for mobile devices */
    }

    header .logo h2 {
        font-size: 1em;  /* Smaller subtitle for mobile devices */
    }
   
 		
	main {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    section h3 {
        font-size: 1.2em;
    }

    ul.headlines li a {
        font-size: 1em;
    }
}

/* Ensuring images, if used, are responsive */
img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}	

