/*
* FinanTrust - Modern Financial Services Website Stylesheet
* Version: 1.0
* Author: Claude AI
*/

/* ===== VARIABLES ===== */
:root {
  /* Color Palette */
  --primary-color: #5181b8;
  --primary-color-dark: #3a5e8c;
  --secondary-color: #6c3483;
  --secondary-color-light: #9b59b6;
  --accent-color: #e74c3c;
  --accent-color-light: #f39c12;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color-light), var(--accent-color));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-color-light));
  --gradient-dark: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
  --gradient-light: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  
  /* Text Colors */
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #f8f9fa;
  
  /* Background Colors */
  --bg-light: #ffffff;
  --bg-light-alt: #f8f9fa;
  --bg-medium: #e9ecef;
  --bg-dark: #343a40;
  
  /* Spacing */
  --section-spacing: 5rem;
  --element-spacing: 2rem;
  --inner-spacing: 1rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Box Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== BASE STYLES ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-medium);
  background-color: var(--bg-light);
  overflow-x: hidden;
  padding-top: 0px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2.2rem;
  position: relative;
  margin-bottom: 2rem;
}

h2:after, .h2:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

section:nth-of-type(odd) {
  background-color: var(--bg-light);
}

section:nth-of-type(even) {
  background-color: var(--bg-light-alt);
}

.container {
  position: relative;
  z-index: 2;
}

/* ===== BUTTONS ===== */
.btn {
  position: relative;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium);
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-medium);
  z-index: -1;
}

.btn:hover:before {
  width: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: var(--text-light);
}

.btn-primary:hover, .btn-primary:focus {
  background: var(--gradient-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--text-light);
}

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

.btn-outline-light:hover, .btn-outline-light:focus {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn + .btn {
  margin-left: 0.5rem;
}

/* ===== NAVBAR ===== */
.header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-medium);
}

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

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--primary-color);
}

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

.nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  color: var(--text-medium);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  transition: width var(--transition-medium);
  visibility: hidden;
}

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

.nav-link:hover:before {
  width: 70%;
  visibility: visible;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  opacity: 0.7;
  z-index: 1;
}

.hero-content {
  text-align: left;
  padding: 2rem 0;
}

.hero-content h1 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

/* ===== SECTION HEADERS ===== */
.section-header {
  margin-bottom: 3rem;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* ===== VISION SECTION ===== */
.vision-section {
  overflow: hidden;
}

.vision-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-medium);
}

.vision-image:hover {
  transform: translateY(-10px);
}

.vision-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

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

.vision-content {
  padding: 2rem;
}

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

