


/* Reset default margin and padding for all elements */
body, h1, p {
  margin: 0;
  padding: 0;
} 

/* Global styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}  

/* Header styles */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #336699;
  color: #fff;
}

/* Limit the width of the header content to 800 pixels */
.header-content {
  max-width: 800px;
}

.header-content h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.header-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.header-content a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  color: #336699;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.header-content a:hover {
  background-color: #f2f2f2;
}

/* About section styles */
.about-section {
  padding: 40px;
  background-color: #fff;
}

.about-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #336699;
}

/* Testimonials section styles */
.testimonials-section {
  padding: 40px;
  background-color: #f9f9f9;
}

.testimonials-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #336699;
}

.testimonial {
  margin-bottom: 30px;
}

.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.testimonial blockquote {
  font-size: 18px;
  margin: 0;
}

.testimonial cite {
  display: block;
  margin-top: 10px;
  font-style: italic;
}

/* Services section styles */
.services-section {
  padding: 40px;
  background-color: #fff;
}

.services-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #336699;
}

.services-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-section li {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Portfolio section styles */
.portfolio-section {
  padding: 40px;
  background-color: #f9f9f9;
}

.portfolio-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #336699;
}

.slider-container {
  display: flex;
  overflow-x: auto;
}

.slide {
  flex: 0 0 400px;
  margin-right: 20px;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Contact section styles */
.contact-section {
  padding: 40px;
  background-color: #fff;
}

.contact-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #336699;
}

#contact-form {
max-width: 400px;
margin: 0 auto;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
font-size: 18px;
margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 4px;
}

.form-group textarea {
resize: vertical;
}

button[type="submit"] {
display: block;
background-color: #336699;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
background-color: #234567;
}


/* Footer styles */
footer {
  padding: 20px;
  background-color: #336699;
  color: #fff;
  display: flex;
  justify-content: space-between;
}

.footer-content {
  max-width: 800px;
}

.footer-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-content p {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-content a {
  display: inline-block;
  margin-right: 10px;
}


/* Navigation bar styles */
nav {
  background-color: #336699;
  color: #fff;
  padding: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 0 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: #f2f2f2;
  color: #336699;
}
