@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem 0;
}

a {
  color: #A69E8C;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #c51818;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.btn.btn-primary {
  background: #A69E8C;
  color: #fff;
}
.btn.btn-primary:hover {
  background: linear-gradient(135deg, #731919 0%, #E52B2B 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 43, 43, 0.3);
}
.btn.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #A69E8C;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.btn.btn-secondary:hover {
  background: linear-gradient(135deg, #731919 0%, #E52B2B 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 43, 43, 0.3);
}

.form .form-group {
  margin-bottom: 1.5rem;
}
.form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}
.form .form-group input,
.form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form .form-group input:focus,
.form .form-group textarea:focus {
  outline: none;
  border-color: #A69E8C;
}
.form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h3 {
  color: #A69E8C;
  margin-bottom: 1rem;
}
.service-card p {
  color: #666;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  gap: 2rem;
}
.about-stats .stat {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
}
.about-stats .stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #A69E8C;
  margin-bottom: 0.5rem;
}
.about-stats .stat .stat-label {
  color: #666;
  font-weight: 500;
}

.minadmin-gallery-list .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, 380px);
  gap: 25px;
  margin: 0;
}
@media (max-width: 768px) {
  .minadmin-gallery-list .row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.minadmin-gallery-list .col-md-3 {
  width: 100%;
  margin: 0;
  padding: 0;
}
.minadmin-gallery-list .gallery-image-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.minadmin-gallery-list .gallery-image-card:hover {
  transform: translateY(-5px);
}
.minadmin-gallery-list .gallery-image-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.minadmin-gallery-list a {
  display: block;
  position: relative;
  overflow: hidden;
  height: 280px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.minadmin-gallery-list a:hover {
  transform: translateY(0) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.minadmin-gallery-list a:hover::before {
  opacity: 1;
}
.minadmin-gallery-list a:hover img {
  transform: scale(1.1);
}
.minadmin-gallery-list a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.minadmin-gallery-list a::after {
  content: "\f00e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 1.8rem;
  color: #fff;
  z-index: 3;
  transition: transform 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.minadmin-gallery-list a:hover::after {
  transform: translate(-50%, -50%) scale(1);
}
.minadmin-gallery-list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.minadmin-gallery-list .col-md-3 {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}
.minadmin-gallery-list .col-md-3:nth-child(1) {
  animation-delay: 0.1s;
}
.minadmin-gallery-list .col-md-3:nth-child(2) {
  animation-delay: 0.2s;
}
.minadmin-gallery-list .col-md-3:nth-child(3) {
  animation-delay: 0.3s;
}
.minadmin-gallery-list .col-md-3:nth-child(4) {
  animation-delay: 0.4s;
}
.minadmin-gallery-list .col-md-3:nth-child(5) {
  animation-delay: 0.5s;
}
.minadmin-gallery-list .col-md-3:nth-child(6) {
  animation-delay: 0.6s;
}
.minadmin-gallery-list .col-md-3:nth-child(7) {
  animation-delay: 0.7s;
}
.minadmin-gallery-list .col-md-3:nth-child(8) {
  animation-delay: 0.8s;
}
.minadmin-gallery-list .col-md-3:nth-child(9) {
  animation-delay: 0.9s;
}
.minadmin-gallery-list .col-md-3:nth-child(10) {
  animation-delay: 1s;
}
.minadmin-gallery-list .col-md-3:nth-child(11) {
  animation-delay: 1.1s;
}
.minadmin-gallery-list .col-md-3:nth-child(12) {
  animation-delay: 1.2s;
}
.minadmin-gallery-list .col-md-3:nth-child(13) {
  animation-delay: 1.3s;
}
.minadmin-gallery-list .col-md-3:nth-child(14) {
  animation-delay: 1.4s;
}
.minadmin-gallery-list .col-md-3:nth-child(15) {
  animation-delay: 1.5s;
}
.minadmin-gallery-list .col-md-3:nth-child(16) {
  animation-delay: 1.6s;
}
.minadmin-gallery-list .col-md-3:nth-child(17) {
  animation-delay: 1.7s;
}
.minadmin-gallery-list .col-md-3:nth-child(18) {
  animation-delay: 1.8s;
}
.minadmin-gallery-list .col-md-3:nth-child(19) {
  animation-delay: 1.9s;
}
.minadmin-gallery-list .col-md-3:nth-child(20) {
  animation-delay: 2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sl-overlay {
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.sl-wrapper .sl-image {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.sl-wrapper .sl-navigation button {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}
.sl-wrapper .sl-navigation button:hover {
  background: #fff;
  transform: scale(1.1);
}
.sl-wrapper .sl-navigation button .sl-icon {
  color: #A69E8C;
  font-size: 1.2rem;
}
.sl-wrapper .sl-counter {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
.sl-wrapper .sl-close {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}
.sl-wrapper .sl-close:hover {
  background: #fff;
  transform: scale(1.1);
}
.sl-wrapper .sl-close .sl-icon {
  color: #A69E8C;
  font-size: 1.2rem;
}

.image-title {
  padding: 16px 20px 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #8B7355;
  line-height: 1.3;
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.image-description {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@media (max-width: 480px) {
  .minadmin-gallery-list .row {
    gap: 1rem;
  }
  .minadmin-gallery-list a {
    border-radius: 12px;
  }
  .minadmin-gallery-list .image-title {
    font-size: 1rem;
    padding: 12px 16px 6px;
  }
  .minadmin-gallery-list .image-description {
    font-size: 0.9rem;
    padding: 0 16px 16px;
  }
}
.zone-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.zone-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.zone-section .section-header h2 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}
.zone-section .section-header p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.department-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.department-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.department-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
.department-card:hover::before {
  transform: scaleX(1);
}
.department-card h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.department-card .department-description {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.department-card .department-location {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.department-card .department-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.department-card .department-cities .city-tag {
  background: var(--color-light);
  color: var(--color-text);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.department-card .department-cities .city-tag:hover {
  background: var(--color-primary);
  color: #777;
  transform: scale(1.05);
}

.zone-footer {
  text-align: center;
}
.zone-footer .national-intervention {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}
.zone-footer .national-intervention .national-content {
  text-align: left;
}
.zone-footer .national-intervention .national-content h3 {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.zone-footer .national-intervention .national-content p {
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .zone-section {
    padding: 2rem 0;
  }
  .zone-section .section-header h2 {
    font-size: 2rem;
  }
  .departments-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .department-card {
    padding: 1.5rem;
  }
  .department-card h3 {
    font-size: 1.3rem;
  }
  .zone-footer .national-intervention {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .zone-footer .national-intervention .national-content {
    text-align: center;
  }
}
.site-main {
  min-height: calc(100vh - 200px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 80vh;
  padding: 4rem 0;
  margin-top: -100px;
  color: #000;
  text-align: left;
}
.hero * {
  z-index: 2;
}
.hero h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}
.hero p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .hero p {
    font-size: 1rem;
  }
}

.services {
  padding: 4rem 0;
  background: #f8f9fa;
}
.services h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #A69E8C;
}

header {
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  min-height: 100px;
  background: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
}
header:hover .header-content {
  background-color: rgba(255, 255, 255, 0);
  height: 50px;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
header .logo {
  position: absolute;
  left: 3rem;
}
header .logo .logo-text {
  color: #000;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Megrim", cursive;
  letter-spacing: 0.1em;
}
header .header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 35px;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.3s ease, height 0.3s ease;
}
header.sticky-top .header-content {
  background-color: rgba(255, 255, 255, 0.9);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .container a {
  color: #000;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 10px 20px;
  transition: color 0.3s ease;
  position: relative;
}
header .container a:hover {
  color: #E52B2B;
}
header .container a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #731919 0%, #E52B2B 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
header .container a:hover::after {
  width: 80%;
}
header .container .hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  z-index: 1001;
}
header .container .hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}
header .container .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
header .container .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .container .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 768px) {
  header .container .header-nav {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 1rem;
  }
  header .container .header-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  header .container .header-nav .nav-link {
    display: block;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
  }
  header .container .header-nav .nav-link:hover {
    background: rgba(229, 43, 43, 0.1);
    color: #E52B2B;
  }
  header .container .hamburger {
    display: flex;
  }
}

.site-footer {
  background: linear-gradient(135deg, #A69E8C 0%, #817864 100%);
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section .footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.footer-section .footer-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social .social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links li a:hover {
  color: #fff;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-hours .hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-hours .hours-item:last-child {
  border-bottom: none;
}
.footer-hours .hours-item .day {
  font-weight: 600;
  color: #fff;
  min-width: 80px;
}
.footer-hours .hours-item .hours {
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
  font-size: 0.9rem;
}
.footer-hours .hours-item.closed .hours {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}

.footer-links-bottom {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .footer-links-bottom {
    gap: 1rem;
  }
}
.footer-links-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-links-bottom a:hover {
  color: #fff;
}

.home-page .hero {
  background: linear-gradient(135deg, #A69E8C 0%, #817864 100%);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: transparent;
}
.home-page .hero .hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.home-page .hero::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.home-page .hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.home-page .hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .home-page .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
.home-page .hero .hero-content .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .home-page .hero .hero-content .hero-subtitle {
    font-size: 1.1rem;
  }
}
.home-page .hero .hero-content .hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .home-page .hero .hero-content .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}
.home-page .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.home-page .section-header h2 {
  font-size: 2.5rem;
  color: #A69E8C;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .home-page .section-header h2 {
    font-size: 2rem;
  }
}
.home-page .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.home-page .services {
  padding: 6rem 0;
  background: #f8f9fa;
}
.home-page .services .service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 8rem;
  min-height: 500px;
}
.home-page .services .service-item:nth-child(2) {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .home-page .services .service-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    min-height: auto;
    text-align: center;
  }
}
.home-page .services .service-item:last-child {
  margin-bottom: 0;
}
.home-page .services .service-item.service-item--right .service-content {
  order: 1;
}
.home-page .services .service-item.service-item--right .service-image {
  order: 2;
}
@media (max-width: 768px) {
  .home-page .services .service-item.service-item--right .service-content,
  .home-page .services .service-item.service-item--right .service-image {
    order: unset;
  }
  .home-page .services .service-item.service-item--right .service-image {
    order: 1;
  }
  .home-page .services .service-item.service-item--right .service-content {
    order: 2;
  }
}
.home-page .services .service-item .service-image {
  position: relative;
  height: 800px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 768px) {
  .home-page .services .service-item .service-image {
    height: 250px;
    width: 100%;
  }
}
.home-page .services .service-item .service-image .parallax-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
.home-page .services .service-item .service-content {
  padding: 2rem;
}
.home-page .services .service-item .service-content .service-icon {
  color: #A69E8C;
  margin-bottom: 1.5rem;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .home-page .services .service-item .service-content .service-icon {
    font-size: 2.5rem;
  }
}
.home-page .services .service-item .service-content h3 {
  color: #A69E8C;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .home-page .services .service-item .service-content h3 {
    font-size: 1.5rem;
  }
}
.home-page .services .service-item .service-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .home-page .services .service-item .service-content p {
    font-size: 1rem;
    text-align: left;
  }
}
.home-page .services .service-item .service-content .service-link {
  color: #A69E8C;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .home-page .services .service-item .service-content .service-link {
    font-size: 1rem;
  }
}
.home-page .services .service-item .service-content .service-link:hover {
  color: #E52B2B;
}
.home-page .services .service-item .service-content .service-link::after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}
.home-page .services .service-item .service-content .service-link:hover::after {
  transform: translateX(5px);
  color: #E52B2B;
}
.home-page .process {
  padding: 6rem 0;
}
.home-page .process .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}
@media (max-width: 768px) {
  .home-page .process .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.home-page .process .process-step {
  text-align: center;
}
.home-page .process .process-step .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #731919 0%, #E52B2B 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(229, 43, 43, 0.3);
}
.home-page .process .process-step h3 {
  color: #A69E8C;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.home-page .process .process-step p {
  color: #666;
  line-height: 1.6;
}
.home-page .why-choose-us {
  padding: 6rem 0;
  background: #f8f9fa;
}
.home-page .why-choose-us .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .home-page .why-choose-us .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.home-page .why-choose-us .feature-item {
  text-align: center;
}
.home-page .why-choose-us .feature-item .feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #E52B2B;
}
.home-page .why-choose-us .feature-item h3 {
  color: #A69E8C;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.home-page .why-choose-us .feature-item p {
  color: #666;
  line-height: 1.6;
}
.home-page .cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #A69E8C 0%, #817864 100%);
  color: #fff;
  text-align: center;
}
.home-page .cta-section .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.home-page .cta-section .cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .home-page .cta-section .cta-content h2 {
    font-size: 2rem;
  }
}
.home-page .cta-section .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}
.home-page .cta-section .cta-content .cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .home-page .cta-section .cta-content .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

