/* Style the navigation menu */
body {margin:0; padding:0; 
	height: 100%;
	font: 100% Lucida Sans, Arial, Verdana, sans-serif; 
	color:#000000; background-color:#ffffff;}

.smaller {
	font-size:70%;
}
header, footer { 
	margin : 0;
	padding : 10px 10px;
}

p {padding : 20px;
}

.copy {
	padding : 20px 20px;
}


.headsection{
  width: 100%;   
  height: 350px;             
  background-position: center; /* Center the background image horizontally and vertically */
  background-size: cover;    /* Resize the background image to cover the div */
  background-repeat: no-repeat; /* Prevent the background image from repeating */
}


.testimonial{
  margin : 20px;
  max-width: 100%;
  padding: 20px 40px 20px 40px;
  background-color: #E5BED6;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box;
  font-style:italic;
}


table.fees{
border:1px;
	border-style:solid;
}

th {
  background-color: #E5BED6;
  padding-right: 5px;
  padding-left:5px;
  padding-top : 0px;
  border:0 px;
}

td{
	border: 1px;
		border-style:solid;

}


footer {
  position: relative; /* Needed for positioning the pseudo-element */
  padding-top: 20px; /* Optional: Add padding to give space below the line */
  background-color: #f4f4f4; /* Optional: Set background color of the div */
}

/* Pseudo-element to create the line */
footer::before {
  content: ''; /* Empty content for the line */
  position: absolute;
  top: 0; /* Position the line at the top */
  left: 10%; /* Offset the line by 10% from the left side to make it 80% wide */
  width: 80%; /* Set the width of the line to 80% of the div */
  height: 1px; /* 1px line */
  background-color: #000; /* Color of the line (can be customized) */

}


/* nav styles */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*
body {
  font-family: Arial, sans-serif;
}*/

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #111;
  color: #fff;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
}

/* Nav menu */
.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.nav-menu a:hover {
  color: #00bcd4;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    text-align: center;
    display: none;
  }

  .nav-menu a {
    padding: 1rem 0;
    border-top: 1px solid #222;
  }

  .nav-menu.active {
    display: flex;
  }
}



