@charset "UTF-8";
/* Colors */
/* Typography */
/* Spacing */
.site-header {
  background-color: #2A4C59;
  padding: 10px 0;
  position: relative;
  z-index: 1000;
}
.site-header .container .row {
  justify-content: space-between;
  align-items: center;
}
.site-header .site-branding {
  text-align: left;
}
.site-header .site-branding .custom-logo-link {
  display: inline-block;
  line-height: 1;
}
.site-header .site-branding .custom-logo-link .custom-logo {
  max-height: 80px;
  width: auto;
  height: auto;
  transition: transform 0.3s ease;
}
.site-header .site-branding .custom-logo-link .custom-logo:hover {
  transform: scale(1.02);
}
.site-header .site-branding .site-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
}
.site-header .site-branding .site-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-header .site-branding .site-title a:hover {
  color: #8F7075;
}
.site-header .site-branding .site-description {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-style: italic;
  text-align: left;
}
.site-header .main-navigation {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.site-header .main-navigation .primary-menu-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.site-header .main-navigation .primary-menu-wrapper .primary-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.site-header .main-navigation .primary-menu-wrapper .primary-menu .nav-item {
  position: relative;
}
.site-header .main-navigation .primary-menu-wrapper .primary-menu .nav-item .nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 18px;
  display: block;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.site-header .main-navigation .primary-menu-wrapper .primary-menu .nav-item .nav-link:hover {
  color: #ffffff;
  border-bottom: 2px solid #8F7075;
}
.site-header .main-navigation .primary-menu-wrapper .primary-menu .nav-item .nav-link.active {
  border-bottom: 2px solid #8F7075;
  color: #ffffff;
}
.site-header .main-navigation .primary-menu-wrapper .primary-menu .nav-item.dropdown .dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.site-header .main-navigation .primary-menu-wrapper .primary-menu .nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}
.site-header .main-navigation .primary-menu-wrapper .primary-menu .nav-item.dropdown .dropdown-menu {
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  margin-top: 10px;
  min-width: 200px;
  right: 0;
  left: auto;
}
.site-header .main-navigation .primary-menu-wrapper .primary-menu .nav-item.dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 20px;
  left: auto;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
}
.site-header .main-navigation .primary-menu-wrapper .primary-menu .nav-item.dropdown .dropdown-menu .nav-item .nav-link {
  color: #2A4C59;
  padding: 10px 20px;
  border-radius: 0;
}
.site-header .main-navigation .primary-menu-wrapper .primary-menu .nav-item.dropdown .dropdown-menu .nav-item .nav-link:hover {
  background-color: #f8f9fa;
  color: #8F7075;
  transform: none;
  padding-left: 25px;
}
.site-header .main-navigation .primary-menu-wrapper .primary-menu .nav-item.dropdown .dropdown-menu .nav-item .nav-link.active {
  border-bottom: 2px solid #8F7075;
  color: #ffffff;
}
.site-header .main-navigation .menu-toggle {
  background: none;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.site-header .main-navigation .menu-toggle:hover {
  background-color: #8F7075;
  border-color: #8F7075;
}
.site-header .main-navigation .menu-toggle .hamburger {
  display: flex;
  flex-direction: column;
  width: 20px;
}
.site-header .main-navigation .menu-toggle .hamburger span {
  height: 2px;
  background-color: currentColor;
  margin: 2px 0;
  transition: all 0.3s ease;
}
.site-header .main-navigation .menu-toggle .hamburger span:nth-child(1) {
  width: 100%;
}
.site-header .main-navigation .menu-toggle .hamburger span:nth-child(2) {
  width: 80%;
}
.site-header .main-navigation .menu-toggle .hamburger span:nth-child(3) {
  width: 100%;
}
.site-header .main-navigation .menu-toggle .menu-text {
  font-size: 0.9rem;
  font-weight: 500;
}
.site-header .main-navigation .menu-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.site-header .main-navigation .menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}
.site-header .main-navigation .menu-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.site-header .main-navigation .mobile-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.site-header .main-navigation .mobile-menu-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.site-header .main-navigation .mobile-menu-wrapper.active .mobile-menu-content {
  transform: translateX(0);
}
.site-header .main-navigation .mobile-menu-wrapper .mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.site-header .main-navigation .mobile-menu-wrapper .mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-color: #2A4C59;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.site-header .main-navigation .mobile-menu-wrapper .mobile-menu-content .mobile-menu-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-end;
}
.site-header .main-navigation .mobile-menu-wrapper .mobile-menu-content .mobile-menu-header .mobile-menu-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}
.site-header .main-navigation .mobile-menu-wrapper .mobile-menu-content .mobile-menu-header .mobile-menu-close:hover {
  color: #8F7075;
}
.site-header .main-navigation .mobile-menu-wrapper .mobile-menu-content .mobile-primary-menu {
  list-style: none;
  margin: 0;
  padding: 20px 0;
}
.site-header .main-navigation .mobile-menu-wrapper .mobile-menu-content .mobile-primary-menu li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 25px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}
.site-header .main-navigation .mobile-menu-wrapper .mobile-menu-content .mobile-primary-menu li a:hover {
  background-color: rgba(143, 112, 117, 0.2);
  border-left-color: #8F7075;
  padding-left: 30px;
}
.site-header .main-navigation .mobile-menu-wrapper .mobile-menu-content .mobile-primary-menu li a.active {
  border-bottom: 2px solid #8F7075;
  border-left-color: #8F7075;
}
.site-header .main-navigation .mobile-menu-wrapper .mobile-menu-content .mobile-primary-menu li ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.site-header .main-navigation .mobile-menu-wrapper .mobile-menu-content .mobile-primary-menu li ul li a {
  padding-left: 45px;
  font-size: 1rem;
}
.site-header .main-navigation .mobile-menu-wrapper .mobile-menu-content .mobile-primary-menu li ul li a:hover {
  padding-left: 50px;
}
@media (max-width: 991.98px) {
  .site-header {
    padding: 12px 0;
  }
  .site-header .site-branding .custom-logo {
    max-height: 120px;
  }
  .site-header .container .row {
    justify-content: space-between;
  }
}
@media (max-width: 767.98px) {
  .site-header {
    padding: 10px 0;
  }
  .site-header .site-branding .custom-logo {
    max-height: 80px;
  }
  .site-header .site-title {
    font-size: 1.5rem;
  }
  .site-header .mobile-menu-content {
    width: 280px;
  }
  .site-header .container .row {
    justify-content: space-between;
  }
  .site-header .container .row .col-6 {
    display: flex;
  }
  .site-header .container .row .col-6:first-child {
    justify-content: flex-start;
  }
  .site-header .container .row .col-6:last-child {
    justify-content: flex-end;
  }
}
@media (max-width: 575.98px) {
  .site-header .mobile-menu-content {
    width: 100%;
  }
  .site-header .menu-toggle .menu-text {
    display: none;
  }
}
.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(42, 76, 89, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  animation: slideDown 0.3s ease;
}
.site-header.sticky .custom-logo {
  max-height: 120px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 6px;
  z-index: 999999;
  text-decoration: none;
  background: #2A4C59;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 3px;
}
.skip-link:focus {
  left: 6px;
}

