:root {
  --primary: #1E2A38;
  --accent: #6AB04C;
  --bg-light: #F9FAFB;
  --white: #FFFFFF;
  --gray: #ADB5BD;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--primary);
  background-color: var(--bg-light);
  line-height: 1.7;
  font-size: 18px;
}

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

header {
  background-color: var(--primary);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--white);
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--accent);
}

.language-selector {
  display: flex;
  align-items: center;
  color: var(--white);
  cursor: pointer;
  font-weight: 500;
}

.language-selector svg {
  margin-left: 5px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
}

.hero {
  background: linear-gradient(90deg, var(--primary) 0%, rgba(30, 42, 56, 0.9) 100%), url('/api/placeholder/1920/1080') center/cover;
  color: var(--white);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 40px;
  color: var(--accent);
}

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

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: #5a9840;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.trust-badges img {
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.trust-badges img:hover {
  opacity: 1;
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.8rem;
  font-weight: 700;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  text-align: center;
  max-width: 800px;
  margin: -40px auto 60px;
  font-size: 1.3rem;
  color: var(--gray);
}

.why-eu {
  display: flex;
  align-items: center;
  gap: 60px;
  background-color: var(--white);
  padding: 80px 0;
}

.why-eu-content {
  flex: 1;
}

.why-eu-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.why-eu-image img {
  max-width: 100%;
  height: auto;
}

.why-eu h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.why-eu p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.eu-benefits {
  list-style: none;
  margin: 20px 0;
}

.eu-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.eu-benefits li svg {
  color: var(--accent);
  min-width: 20px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 4px;
  background-color: var(--accent);
  z-index: 1;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.step-number {
  width: 70px;
  height: 70px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.step-description {
  font-size: 1rem;
  color: var(--primary);
}

.process-cta {
  text-align: center;
  margin-top: 40px;
}

/* Services Section */
.services {
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  display: flex;
  justify-content: center;
  padding: 30px 0 20px;
}

.service-icon svg {
  color: var(--accent);
}

.service-content {
  padding: 0 25px 30px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.service-description {
  color: var(--primary);
  text-align: center;
  font-size: 1.1rem;
}

/* USP Section */
.usp {
  background-color: var(--white);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}

.usp-card {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s;
  height: 100%;
}

.usp-card:hover {
  transform: scale(1.03);
}

.usp-icon {
  margin-bottom: 20px;
  color: var(--accent);
}

.usp-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.usp-description {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ROI Calculator */
.roi-calculator {
  background-color: var(--primary);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.roi-calculator h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: center;
}

.roi-calculator > p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.calc-section {
  display: flex;
  gap: 30px;
}

.calc-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.calc-field label {
  margin-bottom: 8px;
  font-weight: 500;
}

.calc-field input,
.calc-field select {
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.calc-field small {
  font-size: 0.8rem;
  margin-top: 5px;
  opacity: 0.7;
}

.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.15);
}

.calc-field select option {
  background-color: var(--primary);
  color: var(--white);
}

.calc-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.roi-results {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.hidden {
  display: none;
}

.result-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.result-title {
  font-size: 1rem;
  margin-bottom: 10px;
  opacity: 0.9;
}

.result-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.results-disclaimer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.results-disclaimer a {
  color: var(--accent);
  text-decoration: none;
}

/* Client Regions */
.client-regions {
  background-color: var(--white);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}

.region-card {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s;
  height: 100%;
}

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

.region-flag {
  width: 70px;
  height: auto;
  margin-bottom: 20px;
}

.region-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
  position: relative;
}

.region-title:after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
  margin-top: 10px;
}

.region-solutions {
  list-style: none;
}

.region-solutions li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  position: relative;
}

.region-solutions li:before {
  content: '•';
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Case Study */
.case-study {
  background-color: var(--bg-light);
}

.case-study-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.case-study-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 30px;
  position: relative;
}

.case-study-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.case-study-subtitle {
  font-size: 1.3rem;
  color: var(--accent);
}

.case-study-content {
  padding: 30px;
  font-size: 1.2rem;
}

.case-study-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 30px;
  gap: 20px;
}

.stat {
  text-align: center;
  flex-basis: 200px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--primary);
}

.case-study-footer {
  background-color: var(--bg-light);
  padding: 20px;
  text-align: center;
}

/* FAQ Section */
.faq {
  background-color: var(--bg-light);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: rgba(106, 176, 76, 0.05);
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.faq-question svg {
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
  margin-top: 50px;
}

.faq-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Resources Section */
.resources {
  background-color: var(--white);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.resource-card {
  display: flex;
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.resource-icon {
  margin-right: 20px;
  color: var(--accent);
}

.resource-content {
  flex: 1;
}

.resource-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

.resource-description {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--gray);
}

.resource-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.resource-download:hover {
  color: #559c3b;
}

.resources-subscribe {
  background-color: var(--primary);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.resources-subscribe h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.resources-subscribe p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.subscribe-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  gap: 15px;
}

.subscribe-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.subscribe-form input:focus {
  outline: none;
}

/* Partners Section */
.partners {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 50px 0;
}

.partner-item {
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
  filter: grayscale(100%);
}

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

.certifications {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.certification-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.certification-item img {
  margin-bottom: 15px;
}

.certification-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
}

/* Testimonials */
.testimonials {
  background-color: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
  font-size: 1.2rem;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent);
  position: absolute;
  left: -10px;
  top: -20px;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.author-info p {
  color: var(--gray);
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(90deg, var(--primary) 0%, rgba(30, 42, 56, 0.9) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.3rem;
}

/* Contact Form */
.contact-form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 10px;
}

.contact-form {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.15);
}

.form-submit {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.form-disclaimer {
  width: 100%;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 20px;
}

.form-disclaimer a {
  color: var(--accent);
  text-decoration: none;
}

.contact-info-panel {
  flex: 1;
  min-width: 250px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
}

.contact-info-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
}

.contact-info-panel h3:after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
  margin-top: 10px;
}

.contact-method {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-method svg {
  color: var(--accent);
}

.contact-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-hours {
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.contact-socials {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.contact-socials a {
  color: var(--white);
  transition: color 0.3s;
}

.contact-socials a:hover {
  color: var(--accent);
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.1rem;
}

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

.contact-info {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.1rem;
}

.contact-info svg {
  min-width: 22px;
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
  font-size: 1rem;
}

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

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

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

/* Chatbot */
.chatbot-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--accent);
  color: white;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(106, 176, 76, 0.4);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
}

.chatbot-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(106, 176, 76, 0.5);
}

.chatbot-button span {
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
  }
  
  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }
  
  nav.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.6rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .why-eu {
    flex-direction: column-reverse;
    gap: 40px;
  }
  
  .case-study-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .calc-section {
    flex-direction: column;
    gap: 20px;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .chatbot-button {
    padding: 12px;
  }
  
  .chatbot-button span {
    display: none;
  }
}