/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header styles */
header {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header img {
  max-width: 150px; /* Adjust the size of the logo as needed */
}

header h1 {
  font-size: 24px;
  color: #333;
}

nav ul {
  list-style: none;
  margin-top: 10px;
}

nav ul li {
  display: inline-block;
  margin-right: 10px;
}

nav ul li a {
  text-decoration: none;
  color: #666;
  padding: 5px;
}

/* Hero section styles */
#hero {
  background-color: #f5f5f5;
  padding: 100px 0;
  text-align: center;
}

#hero h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

#hero p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  background-color: #ff5e3a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e53a22;
}

/* Services section styles */
#services {
  background-color: #fff;
  padding: 100px 0;
  text-align: center;
}

#services h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

#services p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

#services ul {
  list-style: none;
  margin-bottom: 40px;
}

#services ul li {
  margin-bottom: 10px;
}

/* Offices section styles */
#offices {
  background-color: #f5f5f5;
  padding: 100px 0;
  text-align: center;
}

#offices h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

#offices p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

#offices img {
  max-width: 100%; /* Adjust the size of the office image as needed */
}

/* Team section styles */
#team {
  background-color: #fff;
  padding: 100px 0;
  text-align: center;
}

#team h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

.team-member {
  margin-bottom: 40px;
}

.team-member img {
  max-width: 200px; /* Adjust the size of the employee image as needed */
  border-radius: 50%;
  margin-bottom: 10px;
}

.team-member h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

/* Testimonial section styles */
#testimonial {
  background-color: #f5f5f5;
  padding: 100px 0;
  text-align: center;
}

blockquote {
  font-size: 20px;
  color: #666;
  margin-bottom: 20px;
}

blockquote p {
  margin-bottom: 10px;
}

blockquote cite {
  font-style: italic;
  color: #999;
}

/* Footer styles */
footer {
  background-color: #333;
  padding: 20px;
  text-align: center;
}

footer p {
  font-size: 14px;
  color: #fff;
}

.other-links-button {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.other-links-button:hover {
  background-color: #000;
}
