/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  background-color: #f4f4f4; /* Set background color for the entire body */
}

header {
  background: #004080;
  color: #fff;
  padding: 0px 0;
  text-align: center;
  height: 100%; /* Adjust header height */
  box-sizing: border-box; /* Include padding in height calculation */
}

header a {
  text-decoration: none; /* Remove underline */
  color: inherit; /* Keep the original text color */
}

header h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

header p {
  font-size: 20px;
  font-weight: 300;
}

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

section {
  padding: 50px 0;
  text-align: center;
}

section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

section p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Products & Services Section */
#services h2 {
  padding-bottom: 30px; /* Add padding below the title */
  text-align: center;
}

/* Flexbox Layout for Services Section */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service-item {
  flex: 1 1 calc(33.33% - 30px);
  margin: 15px;
  padding: 20px;
  background: #f4f4f4;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.service-item img {
  width: 100%;
  height: auto;
  max-height: 200px; /* Maintain consistent image height */
  object-fit: cover; /* Ensure image fills the space without distortion */
  border-radius: 10px;
}

.service-item h3 {
  font-size: 24px;
  margin: 15px 0;
}

.service-item p {
  flex-grow: 1;
}

/* Accordion Styles */
.accordion {
  width: 80%;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-item:last-child {
  border-bottom: none; /* Remove border for the last item */
}

.accordion-header {
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  background-color: #0073e6;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background-color: #005bb5; /* Change background color on hover */
}

.accordion-content {
  padding: 15px;
  display: none; /* Initially hidden */
  background-color: #fafafa;
  line-height: 1.6;
}

.accordion-content ul {
  padding-left: 20px;
}

.accordion-content ul li {
  list-style-type: circle; /* Use circle bullets for lists */
  margin-bottom: 10px;
}

.arrow {
  transition: transform 0.2s; /* Smooth transition for rotation */
}

.arrow.rotate {
  transform: rotate(90deg); /* Rotate arrow when expanded */
}

.external-details {
  display: none; /* Initially hidden */
  width: 80%;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

footer {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 0;
  font-size: 14px;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 20px;
}

.accordion {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  padding: 20px;
}

.accordion-header {
  font-size: 18px;
  cursor: pointer;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
}

.accordion-header:hover {
  background-color: #f1f1f1;
}

.accordion-content {
  display: none;
  padding: 10px;
}

.arrow {
  transition: transform 0.3s;
}

.active .arrow {
  transform: rotate(90deg);
}

.accordion-item {
  margin-bottom: 10px;
}
