
:root {
  --primary-color: #1E3A5F;
  --secondary-color: #D4AF37;
  --text-color: #5A6B7F;
  --bg-color: #F5F7FA;
  --white: #FFFFFF;
  --dark-gray: #2D3748;
  --light-gold: #F0E68C;
  --dark-gold: #B8860B;
  --light-blue: #4A6FA5;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  color: var(--white);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

.btn {
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--light-blue);
  border-color: var(--light-blue);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--dark-gold);
  border-color: var(--dark-gold);
  color: var(--white);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}


.neumorph {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 
    8px 8px 16px rgba(174, 174, 192, 0.4),
    -8px -8px 16px rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.neumorph:hover {
  box-shadow: 
    10px 10px 20px rgba(174, 174, 192, 0.5),
    -10px -10px 20px rgba(255, 255, 255, 0.9);
}

.neumorph-inset {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 
    inset 5px 5px 10px rgba(174, 174, 192, 0.4),
    inset -5px -5px 10px rgba(255, 255, 255, 0.8);
}


header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: var(--primary-color);
  font-weight: 600;
  padding: 0.5rem 1rem;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--secondary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

.navbar-nav .nav-link.active {
  color: var(--secondary-color);
}

.navbar-nav .nav-link.active::after {
  width: 80%;
}


.navbar-toggler {
  border: none;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30, 58, 95, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.hero-section {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 58, 95, 0.8);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--light-gold);
}


.sticky-block {
  position: sticky;
  top: 100px;
  z-index: 2;
  padding: 2rem;
  margin-bottom: 2rem;
}


.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}


.about-card {
  padding: 2rem;
  height: 100%;
}

.about-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}


.service-card {
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}


.case-study {
  margin-bottom: 3rem;
}

.case-img {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.case-img img {
  transition: var(--transition);
}

.case-img:hover img {
  transform: scale(1.05);
}


.news-card {
  padding: 1.5rem;
  margin-bottom: 2rem;
  height: 100%;
}

.news-date {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}


.contact-form {
  padding: 2rem;
}

.form-control {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  transition: var(--transition);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.form-label {
  color: var(--primary-color);
  font-weight: 600;
}

.iti {
  width: 100%;
}


footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-title {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links a {
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
  text-decoration: none;
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 0.75rem;
}

.footer-contact i {
  color: var(--secondary-color);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

.cookie-settings-modal .modal-content {
  border-radius: 15px;
}

.cookie-settings-modal .modal-header {
  border-bottom: none;
  padding: 1.5rem 1.5rem 0.5rem;
}

.cookie-settings-modal .modal-footer {
  border-top: none;
  padding: 0.5rem 1.5rem 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category-title {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

.cookie-category-description {
  font-size: 0.875rem;
  color: var(--text-color);
}


@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .sticky-block {
    position: relative;
    top: 0;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}


.principles-hero {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
}

.principles-card {
  padding: 2rem;
  margin-bottom: 2rem;
  height: 100%;
}

.principles-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}


.services-hero {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
}

.service-detail {
  margin-bottom: 4rem;
}

.service-detail-img {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.service-detail-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}


.contact-info-card {
  padding: 2rem;
  height: 100%;
  margin-bottom: 2rem;
}

.contact-info-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.map-container {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
}


.support-hero {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
}

.support-card {
  padding: 2rem;
  height: 100%;
  margin-bottom: 2rem;
}

.support-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}


.thank-you-section {
  padding: 8rem 0;
  text-align: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}


.policy-content {
  padding: 2rem;
  margin-bottom: 2rem;
}

.policy-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content ul, .policy-content ol {
  margin-bottom: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-date {
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 2rem;
}