.about-page .about-hero {
  background: linear-gradient(135deg, #A69E8C 0%, #817864 100%);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}
.about-page .about-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.about-page .about-hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .about-page .about-hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
.about-page .about-hero .hero-content .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .about-page .about-hero .hero-content .hero-subtitle {
    font-size: 1.1rem;
  }
}
.about-page .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.about-page .section-header h2 {
  font-size: 2.5rem;
  color: #A69E8C;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .about-page .section-header h2 {
    font-size: 2rem;
  }
}
.about-page .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.about-page .history-section {
  padding: 6rem 0;
}
.about-page .history-section .container {
  max-width: unset;
}
.about-page .history-section .history-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-page .history-section .history-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.about-page .history-section .history-text {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .about-page .history-section .history-text {
    margin-left: unset;
  }
}
.about-page .history-section .history-text h2 {
  color: #A69E8C;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.about-page .history-section .history-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.about-page .history-section .history-image .image-placeholder {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .history-section .history-image .image-placeholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-page .timeline-section {
  padding: 6rem 0;
  background: #f8f9fa;
}
.about-page .timeline-section .timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 1rem;
}
.about-page .timeline-section .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #A69E8C;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .about-page .timeline-section .timeline::before {
    left: 2rem;
    transform: none;
  }
}
.about-page .timeline-section .timeline-item {
  position: relative;
  margin-bottom: 3rem;
}
.about-page .timeline-section .timeline-item:nth-child(odd) .timeline-content {
  margin-left: 50%;
  padding-left: 5rem;
}
@media (max-width: 768px) {
  .about-page .timeline-section .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    padding-left: 3rem;
    padding-top: 1rem;
  }
}
.about-page .timeline-section .timeline-item:nth-child(even) .timeline-content {
  margin-right: 50%;
  padding-right: 5rem;
  text-align: right;
}
@media (max-width: 768px) {
  .about-page .timeline-section .timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    padding-right: 0;
    padding-left: 3rem;
    padding-top: 1rem;
    text-align: left;
  }
}
.about-page .timeline-section .timeline-item .timeline-year {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #731919 0%, #E52B2B 100%);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(229, 43, 43, 0.3);
  white-space: nowrap;
  z-index: 10;
}
@media (max-width: 768px) {
  .about-page .timeline-section .timeline-item .timeline-year {
    left: 2.5rem;
    top: -2rem;
    transform: translateX(-50%);
  }
}
.about-page .timeline-section .timeline-item .timeline-content h3 {
  color: #A69E8C;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.about-page .timeline-section .timeline-item .timeline-content p {
  color: #666;
  line-height: 1.6;
}
.about-page .values-section {
  padding: 6rem 0;
}
.about-page .values-section .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .about-page .values-section .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.about-page .values-section .value-item {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.about-page .values-section .value-item:hover {
  transform: translateY(-5px);
}
.about-page .values-section .value-item .value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #E52B2B;
}
.about-page .values-section .value-item h3 {
  color: #A69E8C;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.about-page .values-section .value-item p {
  color: #666;
  line-height: 1.6;
}
.about-page .team-section {
  padding: 6rem 0;
  background: #f8f9fa;
}
.about-page .team-section .team-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-page .team-section .team-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.about-page .team-section .team-info {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.about-page .team-section .team-info h3 {
  color: #A69E8C;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.about-page .team-section .team-info p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.about-page .team-section .team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about-page .team-section .team-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.about-page .team-section .team-stat {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.about-page .team-section .team-stat:hover {
  transform: translateY(-5px);
}
.about-page .team-section .team-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #A69E8C;
  margin-bottom: 0.5rem;
}
.about-page .team-section .team-stat .stat-label {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}
.about-page .team-section .team-image .image-placeholder {
  background: #fff;
  height: 300px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.1rem;
  border: 2px dashed #e1e5e9;
}
.about-page .zone-section {
  padding: 6rem 0;
}
.about-page .zone-section .zone-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-page .zone-section .zone-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.about-page .zone-section .zone-map .map-placeholder {
  background: #f8f9fa;
  height: 400px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.1rem;
  border: 2px dashed #e1e5e9;
}
.about-page .zone-section .zone-list h3 {
  color: #A69E8C;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.about-page .zone-section .zone-list .departments-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.about-page .zone-section .zone-list .departments-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e1e5e9;
  color: #666;
  line-height: 1.6;
}
.about-page .zone-section .zone-list .departments-list li:last-child {
  border-bottom: none;
}
.about-page .zone-section .zone-list .departments-list li strong {
  color: #A69E8C;
  font-weight: 600;
}
.about-page .zone-section .zone-list .zone-note {
  color: #666;
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.6;
}
.about-page .about-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #A69E8C 0%, #817864 100%);
  color: #fff;
  text-align: center;
}
.about-page .about-cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.about-page .about-cta .cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .about-page .about-cta .cta-content h2 {
    font-size: 2rem;
  }
}
.about-page .about-cta .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}
.about-page .about-cta .cta-content .cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .about-page .about-cta .cta-content .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

