/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f9fa;
    padding: 20px;
}

header { 
	font-family: "Montserrat", sans-serif;
	margin: 25px auto;
	text-align:center;
	font-weight: 400;
}

.content-logo { 
	text-align: center;
}
.content-logo img{ 
	margin: auto;
	max-width: 10%; 
}

/* Main Container */
.glossary-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
h3 {
    font-size: 1.8em;
    color: #0077cc;
	margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
    text-transform: uppercase;
}

/* Glossary Row */
.glossary-row {
    margin-bottom: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
}

.glossary-row:last-child {
    border-bottom: none;
}

/* Term Styling */
.glossary-row span {
    font-weight: bold;
    color: #333333;
    margin-right: 5px;
}

/* Definition Styling */
.definition {
    color: #555555;
}

/* Highlight Hover Effect */
.glossary-row:hover {
    background-color: #f0f4f8;
    transition: background-color 0.2s ease-in-out;
}

footer { 
	font-family: "Montserrat", sans-serif;
	margin: 40px auto;
	text-align:center;
}


/* Responsive Styling */
@media screen and (max-width: 768px) {
    .glossary-container {
        padding: 15px;
    }
    h3 {
        font-size: 1.5em;
    }
}


a {
	text-decoration: none;
	color: inherit;
}