/* 
 * domain - Financial Audit Services
 * Main Stylesheet
 */

/* --------------------
 * 1. CSS Reset & Base
 * -------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #D1D5DB;
  background-color: #111827;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #00F6ED;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #FF5C8D;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #F9FAFB;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #00F6ED, #FF5C8D);
  border-radius: 3px;
}

.section-title .accent {
  background: linear-gradient(to right, #00F6ED, #FF5C8D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* --------------------
 * 2. Buttons & UI Elements
 * -------------------- */
.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(to right, #00F6ED, #FF5C8D);
  color: #111827;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 246, 237, 0.3);
  color: #111827;
}

.return-button {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #00F6ED;
  color: #00F6ED;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.return-button:hover {
  background-color: #00F6ED;
  color: #111827;
}

.service-link {
  display: inline-block;
  color: #00F6ED;
  font-weight: 600;
  position: relative;
}

.service-link::after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.service-link:hover::after {
  transform: translateX(5px);
}

/* Form Elements */
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: #1F2937;
  border: 1px solid #374151;
  color: #D1D5DB;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #00F6ED;
  box-shadow: 0 0 0 3px rgba(0, 246, 237, 0.2);
}

label {
  display: block;
  margin-bottom: 8px;
  color: #F9FAFB;
  font-weight: 500;
}

.checkbox-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.checkbox-item input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  accent-color: #00F6ED;
}

.checkbox-item label {
  margin-bottom: 0;
  font-weight: 400;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(to right, #00F6ED, #FF5C8D);
  color: #111827;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 246, 237, 0.3);
}

/* --------------------
 * 3. Header & Navigation
 * -------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(17, 24, 39, 0.95);
  z-index: 1000;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 246, 237, 0.2);
  backdrop-filter: blur(8px);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo svg text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* Menu Icon (Hamburger) */
.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  z-index: 1010;
  position: relative;
}

.menu-line {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #F9FAFB;
  transition: all 0.3s ease;
}

.menu-line.open:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-line.open:nth-child(2) {
  opacity: 0;
}

.menu-line.open:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Main Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav ul li {
  margin: 0 20px;
}

.main-nav ul li a {
  color: #D1D5DB;
  font-weight: 500;
  position: relative;
}

.main-nav ul li a:hover {
  color: #00F6ED;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #00F6ED, #FF5C8D);
  transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

/* --------------------
 * 4. Hero Section
 * -------------------- */
.hero-section {
  padding: 160px 0 100px;
  background: radial-gradient(circle at 70% 30%, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 1) 60%);
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('../img/pattern.svg') no-repeat;
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(209, 213, 219, 0.9);
}

/* Animated Chart */
.hero-animation {
  position: relative;
}

.animated-chart {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.chart-svg {
  overflow: visible;
}

.chart-line {
  fill: none;
  stroke: #00F6ED;
  stroke-width: 3;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawLine 2s forwards 0.5s ease-out;
}

.chart-point {
  fill: #FF5C8D;
  opacity: 0;
  transform-origin: center;
  animation: fadeIn 0.5s forwards;
}

.point1 {
  animation-delay: 1s;
}

.point2 {
  animation-delay: 1.5s;
}

.point3 {
  animation-delay: 2s;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* --------------------
 * 5. About Section
 * -------------------- */
.about-section {
  padding: 100px 0;
  background-color: #1A202C;
}

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 0 10px;
}

.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #00F6ED, #FF5C8D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
}

.stat-text {
  color: #D1D5DB;
  font-size: 0.9rem;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 246, 237, 0.2), rgba(255, 92, 141, 0.2));
  pointer-events: none;
}

/* --------------------
 * 6. Services Section
 * -------------------- */
.services-section {
  padding: 100px 0;
  background-color: #111827;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: #1F2937;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #00F6ED;
  box-shadow: 0 15px 30px rgba(0, 246, 237, 0.2);
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 25px;
  flex-grow: 1;
}

/* --------------------
 * 7. Why Us Section
 * -------------------- */