.contact-page .contact-hero {
  background: linear-gradient(135deg, #A69E8C 0%, #817864 100%);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}
.contact-page .contact-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.contact-page .contact-hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .contact-page .contact-hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
.contact-page .contact-hero .hero-content .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .contact-page .contact-hero .hero-content .hero-subtitle {
    font-size: 1.1rem;
  }
}
.contact-page .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.contact-page .section-header h2 {
  font-size: 2.5rem;
  color: #A69E8C;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .contact-page .section-header h2 {
    font-size: 2rem;
  }
}
.contact-page .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.contact-page .contact-content {
  padding: 6rem 0;
}
.contact-page .contact-content .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .contact-page .contact-content .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.contact-page .contact-info h2 {
  color: #A69E8C;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
.contact-page .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.contact-page .contact-info .contact-item:hover {
  transform: translateY(-5px);
}
.contact-page .contact-info .contact-item .contact-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}
.contact-page .contact-info .contact-item .contact-details {
  flex: 1;
}
.contact-page .contact-info .contact-item .contact-details h3 {
  color: #A69E8C;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-page .contact-info .contact-item .contact-details p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.contact-page .contact-info .contact-item .contact-details p:last-child {
  margin-bottom: 0;
}
.contact-page .contact-info .contact-item .hours-list .hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(166, 158, 140, 0.1);
}
.contact-page .contact-info .contact-item .hours-list .hours-item:last-child {
  border-bottom: none;
}
.contact-page .contact-info .contact-item .hours-list .hours-item .day {
  font-weight: 600;
  color: #A69E8C;
  min-width: 80px;
}
.contact-page .contact-info .contact-item .hours-list .hours-item .hours {
  color: #666;
  text-align: right;
  font-size: 0.9rem;
}
.contact-page .contact-info .contact-item .hours-list .hours-item.closed .hours {
  color: rgba(102, 102, 102, 0.5);
  font-style: italic;
}
.contact-page .contact-form h2 {
  color: #A69E8C;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-page .contact-form .form-subtitle {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}
.contact-page .contact-form .form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .contact-page .contact-form .form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-page .contact-form .form .form-group {
  margin-bottom: 1.5rem;
}
.contact-page .contact-form .form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #A69E8C;
  font-weight: 600;
  font-size: 0.9rem;
}
.contact-page .contact-form .form .form-group input, .contact-page .contact-form .form .form-group select, .contact-page .contact-form .form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.contact-page .contact-form .form .form-group input:focus, .contact-page .contact-form .form .form-group select:focus, .contact-page .contact-form .form .form-group textarea:focus {
  outline: none;
  border-color: #A69E8C;
}
.contact-page .contact-form .form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-page .contact-form .form .form-group select {
  background: #fff;
}
.contact-page .contact-form .form .checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}
.contact-page .contact-form .form .checkbox-label input[type=checkbox] {
  width: auto;
  margin-right: 0.5rem;
}
.contact-page .contact-form .form .checkbox-label .checkmark {
  display: none;
}
.contact-page .contact-form .form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.contact-page .maps-section {
  position: relative;
}
.contact-page .maps-section .maps-container {
  width: 100%;
  height: 450px;
  position: relative;
}
.contact-page .maps-section .maps-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.contact-page .maps-section .maps-overlay {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
}
@media (max-width: 768px) {
  .contact-page .maps-section .maps-overlay {
    position: relative;
    top: auto;
    left: auto;
    padding: 2rem;
    background: #fff;
    margin-top: -2rem;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  }
}
.contact-page .maps-section .maps-info {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  max-width: 300px;
}
.contact-page .maps-section .maps-info:hover {
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .contact-page .maps-section .maps-info {
    max-width: none;
    box-shadow: none;
    padding: 0;
  }
}
.contact-page .maps-section .maps-info h3 {
  color: #A69E8C;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-page .maps-section .maps-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.contact-page .maps-section .maps-info .btn {
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
}
@media (max-width: 768px) {
  .contact-page .maps-section .maps-info .btn {
    width: auto;
    display: inline-block;
  }
}

