/* ======== Variables ======== */
:root {
  /* Color Palette */
  --primary: #2c6ecb;
  --primary-dark: #1e5aa8;
  --primary-light: #5a92e6;
  --secondary: #2d8f78;
  --secondary-dark: #1c6353;
  --secondary-light: #4bb6a0;
  --accent: #e67e22;
  --accent-dark: #c26b1c;
  --accent-light: #f39c12;
  
  /* Neutral Colors */
  --dark: #1a1c25;
  --gray-dark: #333643;
  --gray: #67697a;
  --gray-light: #b2b4c2;
  --light: #f8f9fa;
  --white: #ffffff;
  
  /* Gradient Backgrounds */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-light));
  --gradient-dark: linear-gradient(135deg, var(--dark), var(--gray-dark));
  
  /* Typography */
  --heading-font: 'Manrope', sans-serif;
  --body-font: 'Rubik', sans-serif;
  
  /* Shadows & Effects */
  --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  --card-shadow-hover: 0 15px 35px -5px rgba(0, 0, 0, 0.15);
  --btn-shadow: 0 4px 12px rgba(44, 110, 203, 0.25);
  --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

/* ======== Base Styles ======== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--gray-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1.2rem;
}

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

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

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

/* ======== Utility Classes ======== */
.animate-element {
  /*opacity: 0;*/
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-element.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* ======== Navbar ======== */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.navbar-item {
  font-family: var(--heading-font);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-item:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.navbar-brand {
  font-weight: 700;
}

.navbar-brand h1 {
  color: var(--primary);
}

.navbar-burger {
  height: 3.25rem;
  width: 3.25rem;
}

/* ======== Hero Section ======== */
.hero {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  color: var(--white);
}

.hero .title, 
.hero .subtitle {
  color: var(--white);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: var(--text-shadow);
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: var(--text-shadow);
  position: relative;
  z-index: 2;
}

.hero-text {
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.8;
  text-shadow: var(--text-shadow);
  position: relative;
  z-index: 2;
}

.arrow-down {
  margin-bottom: 2rem;
}

.arrow-down i {
  font-size: 2rem;
  cursor: pointer;
}

/* ======== Button Styles ======== */
.button {
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.button.is-primary {
  background-color: var(--primary);
  border-color: transparent;
  box-shadow: var(--btn-shadow);
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(44, 110, 203, 0.3);
}

.button.is-outlined {
  border: 2px solid;
}

.button.is-primary.is-outlined {
  border-color: var(--primary);
  color: var(--primary);
}

.button.is-primary.is-outlined:hover {
  background-color: var(--primary);
  color: var(--white);
}

.button.is-white.is-outlined {
  border-color: var(--white);
  color: var(--white);
}

.button.is-white.is-outlined:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.custom-button {
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.custom-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.custom-button:hover::after {
  width: 250%;
  height: 500%;
}

.custom-button-outline {
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: var(--radius-md);
  border-width: 2px;
  position: relative;
  overflow: hidden;
}

.custom-button-outline:hover {
  transform: translateY(-3px);
}

/* ======== Services Section ======== */
.services-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.section-title {
  position: relative;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 60px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--gray);
  margin-bottom: 3rem;
}

.service-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.service-card .card-image {
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-card .card-content {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card .title {
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  color: var(--gray);
  flex: 1;
}

/* ======== Research Section ======== */
.research-section {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  position: relative;
}

.research-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.research-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.research-icon {
  background: var(--gradient-primary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.research-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.research-content {
  flex: 1;
}

.research-content h3 {
  margin-bottom: 1rem;
}

.research-content p {
  line-height: 1.7;
}

/* ======== Insights Section ======== */
.insights-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  background-color: var(--light);
}

.insights-main-content {
  margin-bottom: 2rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.insights-image {
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insights-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insights-main-content:hover .insights-image img {
  transform: scale(1.05);
}

.insights-text {
  padding: 2rem;
}

.insights-date {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.insights-sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-widget {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  margin-bottom: 2rem;
}

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

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

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

.progress-container {
  height: 6px;
  background-color: #eaeaea;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.insights-mini-article {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.insights-mini-article:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.insights-mini-article h4 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.insights-mini-article p {
  color: var(--gray);
  margin-bottom: 1rem;
}

/* ======== Resources Section ======== */
.resources-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.resource-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-lg);
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.resource-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.resource-card p {
  color: var(--white);
  flex: 1;
  margin-bottom: 1.5rem;
}

/* ======== Blog Section ======== */
.blog-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.blog-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.blog-card .card-image {
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-card .card-content {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blog-card .title {
  color: var(--dark);
  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--gray);
  flex: 1;
}

.blog-card .button {
  align-self: flex-start;
}

/* ======== Events Section ======== */
.events-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.event-card {
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.event-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.event-date {
  background: var(--gradient-primary);
  color: var(--white);
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
  text-align: center;
}

.event-day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.event-content {
  padding: 1.5rem 2rem;
  flex: 1;
}

.event-content h3 {
  margin-bottom: 0.8rem;
}

.event-details {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.event-details i {
  margin-right: 0.5rem;
}

/* ======== News Section ======== */
.news-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.news-card {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background-color: var(--white);
  box-shadow: var(--card-shadow);
  height: 100%;
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.news-date {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.news-card .title {
  color: var(--dark);
  margin-bottom: 1rem;
}

.news-card p {
  color: var(--gray);
  margin-bottom: 1.2rem;
}

.news-card .button {
  align-self: flex-start;
}

/* ======== Sustainability Section ======== */
.sustainability-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.sustainability-content {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.sustainability-content h3 {
  margin-bottom: 1.5rem;
}

.sustainability-content p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

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

.sustainable-item h5 {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.sustainable-item h5:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-size: 1.5rem;
  line-height: 1;
}

.sustainability-sidebar {
  height: 100%;
}

.impact-widget {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.impact-widget h4 {
  margin-bottom: 1.8rem;
}

.impact-stat {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.impact-icon {
  background: var(--gradient-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.2rem;
}

.impact-icon i {
  color: var(--white);
  font-size: 1.2rem;
}

.impact-data {
  flex: 1;
}

.impact-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.impact-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.testimonial-widget {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.testimonial-widget h4 {
  margin-bottom: 1.2rem;
}

.testimonial-widget blockquote {
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--primary-light);
}

.testimonial-author {
  text-align: right;
  font-weight: 500;
}

/* ======== Contact Section ======== */
.contact-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.contact-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

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

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  border-color: var(--gray-light);
  box-shadow: none;
  transition: all 0.3s ease;
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(44, 110, 203, 0.2);
}

.contact-info {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  height: 100%;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.2rem;
  color: var(--white);
  font-size: 1.2rem;
}

.contact-text p {
  margin-bottom: 0.2rem;
  color: var(--gray);
}

.contact-text p:first-child {
  color: var(--gray-dark);
  font-weight: 500;
}

.map-container {
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-buttons h4 {
  margin-bottom: 1rem;
}

.social-buttons .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-buttons .button {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* ======== Footer ======== */
.footer {
  background-color: var(--dark);
  color: var(--gray-light);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 40px;
  background: var(--primary-light);
  border-radius: 1.5px;
}

.footer p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

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

.footer-links a {
  color: var(--gray-light);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 20px;
}

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

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

.social-links a {
  color: var(--gray-light);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-light);
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
}

/* ======== Success Page ======== */
.success-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  background-color: var(--light);
}

.success-content {
  text-align: center;
  max-width: 600px;
  padding: 3rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

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

/* ======== Terms & Privacy Pages ======== */
.legal-page {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.legal-content {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.legal-content h2 {
  margin-bottom: 2rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* ======== Media Queries ======== */
@media screen and (max-width: 1023px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .event-date {
    width: 80px;
  }
  
  .event-day {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    width: 100%;
    padding: 1rem;
  }
  
  .research-item {
    flex-direction: column;
  }
  
  .research-icon {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  
  .contact-info {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .custom-button, 
  .custom-button-outline {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .contact-form, 
  .contact-info {
    padding: 1.5rem;
  }
}

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

@keyframes slideUp {
  from {
    /*opacity: 0;*/
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    /*opacity: 0;*/
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade {
  animation: fadeIn 0.8s ease forwards;
}

.animate-slide {
  animation: slideUp 0.8s ease forwards;
}

.animate-scale {
  animation: scaleIn 0.8s ease forwards;
}