.why-us-section {
  padding: 100px 0;
  background-color: #1A202C;
  position: relative;
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-item {
  background-color: #1F2937;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.benefit-item:hover {
  border-color: #00F6ED;
  box-shadow: 0 10px 20px rgba(0, 246, 237, 0.15);
}

.benefit-icon {
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
}

.benefit-item h3 {
  margin-bottom: 10px;
  color: #F9FAFB;
}

/* --------------------
 * 8. Process Section
 * -------------------- */
.process-section {
  padding: 100px 0;
  background-color: #111827;
}

.process-timeline {
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.process-step {
  display: flex;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #00F6ED, #FF5C8D);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #111827;
  margin-right: 20px;
}

.step-content {
  position: relative;
  padding: 20px;
  background-color: #1F2937;
  border-radius: 12px;
  border-left: 3px solid #00F6ED;
  flex-grow: 1;
}

.step-content h3 {
  margin-bottom: 10px;
  color: #F9FAFB;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------
 * 9. Testimonials Section
 * -------------------- */
.testimonials-section {
  padding: 100px 0;
  background-color: #1A202C;
}

.testimonial-slider {
  margin-top: 50px;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-content {
  background-color: #1F2937;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  position: relative;
  border: 1px solid rgba(0, 246, 237, 0.3);
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(0, 246, 237, 0.2);
  line-height: 1;
}

.testimonial-text blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid #00F6ED;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  color: #9CA3AF;
  margin: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #374151;
  transition: all 0.3s ease;
}

.control-dot.active {
  background-color: #00F6ED;
  transform: scale(1.2);
}

.control-dot:hover {
  background-color: #FF5C8D;
}

/* --------------------
 * 10. FAQ Section
 * -------------------- */
.faq-section {
  padding: 100px 0;
  background-color: #111827;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 16px;
  border: 1px solid rgba(0, 246, 237, 0.3);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 8px 24px rgba(0, 246, 237, 0.15);
  border-color: rgba(0, 246, 237, 0.6);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(31, 41, 55, 0.8);
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  margin: 0;
  color: #F9FAFB;
  flex: 1;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #00F6ED;
  text-decoration: none;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}

.faq-answer {
  background-color: rgba(17, 24, 39, 0.6);
  padding: 20px;
  border-top: 1px solid rgba(0, 246, 237, 0.2);
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: #D1D5DB;
}

/* --------------------
 * 11. Order Form Section
 * -------------------- */
.order-section {
  padding: 100px 0;
  background-color: #1A202C;
}

.form-container {
  max-width: 700px;
  margin: 40px auto 0;
  background-color: #1F2937;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(0, 246, 237, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}

.form-submit {
  margin-top: 30px;
}

.checkboxes {
  margin-top: 30px;
}

/* --------------------
 * 12. Contact Section
 * -------------------- */
.contact-section {
  padding: 100px 0;
  background-color: #111827;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 246, 237, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-text h3 {
  margin-bottom: 5px;
}

.contact-text p {
  margin: 0;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.contact-map::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 246, 237, 0.1), rgba(255, 92, 141, 0.1));
  pointer-events: none;
}

/* --------------------
 * 13. Footer
 * -------------------- */
.main-footer {
  padding: 60px 0 30px;
  background-color: #1F2937;
  border-top: 1px solid rgba(0, 246, 237, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about {
  max-width: 400px;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-about p {
  opacity: 0.8;
}

.footer-contacts h3,
.footer-legal h3 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-contacts h3::after,
.footer-legal h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #00F6ED, #FF5C8D);
}

.footer-contacts ul,
.footer-legal ul {
  list-style: none;
}

.footer-contacts ul li,
.footer-legal ul li {
  margin-bottom: 10px;
}

.footer-contacts ul li a,
.footer-legal ul li a {
  color: #D1D5DB;
  transition: all 0.3s ease;
}

.footer-contacts ul li a:hover,
.footer-legal ul li a:hover {
  color: #00F6ED;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(209, 213, 219, 0.1);
}

.copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(209, 213, 219, 0.6);
}

/* --------------------
 * 14. Policy Pages
 * -------------------- */
.policy-section {
  padding: 160px 0 80px;
  background-color: #111827;
}

.policy-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}

.policy-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #00F6ED, #FF5C8D);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #1F2937;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 246, 237, 0.2);
}

.policy-content h2 {
  color: #00F6ED;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  margin-bottom: 20px;
}

.policy-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-content ul li {
  margin-bottom: 10px;
}

.policy-footer {
  max-width: 800px;
  margin: 30px auto 0;
  text-align: center;
}

.policy-footer p {
  margin-bottom: 20px;
  font-style: italic;
  color: #9CA3AF;
}

/* --------------------
 * 15. Thanks Page
 * -------------------- */
.thanks-section {
  padding: 180px 0 100px;
  background-color: #111827;
  text-align: center;
}

.thanks-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  border: 2px solid #00F6ED;
  border-radius: 16px;
  background-color: rgba(31, 41, 55, 0.7);
  box-shadow: 0 10px 30px rgba(0, 246, 237, 0.2);
  position: relative;
}

.thanks-content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00F6ED, #FF5C8D, #00F6ED);
  z-index: -1;
  border-radius: 18px;
  opacity: 0.5;
  animation: borderGlow 3s infinite alternate;
}

@keyframes borderGlow {
  0% {
    opacity: 0.4;
    box-shadow: 0 0 10px rgba(0, 246, 237, 0.5);
  }
  100% {
    opacity: 0.7;
    box-shadow: 0 0 20px rgba(0, 246, 237, 0.8);
  }
}

.confirmation-message {
  font-style: italic;
  color: #9CA3AF;
  margin-bottom: 25px;
  padding: 15px;
  border-top: 1px solid rgba(0, 246, 237, 0.3);
  border-bottom: 1px solid rgba(0, 246, 237, 0.3);
}

.thanks-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.thanks-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.thanks-animation {
  margin: 40px 0;
}

.checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.checkmark-circle {
  stroke: #00F6ED;
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  stroke: #00F6ED;
  stroke-width: 2;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

/* --------------------
 * 16. Cookie Popup
 * -------------------- */
.cookie-popup {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  max-width: 400px;
  margin: 0 auto;
  background-color: #1F2937;
  border: 1px solid #00F6ED;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}

.cookie-popup.show {
  bottom: 20px;
  opacity: 1;
  transform: translateY(0);
}

.cookie-content h3 {
  color: #F9FAFB;
  margin-top: 0;
  font-size: 1.2rem;
}

.cookie-content p {
  color: #D1D5DB;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-content a {
  color: #00F6ED;
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  text-align: right;
  margin-top: 15px;
}

.cookie-accept {
  background: linear-gradient(to right, #00F6ED, #FF5C8D);
  color: #111827;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