.realisations-page .realisations-hero {
  background: linear-gradient(135deg, #A69E8C 0%, #817864 100%);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}
.realisations-page .realisations-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.realisations-page .realisations-hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .realisations-page .realisations-hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
.realisations-page .realisations-hero .hero-content .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .realisations-page .realisations-hero .hero-content .hero-subtitle {
    font-size: 1.1rem;
  }
}
.realisations-page .categories-nav {
  padding: 1.2rem 0;
  background: #fff;
  border-bottom: 1px solid #e1e5e9;
  position: sticky;
  top: 100px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.realisations-page .categories-nav .categories-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .realisations-page .categories-nav .categories-tabs {
    gap: 0.75rem;
  }
}
.realisations-page .categories-nav .category-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem;
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #666;
  width: 100%;
  max-width: 100px;
}
@media (max-width: 768px) {
  .realisations-page .categories-nav .category-tab {
    padding: 1rem;
    font-size: 0.9rem;
    max-width: 80px;
  }
}
.realisations-page .categories-nav .category-tab .tab-icon {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .realisations-page .categories-nav .category-tab .tab-icon {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}
.realisations-page .categories-nav .category-tab span {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .realisations-page .categories-nav .category-tab span {
    font-size: 0.8rem;
  }
}
.realisations-page .categories-nav .category-tab:hover {
  color: #E52B2B;
  border-color: #E52B2B;
  background: rgba(229, 43, 43, 0.1);
  transform: translateY(-2px);
}
.realisations-page .categories-nav .category-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #731919 0%, #E52B2B 100%);
  border: 2px solid #E52B2B;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 43, 43, 0.4);
}
.realisations-page .gallery-section {
  display: none;
  padding: 4rem 0;
  animation: fadeIn 0.5s ease-in-out;
}
.realisations-page .gallery-section.active {
  display: block;
}
.realisations-page .gallery-section .gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}
.realisations-page .gallery-section .gallery-header h2 {
  color: #A69E8C;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .realisations-page .gallery-section .gallery-header h2 {
    font-size: 2rem;
  }
}
.realisations-page .gallery-section .gallery-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.realisations-page .gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .realisations-page .gallery-section .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.realisations-page .gallery-section .gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
}
.realisations-page .gallery-section .gallery-item:hover {
  transform: translateY(-5px);
}
.realisations-page .gallery-section .gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.realisations-page .gallery-section .gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.realisations-page .gallery-section .gallery-item:hover .image-placeholder {
  transform: scale(1.05);
}
.realisations-page .gallery-section .gallery-item .image-placeholder {
  height: 280px;
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.1rem;
  border: 2px dashed #e1e5e9;
  transition: transform 0.3s ease;
  position: relative;
}
.realisations-page .gallery-section .gallery-item .image-placeholder::before {
  content: "📷";
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.realisations-page .gallery-section .gallery-item .image-placeholder span {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  font-weight: 500;
}
.realisations-page .gallery-section .gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: #fff;
  padding: 2.5rem 1.5rem 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.realisations-page .gallery-section .gallery-item .gallery-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.realisations-page .gallery-section .gallery-item .gallery-overlay p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.realisations-page .realisations-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #A69E8C 0%, #817864 100%);
  color: #fff;
  text-align: center;
}
.realisations-page .realisations-cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.realisations-page .realisations-cta .cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .realisations-page .realisations-cta .cta-content h2 {
    font-size: 2rem;
  }
}
.realisations-page .realisations-cta .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}
.realisations-page .realisations-cta .cta-content .cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .realisations-page .realisations-cta .cta-content .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

