body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #FFFAF0;
}
header {
    background: #FFFAF0;
    color: #000;
    padding: 1rem 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.company-info {
    justify-content: space-between;
    align-items: left;
    display: flex;
}
.text-company {
	padding-left: 20px;
    flex: 1;
    text-align: left;
}
.logo img {
    height: 80px; 
    text-align: left;
    margin-top:1rem;
}
header h1 {
	font-family: "Times New Roman", Times, Fantasy;
    color: #dcc238;
    font-size: 35px;
}
header h4 {
    color: #000;
    font-family: "Times New Roman", Times, Fantasy;
    font-size: 12px;
    margin-top:-1rem;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    font-family: "Times New Roman", Times, Fantasy;
    gap: 0.3rem;
    font-size: 18px;
}
nav ul li {
    margin-left: 0.3rem;   
}
nav ul li a {
    color: #B22222;
    text-decoration: underline overline;
  	text-decoration-color: #dcc238;
  	text-decoration-style: solid;
  	text-decoration-thickness: 2px; 
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #dcc238;
}
#hero {
    background-image: url('brain.jpg');
    background-position: center;
  	background-size: cover;
  	background-repeat: no-repeat;
    color: #FFFAF0;
    opacity: 1;
    padding: 5rem 0;
    text-align: center;
}
#hero .container{
  width: 100%;
  height: 100%;
  background-color: rgba(255, 20, 147, 0.5);
}
#hero .btn {
    background: #FFFAF0;
    color: #000;    
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    width: 50px;
    
}
#hero h2{
	font-size: 50px;
	color : #FFFAF0;
	font-family: "Times New Roman", Times, Fantasy;
}
#hero p{
	font-size: 20px;
	color : #FFFAF0;
	margin-bottom: 3rem;
	font-family: "Times New Roman", Times, Fantasy;
}
.container {
    width: 80%;
    margin: 0 auto;
    padding: 2rem 0;
}
#services .service-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    gap: 1rem;

}
.service1, .service2, .service3, .service4 {
    background: #f9f9f9; 
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1rem;
    flex: 1 1 calc(23% - 1rem); 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    text-align: center;
}
.service1 p, .service2 p, .service3 p, .service4 p {
    flex-grow: 1; 
    background-color: rgba(0, 0, 0, 0.6);
    font-family: "Times New Roman", Times, Fantasy;
    color: #fff;
}
.service1 ul, .service2 ul, .service3 ul, .service4 ul {
    flex-grow: 1; 
    text-align: left;
    background-color: rgba(0, 0, 0, 0.6);
    font-family: "Times New Roman", Times, Fantasy;
    color: #fff;
    line-height: 1.5;
}
.service1 h2, .service2 h2, .service3 h2, .service4 h2 {
    background-color: rgba(0,0, 0, 0.6);
    font-family: "Times New Roman", Times, Fantasy;
    color: #dcc238;
}
#services .btn {
    background: #dcc238;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px; 
    margin-top: 1rem;
}
#services .service1 {
    background-image: url('banks.jpg');
    background-position: center;
  	background-size: cover;
  	background-repeat: no-repeat;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}
#services .service2 {
    background-image: url('fingerprint.jpg');
    background-position: center;
  	background-size: cover;
  	background-repeat: no-repeat;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}
#services .service3 {
    background-image: url('healthcare.jpg');
    background-position: center;
  	background-size: cover;
  	background-repeat: no-repeat;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}
#services .service4 {
    background-image: url('government.jpg');
    background-position: center;
  	background-size: cover;
  	background-repeat: no-repeat;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}
#about {
    font-family: "Times New Roman", Times, Fantasy;
    color: 'black'; 
}
#about .btn {
    background: #dcc238;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    font-size:15px;
    font-family: "Times New Roman", Times, Fantasy;
}
.more-info {
    display: none;
}
.more-info p {
    font-size: 15px !important; /* Add !important to ensure it overrides other styles */
    font-family: "Times New Roman", Times, Fantasy;
}
#about .about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#about .about-text {
    width: 60%;
}
#about .about-image {
    width: 30%;
    margin-left: 10%;
}
#about .about-image img {
    width: 100%;
    height: auto;
}
#about p {
    font-size: 18px;
}
.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.team-member {
    flex: 1 1 30%;
    box-sizing: border-box;
    margin: 10px 0;
    text-align: center;
}
.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
.team-member p {
    font-size: 16px;
    margin: 5px 0;
    margin: 1rem;
}
.team-member h4 {
    font-size: 20px;
    margin: 5px 0;
    margin: 1rem;
    color: #dcc238;
}
#contact-form {
    display: flex;
    flex-direction: column;
}
#contact-form label {
    margin: 0.5rem 0 0.2rem 0;
}
#contact-form input, #contact-form textarea {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}
#contact-form .btn {
    background: #333;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;    
}
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}