/* ===== RESEARCH SECTION ===== */
.research-card {
  background: var(--bg-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.research-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  overflow: hidden;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.research-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.timeline-container {
  margin-top: 4rem;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline:before {
  content: '';
  position: absolute;
  width: 2px;
  background: var(--gradient-primary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-date {
  position: absolute;
  width: 70px;
  height: 70px;
  right: -35px;
  background: var(--gradient-primary);
  border-radius: 50%;
  top: 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(even) .timeline-date {
  left: -35px;
}

.timeline-content {
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* ===== INSIGHTS SECTION ===== */
.insights-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: var(--border-radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
  background: var(--bg-light);
  padding: 1.5rem;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: var(--bg-light);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%235181b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.5rem;
  background: var(--bg-light);
}

/* ===== MEDIA SECTION ===== */
.media-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
}

.external-resources {
  padding: 0 1rem;
}

.resource-item {
  margin-bottom: 2rem;
}

.resource-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.resource-item a {
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.resource-item a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.resource-item p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  background-color: var(--bg-light);
}

.partners-slider {
  padding: 2rem 0;
}

.partner-item {
  text-align: center;
  padding: 1.5rem;
  transition: transform var(--transition-medium);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-item:hover {
  transform: translateY(-10px);
}

.partner-item img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 1rem;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter var(--transition-medium), opacity var(--transition-medium);
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-item p {
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 0;
}

/* ===== BLOG SECTION ===== */
.blog-card {
  background: var(--bg-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  margin-bottom: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-medium);
}

.blog-meta .date {
  color: var(--primary-color);
}

.blog-meta .category {
  background: var(--secondary-color-light);
  color: var(--text-light);
  padding: 0.1rem 0.75rem;
  border-radius: 50px;
}

.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: auto;
  position: relative;
  padding-right: 20px;
  transition: all var(--transition-fast);
}

.read-more:after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--secondary-color);
  padding-right: 25px;
}

.read-more:hover:after {
  transform: translateY(-50%) translateX(5px);
}

/* ===== SUSTAINABILITY SECTION ===== */
.sustainability-content {
  padding: 2rem;
}

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

.sustainability-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ===== PRICING SECTION ===== */
.pricing-card {
  background: var(--bg-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  margin-bottom: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  background: var(--gradient-primary);
  color: var(--text-light);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card .card-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card .card-header h3 {
  margin-bottom: 1rem;
}

.pricing-card.featured .card-header h3 {
  color: var(--text-light);
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card.featured .price,
.pricing-card.featured p {
  color: var(--text-light);
}

.pricing-card .card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.feature-list li:before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-weight: 700;
}

.pricing-card.featured .feature-list li:before {
  color: var(--text-light);
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card.featured .btn {
  background: var(--bg-light);
  color: var(--primary-color);
}

.pricing-card.featured .btn:hover {
  background: var(--bg-light);
  color: var(--secondary-color);
}

/* ===== CONTACT SECTION ===== */
.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.contact-details li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  color: var(--text-medium);
}

.contact-details li i {
  margin-right: 1rem;
  color: var(--primary-color);
}

.contact-form {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

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

.form-control {
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition-fast);
}

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

.form-control::placeholder {
  color: #adb5bd;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer h3 {
  font-size: 1.75rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer h4 {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gradient-primary);
}

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

.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: color var(--transition-fast);
  position: relative;
  padding-left: 15px;
  display: inline-block;
}

.footer-links a:before {
  content: '›';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-light);
}

.footer-links a:hover:before {
  transform: translateX(3px);
}

.social-links p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  font-weight: 600;
  position: relative;
}

.social-icons a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--gradient-primary);
  transition: width var(--transition-medium);
  visibility: hidden;
}

.social-icons a:hover {
  color: var(--text-light);
}

.social-icons a:hover:after {
  width: 100%;
  visibility: visible;
}

.copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-container {
  max-width: 600px;
  padding: 3rem;
  background: var(--bg-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem;
}

/* ===== TERMS & PRIVACY PAGES ===== */
.terms-page,
.privacy-page {
  padding-top: 100px;
}

.terms-container,
.privacy-container {
  background: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1199.98px) {
  h1, .h1 {
    font-size: 2.25rem;
  }
  
  h2, .h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-section {
    height: auto;
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .timeline:before {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-date {
    width: 60px;
    height: 60px;
    left: 0;
    right: auto;
  }
  
  .timeline-item:nth-child(even) .timeline-date {
    left: 0;
  }
}

@media (max-width: 767.98px) {
  h1, .h1 {
    font-size: 2rem;
  }
  
  h2, .h2 {
    font-size: 1.75rem;
  }
  
  h3, .h3 {
    font-size: 1.5rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 450px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .btn + .btn {
    margin-left: 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 575.98px) {
  h1, .h1 {
    font-size: 1.75rem;
  }
  
  h2, .h2 {
    font-size: 1.5rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .hero-section {
    min-height: 400px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn var(--transition-slow) forwards;
}

.fade-in-up {
  animation: fadeInUp var(--transition-slow) forwards;
}

/* ===== UTILITIES ===== */
.text-primary {
  color: var(--primary-color) !important;
}

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

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

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

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

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

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

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

.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
  box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

.rounded-sm {
  border-radius: var(--border-radius-sm) !important;
}

.rounded-md {
  border-radius: var(--border-radius-md) !important;
}

.rounded-lg {
  border-radius: var(--border-radius-lg) !important;
}