.mentions-legales-page .mentions-hero {
  background: linear-gradient(135deg, #A69E8C 0%, #817864 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.mentions-legales-page .mentions-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.mentions-legales-page .mentions-hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .mentions-legales-page .mentions-hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
.mentions-legales-page .mentions-hero .hero-content .hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .mentions-legales-page .mentions-hero .hero-content .hero-subtitle {
    font-size: 1.1rem;
  }
}
.mentions-legales-page .mentions-content {
  padding: 4rem 0;
}
.mentions-legales-page .mentions-content .mentions-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}
@media (max-width: 768px) {
  .mentions-legales-page .mentions-content .mentions-grid {
    gap: 2rem;
  }
}
.mentions-legales-page .mentions-content .mentions-section {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.mentions-legales-page .mentions-content .mentions-section:hover {
  transform: translateY(-5px);
}
.mentions-legales-page .mentions-content .mentions-section h2 {
  color: #A69E8C;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(166, 158, 140, 0.2);
}
.mentions-legales-page .mentions-content .mentions-section .mentions-info p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.mentions-legales-page .mentions-content .mentions-section .mentions-info p strong {
  color: #333;
  font-weight: 600;
}
.mentions-legales-page .mentions-content .mentions-section .mentions-info ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.mentions-legales-page .mentions-content .mentions-section .mentions-info ul li {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}
.mentions-legales-page .mentions-content .mentions-section .mentions-info ul li::before {
  content: "•";
  color: #A69E8C;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.mentions-legales-page .mentions-content .mentions-section .mentions-info ul li strong {
  color: #333;
  font-weight: 600;
}

.politique-confidentialite-page .politique-hero {
  background: linear-gradient(135deg, #A69E8C 0%, #817864 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.politique-confidentialite-page .politique-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.politique-confidentialite-page .politique-hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .politique-confidentialite-page .politique-hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
.politique-confidentialite-page .politique-hero .hero-content .hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .politique-confidentialite-page .politique-hero .hero-content .hero-subtitle {
    font-size: 1.1rem;
  }
}
.politique-confidentialite-page .politique-content {
  padding: 4rem 0;
}
.politique-confidentialite-page .politique-content .politique-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}
@media (max-width: 768px) {
  .politique-confidentialite-page .politique-content .politique-grid {
    gap: 2rem;
  }
}
.politique-confidentialite-page .politique-content .politique-section {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.politique-confidentialite-page .politique-content .politique-section:hover {
  transform: translateY(-5px);
}
.politique-confidentialite-page .politique-content .politique-section h2 {
  color: #A69E8C;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(166, 158, 140, 0.2);
}
.politique-confidentialite-page .politique-content .politique-section .politique-info p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.politique-confidentialite-page .politique-content .politique-section .politique-info p strong {
  color: #333;
  font-weight: 600;
}
.politique-confidentialite-page .politique-content .politique-section .politique-info ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.politique-confidentialite-page .politique-content .politique-section .politique-info ul li {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}
.politique-confidentialite-page .politique-content .politique-section .politique-info ul li::before {
  content: "•";
  color: #A69E8C;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.politique-confidentialite-page .politique-content .politique-section .politique-info ul li strong {
  color: #333;
  font-weight: 600;
}

.error-page {
  padding: 4rem 0;
  text-align: center;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}
.error-content .error-code {
  font-size: 6rem;
  font-weight: 700;
  color: #A69E8C;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .error-content .error-code {
    font-size: 4rem;
  }
}
.error-content .error-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}
.error-content .error-description {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.error-suggestions {
  text-align: left;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}
.error-suggestions h3 {
  color: #A69E8C;
  margin-bottom: 1rem;
}
.error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.error-suggestions ul li {
  margin-bottom: 0.5rem;
}
.error-suggestions ul li a {
  color: #A69E8C;
  text-decoration: none;
}
.error-suggestions ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pr-4 {
  padding-right: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-8 {
  margin-left: 2rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pr-8 {
  padding-right: 2rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.mx-10 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.ml-12 {
  margin-left: 3rem;
}

.mr-12 {
  margin-right: 3rem;
}

.mx-12 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pl-12 {
  padding-left: 3rem;
}

.pr-12 {
  padding-right: 3rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.mt-13 {
  margin-top: 3.5rem;
}

.mb-13 {
  margin-bottom: 3.5rem;
}

.ml-13 {
  margin-left: 3.5rem;
}

.mr-13 {
  margin-right: 3.5rem;
}

.mx-13 {
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}

.my-13 {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.pt-13 {
  padding-top: 3.5rem;
}

.pb-13 {
  padding-bottom: 3.5rem;
}

.pl-13 {
  padding-left: 3.5rem;
}

.pr-13 {
  padding-right: 3.5rem;
}

.px-13 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.py-13 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.mt-14 {
  margin-top: 4rem;
}

.mb-14 {
  margin-bottom: 4rem;
}

.ml-14 {
  margin-left: 4rem;
}

.mr-14 {
  margin-right: 4rem;
}

.mx-14 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.my-14 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.pt-14 {
  padding-top: 4rem;
}

.pb-14 {
  padding-bottom: 4rem;
}

.pl-14 {
  padding-left: 4rem;
}

.pr-14 {
  padding-right: 4rem;
}

.px-14 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.py-14 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.mt-15 {
  margin-top: 4.5rem;
}

.mb-15 {
  margin-bottom: 4.5rem;
}

.ml-15 {
  margin-left: 4.5rem;
}

.mr-15 {
  margin-right: 4.5rem;
}

.mx-15 {
  margin-left: 4.5rem;
  margin-right: 4.5rem;
}

.my-15 {
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
}

.pt-15 {
  padding-top: 4.5rem;
}

.pb-15 {
  padding-bottom: 4.5rem;
}

.pl-15 {
  padding-left: 4.5rem;
}

.pr-15 {
  padding-right: 4.5rem;
}

.px-15 {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}

.py-15 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.mt-16 {
  margin-top: 5rem;
}

.mb-16 {
  margin-bottom: 5rem;
}

.ml-16 {
  margin-left: 5rem;
}

.mr-16 {
  margin-right: 5rem;
}

.mx-16 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.my-16 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.pt-16 {
  padding-top: 5rem;
}

.pb-16 {
  padding-bottom: 5rem;
}

.pl-16 {
  padding-left: 5rem;
}

.pr-16 {
  padding-right: 5rem;
}

.px-16 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.py-16 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mt-17 {
  margin-top: 5.5rem;
}

.mb-17 {
  margin-bottom: 5.5rem;
}

.ml-17 {
  margin-left: 5.5rem;
}

.mr-17 {
  margin-right: 5.5rem;
}

.mx-17 {
  margin-left: 5.5rem;
  margin-right: 5.5rem;
}

.my-17 {
  margin-top: 5.5rem;
  margin-bottom: 5.5rem;
}

.pt-17 {
  padding-top: 5.5rem;
}

.pb-17 {
  padding-bottom: 5.5rem;
}

.pl-17 {
  padding-left: 5.5rem;
}

.pr-17 {
  padding-right: 5.5rem;
}

.px-17 {
  padding-left: 5.5rem;
  padding-right: 5.5rem;
}

.py-17 {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.mt-18 {
  margin-top: 6rem;
}

.mb-18 {
  margin-bottom: 6rem;
}

.ml-18 {
  margin-left: 6rem;
}

.mr-18 {
  margin-right: 6rem;
}

.mx-18 {
  margin-left: 6rem;
  margin-right: 6rem;
}

.my-18 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.pt-18 {
  padding-top: 6rem;
}

.pb-18 {
  padding-bottom: 6rem;
}

.pl-18 {
  padding-left: 6rem;
}

.pr-18 {
  padding-right: 6rem;
}

.px-18 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.py-18 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.mt-19 {
  margin-top: 6.5rem;
}

.mb-19 {
  margin-bottom: 6.5rem;
}

.ml-19 {
  margin-left: 6.5rem;
}

.mr-19 {
  margin-right: 6.5rem;
}

.mx-19 {
  margin-left: 6.5rem;
  margin-right: 6.5rem;
}

.my-19 {
  margin-top: 6.5rem;
  margin-bottom: 6.5rem;
}

.pt-19 {
  padding-top: 6.5rem;
}

.pb-19 {
  padding-bottom: 6.5rem;
}

.pl-19 {
  padding-left: 6.5rem;
}

.pr-19 {
  padding-right: 6.5rem;
}

.px-19 {
  padding-left: 6.5rem;
  padding-right: 6.5rem;
}

.py-19 {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

.mt-20 {
  margin-top: 7rem;
}

.mb-20 {
  margin-bottom: 7rem;
}

.ml-20 {
  margin-left: 7rem;
}

.mr-20 {
  margin-right: 7rem;
}

.mx-20 {
  margin-left: 7rem;
  margin-right: 7rem;
}

.my-20 {
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.pt-20 {
  padding-top: 7rem;
}

.pb-20 {
  padding-bottom: 7rem;
}

.pl-20 {
  padding-left: 7rem;
}

.pr-20 {
  padding-right: 7rem;
}

.px-20 {
  padding-left: 7rem;
  padding-right: 7rem;
}

.py-20 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}