
:root {
  --primary: #2B6CB0;
  --secondary: #3182CE;
  --accent: #F6AD55;
  --dark: #1A365D;
  --light: #EBF8FF;
  --background: #FFFFFF;
  --text: #2D3748;
  --muted: #718096;
  --success: #38A169;
  --error: #E53E3E;
  --card-bg: #F7FAFC;
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

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

p {
  margin-bottom: 1.5rem;
}

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

a:hover, a:focus {
  color: var(--secondary);
  text-decoration: none;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn:hover, .btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--secondary);
  color: white;
}

.btn-accent {
  background-color: var(--accent);
  color: var(--dark);
}

.btn-accent:hover, .btn-accent:focus {
  background-color: #e69b43;
  color: var(--dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

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


.card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: none;
  transition: var(--transition);
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 10px 15px rgba(0, 0, 0, 0.03),
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 20px 25px rgba(0, 0, 0, 0.07);
}


.section {
  padding: 5rem 0;
  position: relative;
}

.section-light {
  background-color: var(--light);
}

.section-dark {
  background-color: var(--dark);
  color: white;
}

.section-dark h1, .section-dark h2, .section-dark h3, 
.section-dark h4, .section-dark h5, .section-dark h6 {
  color: white;
}

.section-title {
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--accent);
}


.navbar {
  padding: 1rem 0;
  transition: var(--transition);
}

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

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

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

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

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

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

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

.navbar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.hero {
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.hero-buttons {
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

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

.hero-image img {
  border-radius: 12px;
  box-shadow: 
    0 20px 25px rgba(0, 0, 0, 0.1),
    0 10px 10px rgba(0, 0, 0, 0.04);
}


.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  background-color: var(--card-bg);
  transition: var(--transition);
  height: 100%;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 10px 15px rgba(0, 0, 0, 0.03),
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 20px 25px rgba(0, 0, 0, 0.07);
}

.value-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
}

.value-title {
  margin-bottom: 1rem;
}


.process-container {
  position: relative;
}

.process-step {
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.05);
}

.process-number {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.process-title {
  margin-bottom: 1rem;
}

.process-duration {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--light);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}


.coaching-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--card-bg);
  transition: var(--transition);
  height: 100%;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.05);
}

.coaching-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 10px 15px rgba(0, 0, 0, 0.03),
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 20px 25px rgba(0, 0, 0, 0.07);
}

.coaching-image {
  height: 200px;
  overflow: hidden;
}

.coaching-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.coaching-card:hover .coaching-image img {
  transform: scale(1.05);
}

.coaching-content {
  padding: 1.5rem;
}

.coaching-title {
  margin-bottom: 1rem;
}

.coaching-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--light);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}


.case-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.05);
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 10px 15px rgba(0, 0, 0, 0.03),
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 20px 25px rgba(0, 0, 0, 0.07);
}

.case-result {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}


.package-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
  height: 100%;
  position: relative;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.05);
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 10px 15px rgba(0, 0, 0, 0.03),
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 20px 25px rgba(0, 0, 0, 0.07);
}

.package-popular {
  position: absolute;
  top: 0;
  right: 2rem;
  background-color: var(--accent);
  color: var(--dark);
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0 0 10px 10px;
}

.package-title {
  margin-bottom: 1rem;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.package-features {
  margin-bottom: 2rem;
}

.package-features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.package-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}


.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  background-color: var(--card-bg);
  padding: 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question:after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.faq-question.active {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-question.active:after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  background-color: var(--card-bg);
  border-radius: 0 0 8px 8px;
  margin-top: -5px;
}

.faq-answer-inner {
  padding: 1.5rem;
}


.contact-form {
  background-color: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.form-check-label {
  font-size: 0.875rem;
}


.modal-dialog {
  max-width: 500px;
}

.modal-content {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 1.5rem;
}

.modal-title {
  font-weight: 700;
  color: white;
}

.modal-body {
  padding: 2rem 1.5rem;
}

.modal-footer {
  border: none;
  padding: 1.5rem;
}

.btn-close {
  color: white;
  opacity: 1;
  text-shadow: none;
  box-shadow: none;
}


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

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
}

.footer-contact {
  margin-bottom: 2rem;
}