@media print {
  .site-header {
    display: none;
  }
}
.container-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 30px;
  background-color: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
  min-height: 100vh;
}

.page-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #2A4C59;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.page-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  background-color: #8F7075;
  margin: 12px auto 0;
}

.content {
  margin-top: 50px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.content h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 700;
}

.content p {
  margin-bottom: 20px;
  text-align: justify;
}

.content ul {
  margin-left: 30px;
  margin-bottom: 20px;
}

.content ul li {
  margin-bottom: 10px;
}

.site-footer {
  background-color: #2A4C59;
  color: #ffffff;
  padding: 60px 0 0;
  margin-top: 80px;
}
.site-footer .footer-content {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .footer-widget {
  margin-bottom: 30px;
}
.site-footer .footer-widget .footer-widget-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
}
.site-footer .footer-widget .footer-widget-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #8F7075;
}
.site-footer .footer-widget .footer-description {
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 25px;
}
.site-footer .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #FFFFFF;
}
.site-footer .contact-info .contact-item i {
  width: 18px;
  margin-right: 12px;
  color: #8F7075;
  font-size: 0.9rem;
}
.site-footer .contact-info .contact-item a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .contact-info .contact-item a:hover {
  color: #8F7075;
}
.site-footer .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-menu li {
  margin-bottom: 10px;
}
.site-footer .footer-menu li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}
.site-footer .footer-menu li a:hover {
  color: #8F7075;
  padding-left: 5px;
}
.site-footer .footer-menu li a:before {
  content: "→";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #8F7075;
}
.site-footer .footer-menu li a:hover:before {
  opacity: 1;
  left: -10px;
}
.site-footer .services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .services-list li {
  margin-bottom: 10px;
}
.site-footer .services-list li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
}
.site-footer .services-list li a:hover {
  color: #8F7075;
  border-bottom-color: rgba(143, 112, 117, 0.3);
}
.site-footer .social-media {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.site-footer .social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.site-footer .social-media a:hover {
  background-color: #8F7075;
  color: #FFFFFF;
  transform: translateY(-3px);
}
.site-footer .newsletter-signup p {
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.site-footer .newsletter-signup .newsletter-form .input-group {
  display: flex;
}
.site-footer .newsletter-signup .newsletter-form .input-group .form-control {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px 0 0 5px;
  color: #FFFFFF;
  padding: 12px 15px;
  font-size: 0.9rem;
}
.site-footer .newsletter-signup .newsletter-form .input-group .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .newsletter-signup .newsletter-form .input-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .newsletter-signup .newsletter-form .input-group .form-control:focus {
  outline: none;
  border-color: #8F7075;
  background-color: rgba(255, 255, 255, 0.15);
}
.site-footer .newsletter-signup .newsletter-form .input-group .btn {
  background-color: #8F7075;
  border: 1px solid #8F7075;
  color: #FFFFFF;
  border-radius: 0 5px 5px 0;
  padding: 12px 20px;
  transition: all 0.3s ease;
}
.site-footer .newsletter-signup .newsletter-form .input-group .btn:hover {
  background-color: #725a5e;
  border-color: #725a5e;
}
.site-footer .newsletter-signup .wpcf7-form .wpcf7-form-control-wrap {
  position: relative;
}
.site-footer .newsletter-signup .wpcf7-form .wpcf7-form-control-wrap input[type=email] {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #FFFFFF;
  padding: 12px 15px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.site-footer .newsletter-signup .wpcf7-form .wpcf7-form-control-wrap input[type=email]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .newsletter-signup .wpcf7-form .wpcf7-form-control-wrap input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .newsletter-signup .wpcf7-form .wpcf7-form-control-wrap input[type=email]:focus {
  outline: none;
  border-color: #8F7075;
  background-color: rgba(255, 255, 255, 0.15);
}
.site-footer .newsletter-signup .wpcf7-form input[type=submit] {
  background-color: #8F7075;
  border: 1px solid #8F7075;
  color: #FFFFFF;
  border-radius: 5px;
  padding: 12px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.site-footer .newsletter-signup .wpcf7-form input[type=submit]:hover {
  background-color: #725a5e;
  border-color: #725a5e;
}
.site-footer .footer-bottom {
  background-color: #1d343d;
  padding: 25px 0;
}
.site-footer .footer-bottom .copyright p {
  margin: 0;
  color: #FFFFFF;
  font-size: 0.9rem;
}
.site-footer .footer-bottom .footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}
.site-footer .footer-bottom .footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.site-footer .footer-bottom .footer-links a:hover {
  color: #8F7075;
}
.site-footer footer {
  background-color: #2A4C59;
  color: #FFFFFF;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 0;
  }
  .site-footer .footer-widget {
    margin-bottom: 40px;
    text-align: center;
  }
  .site-footer .footer-widget .footer-widget-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .site-footer .social-media {
    justify-content: center;
  }
  .site-footer .footer-bottom {
    text-align: center;
  }
  .site-footer .footer-bottom .footer-links {
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .site-footer .footer-links {
    flex-direction: column;
    gap: 15px;
  }
  .site-footer .footer-links a {
    display: block;
  }
  .site-footer .social-media a {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  .site-footer .newsletter-form .input-group {
    flex-direction: column;
  }
  .site-footer .newsletter-form .input-group .form-control {
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .site-footer .newsletter-form .input-group .btn {
    border-radius: 5px;
  }
}

@media (prefers-color-scheme: dark) {
  .site-footer {
    background-color: #1a1a1a;
  }
  .site-footer .footer-bottom {
    background-color: #0f0f0f;
  }
}
@media print {
  .site-footer {
    display: none;
  }
}
.slider-container {
  margin: 0px;
  padding: 0px;
  background-color: #2A4C59; /* Background color */
}

.custom-slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.custom-slider {
  display: flex;
  overflow: hidden; /* Hide slides outside the container */
  position: relative;
  width: 100%;
}

.slide {
  min-width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  color: white;
  transition: transform 0.5s ease-in-out;
  display: flex;
  font-family: lorin, sans-serif;
}

.slide-left {
  width: 50%;
  padding-right: 20px;
}
.slide-left .slider-content {
  padding-bottom: 20px;
}
.slide-left h2 {
  margin-top: 0;
}

.slide-right {
  width: 50%;
  text-align: right;
}
.slide-right img {
  max-width: 100%;
  height: auto;
  border-radius: 100px 0 0 0;
}

.slide-right img {
  max-width: 100%;
  height: auto;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
}

.slider-button-left {
  left: -60px; /* Pas aan als nodig */
}

.slider-button-right {
  right: -60px;
}

@media (max-width: 768px) {
  .slide {
    min-width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    color: white;
    transition: transform 0.5s ease-in-out;
    display: flex;
    flex-wrap: wrap;
    font-family: "Mundial", sans-serif;
  }
  .slider-button-left {
    left: 10px;
    right: auto;
  }
  .slider-button-right {
    right: 10px;
    left: auto;
  }
  .slider-content {
    font-size: small;
    padding-bottom: 20px;
  }
  .slide-left, .slide-right {
    width: 100%; /* Volledige breedte */
  }
  .slide-left {
    order: 2;
  }
  .slide-right {
    order: 1;
  }
  .slide-right img {
    padding-bottom: 10px;
  }
}
/* Contactpagina container */
.contact-container {
  max-width: 600px;
  margin: 40px auto;
  background: #8F7075;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.contact-container h2 {
  margin-bottom: 20px;
  color: white;
}

/* Contact Form 7 styling binnen de container */
.contact-container .wpcf7-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-container .wpcf7-form input,
.contact-container .wpcf7-form textarea {
  width: 100%;
  padding: 5px;
  /*margin-bottom: 18px;*/
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  resize: vertical;
}

.contact-container .wpcf7-form button,
.contact-container .wpcf7-form input[type=submit] {
  background: #2A4C59;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-container .wpcf7-form button:hover,
.contact-container .wpcf7-form input[type=submit]:hover {
  background: #8F7075;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Mundial", sans-serif;
  line-height: 1.6rem;
}

.hero {
  background-color: #2A4C59;
  color: white;
  padding: 50px 0;
  position: relative;
}

.header {
  display: flex;
  align-items: center; /* verticale uitlijning midden */
  padding-bottom: 20px;
}

.header .line {
  width: 50%;
  height: 1px;
  background-color: #8F7075; /* lichte lijn kleur */
  margin-right: 5px;
}

.card {
  border: 1px solid #2A4C59;
}

.card-header {
  background-color: #2A4C59;
  color: white;
  font-weight: 700;
}

.cta-button {
  padding: 10px 25px;
  background-color: #8F7075;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  border: 0px;
}

h1, h2, h3, h4 {
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
}

.container-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 0px;
  background-color: #ffffff;
  min-height: 100vh;
}

.page-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #2A4C59;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.page-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  background-color: #8F7075;
  margin: 12px auto 0;
}

.content {
  margin-top: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.content h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 700;
}

.content p {
  margin-bottom: 20px;
  text-align: justify;
}

.content ul {
  margin-left: 30px;
  margin-bottom: 20px;
}

.content ul li {
  margin-bottom: 10px;
}