/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}
 ul{
	margin: 10px 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	align-items: center;
}
/* Header Styles */
.header {
    background-color: #0B4F74;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.nav ul {
    list-style-type: none;
}

.nav ul li {
    display: inline;
    margin: 0 10px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.nav ul li a:hover {
    color: #f4f4f4;
    text-decoration: underline;
}

/* Hero Section Styles */
.hero {
    background: url('/imgs/hero-bg.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
	.container{
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: rgba(0,0,0, .5);
	width: 100%;
	height: 100%;
}
}

.hero h2 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero .btn {
    background-color: #4F2398;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
	margin: 0 auto;
}

.hero .btn:hover {
    filter: brightness(0.8);
}

/* Services Section Styles */
.services {
	color: #4F2398;
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
	flex-wrap: wrap;
    justify-content: space-around;
}

.card {
    background-color: #f4f4f4;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 30%;
	flex: 1 1 200px;
	min-width: 200px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
}

.card li {
	font-size: .8rem;
font-weight: bold;
}

/* Footer Styles */
.footer {
    background-color: #0B4F74;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin: 0;
}
