/* Base Styles */
:root {
  --primary-color: #ff7d21;
  --secondary-color: #003366;
  --accent-color: #f0ad4e;
  --dark-color: #003366;
  --light-color: #f8f9fa;
  --text-color: #333;
  --border-color: #ddd;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.btn-primary:hover {
  background-color: #E65C00;
  color: white;
}

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

.btn-secondary:hover {
  background-color: #002952;
  color: white;
}

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

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

/* Header */
.header {
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: var(--shadow);
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Removing duplicate media query */
.logo {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: var(--dark-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .navbar {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .menu-toggle {
    display: flex;
    z-index: 1001;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    box-shadow: var(--shadow);
    gap: 25px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .navbar {
    flex-wrap: wrap;
  }
  
  .btn.btn-outline {
    display: none;
  }

  .nav-links .btn.btn-outline {
    display: inline-block;
    margin: 15px 0;
  }
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  margin-bottom: 20px;
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--dark-color);
}

.hero-content h1 span {
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #666;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 470px;
  height: auto;
  object-fit: contain;
  position: absolute;
  top: -180px; /* Avvicina l'immagine all'header */
  right: 0px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
  animation: subtle-pulse 3s infinite ease-in-out;
  margin-top: -20px; /* Spingi l'immagine verso l'alto */
}


@keyframes subtle-pulse {
  0% { filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15)); }
  50% { filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.3)); }
  100% { filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15)); }
}

@media (max-width: 1068px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    margin-top: 30px;
    display: none;
  }
  
  .hero-image img {
    max-width: 250px;
    margin: 0 auto;
  }
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background-color: var(--light-color);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}

