/* General Styles */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #000;
  margin: 0;
  padding: 0;
  text-align: center; /* Center align all text */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

header.header {
  background-color: #333;
  padding: 20px 0;
}

header .logo {
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}

header .nav {
  float: right;
}

header .nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header .nav ul li {
  display: inline-block;
  margin-left: 20px;
}

header .nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  font-weight: 600;
  text-transform: uppercase;
}

header .nav ul li a.active,
header .nav ul li a:hover {
  background-color: #6345e9;
  border-radius: 4px;
}

/* Hero Section */
.hero-section {
  background-color: #fff;
  color: #000;
  padding: 60px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-section img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Service List */
.service-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  font-size: 18px;
}

.service-list li {
  margin-bottom: 10px;
  font-weight: 600;
}

/* Additional Content */
.additional-content {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

.additional-content h4 {
  font-size: 24px;
  margin-bottom: 15px;
}

.additional-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.additional-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.additional-content ul li {
  margin-bottom: 10px;
  font-weight: 600;
}

.additional-content .btn-primary {
  background-color: #5545e9;
  border: none;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
}

.additional-content .btn-primary:hover {
  background-color: #5545e9;
}

/* Footer */
footer.footer {
  background-color: #333;
  color: #fff;
  padding: 60px 0;
  text-align: center; /* Center align footer content */
}

footer .footer-content {
  display: flex;
  justify-content: center; /* Center the footer sections */
  flex-wrap: wrap;
}

footer .footer-about,
footer .footer-links {
  flex: 1;
  margin: 0 15px;
  min-width: 250px;
}

footer .footer-about h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

footer .footer-about address {
  font-style: normal;
  line-height: 1.6;
}

footer .footer-about p {
  margin: 10px 0;
}

footer .footer-links h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-links ul li {
  margin-bottom: 10px;
}

footer .footer-links ul li a {
  color: #5545e9;
  text-decoration: none;
}

footer .footer-links ul li a:hover {
  text-decoration: underline;
}

footer .footer-bottom {
  text-align: center;
  padding: 20px;
  background-color: #222;
}

footer .footer-bottom p {
  margin: 0;
  font-size: 14px;
}