.footer-contact-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact-icon {
  margin-right: 1rem;
  color: var(--accent);
}

.footer-links h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}


.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background-color: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

.cookie-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-settings {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 998;
  transition: var(--transition);
}

.cookie-settings:hover {
  transform: scale(1.1);
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: white;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cookie-modal-header {
  background-color: var(--primary);
  color: white;
  padding: 1.5rem;
  position: relative;
}

.cookie-modal-title {
  font-weight: 700;
  margin-bottom: 0;
  color: white;
}

.cookie-modal-close {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-modal-body {
  padding: 2rem 1.5rem;
  max-height: 60vh;
  overflow-y: auto;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

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

.cookie-category-title {
  font-weight: 700;
  margin-bottom: 0;
}

.cookie-category-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.cookie-category-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-category-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.cookie-category-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cookie-category-slider {
  background-color: var(--success);
}

input:checked + .cookie-category-slider:before {
  transform: translateX(30px);
}

.cookie-category-description {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.cookie-modal-footer {
  padding: 1.5rem;
  background-color: #f7fafc;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


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

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

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

.thank-you-text {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--muted);
}


.about-hero {
  padding: 8rem 0 4rem;
  background-color: var(--light);
}

.about-section {
  padding: 5rem 0;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 
    0 20px 25px rgba(0, 0, 0, 0.1),
    0 10px 10px rgba(0, 0, 0, 0.04);
}

.about-image img {
  width: 100%;
}

.expertise-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  height: 100%;
  transition: var(--transition);
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 10px 15px rgba(0, 0, 0, 0.03),
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 20px 25px rgba(0, 0, 0, 0.07);
}

.expertise-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}


.coaching-hero {
  padding: 8rem 0 4rem;
  background-color: var(--light);
}

.coaching-detail {
  padding: 4rem 0;
}

.coaching-detail-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 
    0 20px 25px rgba(0, 0, 0, 0.1),
    0 10px 10px rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
}

.coaching-detail-image img {
  width: 100%;
}

.coaching-metrics {
  background-color: var(--light);
  padding: 4rem 0;
}

.metric-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 10px 15px rgba(0, 0, 0, 0.03),
    0 4px 6px rgba(0, 0, 0, 0.05);
}

.metric-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.metric-label {
  color: var(--muted);
  font-size: 0.875rem;
}


.contact-hero {
  padding: 8rem 0 4rem;
  background-color: var(--light);
}

.contact-info {
  padding: 4rem 0;
}

.contact-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  transition: var(--transition);
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 10px 15px rgba(0, 0, 0, 0.03),
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 20px 25px rgba(0, 0, 0, 0.07);
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-map {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.05);
}


.policy-hero {
  padding: 8rem 0 4rem;
  background-color: var(--light);
}

.policy-content {
  padding: 4rem 0;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h3 {
  margin-bottom: 1.5rem;
}

.policy-list {
  margin-bottom: 1.5rem;
}

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

.policy-update {
  font-style: italic;
  color: var(--muted);
  margin-top: 3rem;
  font-size: 0.875rem;
}


.breadcrumbs {
  padding: 1rem 0;
  background-color: var(--light);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '>';
}


@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 50px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}


@media (max-width: 991.98px) {
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .navbar-collapse {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link:after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 5rem 0 3rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .process-number {
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-links {
    margin-top: 2rem;
  }
  
  .thank-you {
    padding: 5rem 0;
  }
  
  .thank-you-icon {
    font-size: 4rem;
  }
  
  .thank-you-title {
    font-size: 2rem;
  }
}


.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-muted {
  color: var(--muted) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-accent {
  background-color: var(--accent) !important;
}

.bg-light {
  background-color: var(--light) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}


.iti {
  width: 100%;
}


#formSuccessModal .modal-content {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: none;
}

#formSuccessModal .modal-header {
  background: var(--primary);
  border-bottom: none;
  padding: 2rem;
}

#formSuccessModal .modal-title {
  color: white;
  font-weight: 700;
}

#formSuccessModal .modal-body {
  padding: 2.5rem;
}

#formSuccessModal .modal-footer {
  border-top: none;
  padding: 0 2.5rem 2.5rem;
}

#formSuccessModal .success-icon {
  color: var(--success);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}