.step {
  flex: 1;
  min-width: 250px;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

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

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

.step-icon {
  margin: 20px 0;
  color: var(--primary-color);
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.benefit-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

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

.benefit-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  padding: 20px;
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--light-color);
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.testimonial {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  padding-bottom: 80px;
}

.testimonial-content {
  flex-grow: 1;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-author i {
  color: #666;
  min-width: 48px;
}

.testimonial-author div {
  flex: 1;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

.testimonial-author p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: #666;
}

.online-evaluation {
  padding: 80px 0;
  text-align: center;
  background-color: #f9f9f9;
}

.evaluation-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.evaluation-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.feature {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  color: #4a90e2;
  margin-bottom: 20px;
}

.feature h4 {
  margin: 0 0 15px;
  font-size: 1.25rem;
  color: #333;
}

.feature p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.evaluation-cta {
  margin-top: 40px;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .evaluation-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature {
    padding: 20px;
  }
}
  

.evaluation-content {
  max-width: 600px;
}

.evaluation-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.feature h4 {
  margin: 0.5rem 0;
  color: #333;
}

.feature p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.evaluation-cta {
  text-align: center;
  margin-top: 2rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .online-evaluation .container {
    grid-template-columns: 1fr;
  }
  
  .evaluation-image {
    order: -1;
    text-align: center;
  }
  
  .evaluation-image img {
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .testimonial {
    margin-bottom: 20px;
  }
  
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .testimonial-dot.active {
    background-color: var(--primary-color);
  }
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.contact-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
  width: 100%;
}

.contact-content h2 {
  text-align: center;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.form-group {
  flex: 1 0 calc(50% - 10px);
}

.full-width {
  flex: 1 0 100%;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
}

textarea {
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: normal;
}

.checkbox-container input {
  width: auto;
}

.contact-image {
  display: none;
}

@media screen and (max-width: 768px) {
  .form-group {
    flex: 1 0 100%;
  }
}

/* Footer */
.footer {
  padding: 80px 0 20px;
  background-color: var(--dark-color);
  color: white;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 10px;
}

.footer-logo p {
  margin-top: 15px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h4 {
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ccc;
}

.footer-column a:hover {
  color: white;
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.language-selector {
  margin-top: 10px;
}

.language-selector a {
  color: var(--light-color);
  padding: 3px 8px;
  text-decoration: none;
  transition: var(--transition);
}

.language-selector a:hover {
  color: var(--primary-color);
}

.language-selector a.active {
  color: var(--primary-color);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 50px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .contact .container {
    flex-direction: column;
  }
  
  .contact-image {
    order: -1;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .steps, .benefits-grid, .testimonial-slider {
    flex-direction: column;
    align-items: center;
  }
  
  .step, .benefit-card, .testimonial {
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .form-group {
    flex: 1 0 100%;
  }
}

.hero-evaluation {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  margin-top: -20px;
  position: relative;
  overflow: hidden;
}

.hero-evaluation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/pattern.png') repeat;
  opacity: 0.05;
  z-index: 1;
}

.evaluation-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.evaluation-content h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.evaluation-content .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.evaluation-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  color: #ff6b35;
  margin-bottom: 1.5rem;
}

.feature h4 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.feature p {
  color: #666;
  line-height: 1.6;
}

.animate-feature {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.animate-feature:nth-child(2) {
  animation-delay: 0.2s;
}

.animate-feature:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.evaluation-cta {
  margin-top: 3rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 50px;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

@media (max-width: 768px) {
  .hero-evaluation {
    padding: 60px 0;
  }
  
  .evaluation-content h2 {
    font-size: 2rem;
  }
  
  .evaluation-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .testimonial {
    margin-bottom: 20px;
  }
  
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .testimonial-dot.active {
    background-color: var(--primary-color);
  }
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.contact-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
  width: 100%;
}

.contact-content h2 {
  text-align: center;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.form-group {
  flex: 1 0 calc(50% - 10px);
}

.full-width {
  flex: 1 0 100%;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
}

textarea {
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: normal;
}

.checkbox-container input {
  width: auto;
}

.contact-image {
  display: none;
}

@media screen and (max-width: 768px) {
  .form-group {
    flex: 1 0 100%;
  }
}

/* Footer */
.footer {
  padding: 80px 0 20px;
  background-color: var(--dark-color);
  color: white;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 10px;
}

.footer-logo p {
  margin-top: 15px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h4 {
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ccc;
}

.footer-column a:hover {
  color: white;
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.language-selector {
  margin-top: 10px;
}

.language-selector a {
  color: var(--light-color);
  padding: 3px 8px;
  text-decoration: none;
  transition: var(--transition);
}

.language-selector a:hover {
  color: var(--primary-color);
}

.language-selector a.active {
  color: var(--primary-color);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 50px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .contact .container {
    flex-direction: column;
  }
  
  .contact-image {
    order: -1;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .steps, .benefits-grid, .testimonial-slider {
    flex-direction: column;
    align-items: center;
  }
  
  .step, .benefit-card, .testimonial {
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .form-group {
    flex: 1 0 100%;
  }
}

.hero-evaluation {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  margin-top: -20px;
  position: relative;
  overflow: hidden;
}

.hero-evaluation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/pattern.png') repeat;
  opacity: 0.05;
  z-index: 1;
}

.evaluation-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.evaluation-content h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.evaluation-content .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.evaluation-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  color: #ff6b35;
  margin-bottom: 1.5rem;
}

.feature h4 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.feature p {
  color: #666;
  line-height: 1.6;
}

.animate-feature {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.animate-feature:nth-child(2) {
  animation-delay: 0.2s;
}

.animate-feature:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.evaluation-cta {
  margin-top: 3rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 50px;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

@media (max-width: 768px) {
  .hero-evaluation {
    padding: 60px 0;
  }
  
  .evaluation-content h2 {
    font-size: 2rem;
  }
  
  .evaluation-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .testimonial {
    margin-bottom: 20px;
  }
  
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .testimonial-dot.active {
    background-color: var(--primary-color);
  }
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.contact-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
  width: 100%;
}

.contact-content h2 {
  text-align: center;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.form-group {
  flex: 1 0 calc(50% - 10px);
}

.full-width {
  flex: 1 0 100%;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
}

textarea {
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: normal;
}

.checkbox-container input {
  width: auto;
}

.contact-image {
  display: none;
}

@media screen and (max-width: 768px) {
  .form-group {
    flex: 1 0 100%;
  }
}

/* Footer */
.footer {
  padding: 80px 0 20px;
  background-color: var(--dark-color);
  color: white;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 10px;
}

.footer-logo p {
  margin-top: 15px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h4 {
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ccc;
}

.footer-column a:hover {
  color: white;
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.language-selector {
  margin-top: 10px;
}

.language-selector a {
  color: var(--light-color);
  padding: 3px 8px;
  text-decoration: none;
  transition: var(--transition);
}

.language-selector a:hover {
  color: var(--primary-color);
}

.language-selector a.active {
  color: var(--primary-color);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 50px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .contact .container {
    flex-direction: column;
  }
  
  .contact-image {
    order: -1;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .steps, .benefits-grid, .testimonial-slider {
    flex-direction: column;
    align-items: center;
  }
  
  .step, .benefit-card, .testimonial {
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .form-group {
    flex: 1 0 100%;
  }
}

.hero-evaluation {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  margin-top: -20px;
  position: relative;
  overflow: hidden;
}

.hero-evaluation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/pattern.png') repeat;
  opacity: 0.05;
  z-index: 1;
}

.evaluation-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.evaluation-content h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.evaluation-content .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.evaluation-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  color: #ff6b35;
  margin-bottom: 1.5rem;
}

.feature h4 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.feature p {
  color: #666;
  line-height: 1.6;
}

.animate-feature {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.animate-feature:nth-child(2) {
  animation-delay: 0.2s;
}

.animate-feature:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.evaluation-cta {
  margin-top: 3rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 50px;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

@media (max-width: 768px) {
  .hero-evaluation {
    padding: 60px 0;
  }
  
  .evaluation-content h2 {
    font-size: 2rem;
  }
  
  .evaluation-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .testimonial {
    margin-bottom: 20px;
  }
  
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .testimonial-dot.active {
    background-color: var(--primary-color);
  }
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.contact-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
  width: 100%;
}

.contact-content h2 {
  text-align: center;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.form-group {
  flex: 1 0 calc(50% - 10px);
}

.full-width {
  flex: 1 0 100%;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
}

textarea {
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: normal;
}

.checkbox-container input {
  width: auto;
}

.contact-image {
  display: none;
}

@media screen and (max-width: 768px) {
  .form-group {
    flex: 1 0 100%;
  }
}

/* Footer */
.footer {
  padding: 80px 0 20px;
  background-color: var(--dark-color);
  color: white;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 10px;
}

.footer-logo p {
  margin-top: 15px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h4 {
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ccc;
}

.footer-column a:hover {
  color: white;
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.language-selector {
  margin-top: 10px;
}

.language-selector a {
  color: var(--light-color);
  padding: 3px 8px;
  text-decoration: none;
  transition: var(--transition);
}

.language-selector a:hover {
  color: var(--primary-color);
}

.language-selector a.active {
  color: var(--primary-color);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 50px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .contact .container {
    flex-direction: column;
  }
  
  .contact-image {
    order: -1;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .steps, .benefits-grid, .testimonial-slider {
    flex-direction: column;
    align-items: center;
  }
  
  .step, .benefit-card, .testimonial {
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .form-group {
    flex: 1 0 100%;
  }
}

.hero-evaluation {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  margin-top: -20px;
  position: relative;
  overflow: hidden;
}

.hero-evaluation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/pattern.png') repeat;
  opacity: 0.05;
  z-index: 1;
}

.evaluation-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.evaluation-content h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.evaluation-content .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.evaluation-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  color: #ff6b35;
  margin-bottom: 1.5rem;
}

.feature h4 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.feature p {
  color: #666;
  line-height: 1.6;
}

.animate-feature {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.animate-feature:nth-child(2) {
  animation-delay: 0.2s;
}

.animate-feature:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.evaluation-cta {
  margin-top: 3rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 50px;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

@media (max-width: 768px) {
  .hero-evaluation {
    padding: 60px 0;
  }
  
  .evaluation-content h2 {
    font-size: 2rem;
  }
  
  .evaluation-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .testimonial {
    margin-bottom: 20px;
  }
  
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .testimonial-dot.active {
    background-color: var(--primary-color);
  }
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.contact-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
  width: 100%;
}

.contact-content h2 {
  text-align: center;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.form-group {
  flex: 1 0 calc(50% - 10px);
}

.full-width {
  flex: 1 0 100%;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
}

textarea {
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: normal;
}

.checkbox-container input {
  width: auto;
}

.contact-image {
  display: none;
}

@media screen and (max-width: 768px) {
  .form-group {
    flex: 1 0 100%;
  }
}

/* Footer */
.footer {
  padding: 80px 0 20px;
  background-color: var(--dark-color);
  color: white;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 10px;
}

.footer-logo p {
  margin-top: 15px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h4 {
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ccc;
}

.footer-column a:hover {
  color: white;
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.language-selector {
  margin-top: 10px;
}

.language-selector a {
  color: var(--light-color);
  padding: 3px 8px;
  text-decoration: none;
  transition: var(--transition);
}

.language-selector a:hover {
  color: var(--primary-color);
}

.language-selector a.active {
  color: var(--primary-color);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 50px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .contact .container {
    flex-direction: column;
  }
  
  .contact-image {
    order: -1;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .steps, .benefits-grid, .testimonial-slider {
    flex-direction: column;
    align-items: center;
  }
  
  .step, .benefit-card, .testimonial {
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .form-group {
    flex: 1 0 100%;
  }
}

.hero-evaluation {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  margin-top: -20px;
  position: relative;
  overflow: hidden;
}

.hero-evaluation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/pattern.png') repeat;
  opacity: 0.05;
  z-index: 1;
}

.evaluation-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.evaluation-content h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.evaluation-content .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.evaluation-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  color: #ff6b35;
  margin-bottom: 1.5rem;
}

.feature h4 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.feature p {
  color: #666;
  line-height: 1.6;
}

.animate-feature {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.animate-feature:nth-child(2) {
  animation-delay: 0.2s;
}

.animate-feature:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.evaluation-cta {
  margin-top: 3rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 50px;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

@media (max-width: 768px) {
  .hero-evaluation {
    padding: 60px 0;
  }
  
  .evaluation-content h2 {
    font-size: 2rem;
  }
  
  .evaluation-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .testimonial {
    margin-bottom: 20px;
  }
  
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .testimonial-dot.active {
    background-color: var(--primary-color);
  }
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.contact-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
  width: 100%;
}

.contact-content h2 {
  text-align: center;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.form-group {
  flex: 1 0 calc(50% - 10px);
}

.full-width {
  flex: 1 0 100%;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
}

textarea {
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: normal;
}

.checkbox-container input {
  width: auto;
}

.contact-image {
  display: none;
}

@media screen and (max-width: 768px) {
  .form-group {
    flex: 1 0 100%;
  }
}

/* Footer */
.footer {
  padding: 80px 0 20px;
  background-color: var(--dark-color);
  color: white;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 10px;
}

.footer-logo p {
  margin-top: 15px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h4 {
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ccc;
}

.footer-column a:hover {
  color: white;
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.language-selector {
  margin-top: 10px;
}

.language-selector a {
  color: var(--light-color);
  padding: 3px 8px;
  text-decoration: none;
  transition: var(--transition);
}

.language-selector a:hover {
  color: var(--primary-color);
}

.language-selector a.active {
  color: var(--primary-color);
  font-weight: bold;
}