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

:root {
  --primary-color: #1e88e5;
  --secondary-color: #0d47a1;
  --green-color: #8bc34a;
  --lime-color: #9ccc65;
  --orange-color: #ff9800;
  --accent-color: #ffa726;
  --text-color: #333;
  --light-bg: #f5f9ff;
  --white: #ffffff;
  --gray: #6c757d;
  --dark: #1a1a1a;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

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

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--green-color) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.page-loader p {
  color: var(--white);
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 500;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#navbar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--green-color), var(--primary-color), var(--orange-color)) 1;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 1.5rem 1.5rem;
  display: block;
  border-bottom: 3px solid transparent;
  position: relative;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-color), var(--orange-color));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
  width: 100%;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--primary-color);
}

.dropdown-arrow {
  font-size: 0.7rem;
  margin-left: 0.3rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  list-style: none;
  min-width: 320px;
  padding: 0;
  border-radius: 0 0 8px 8px;
  animation: fadeInDown 0.3s ease;
  z-index: 1000;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
  border-bottom: 1px solid var(--light-bg);
  position: relative;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu > li.dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-menu > li.dropdown > a .dropdown-arrow {
  margin-left: auto;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown-menu > li.dropdown:hover > a .dropdown-arrow {
  transform: translateX(5px);
}

.dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  border-radius: 8px;
  animation: fadeInRight 0.3s ease;
  margin-left: 2px;
}

.dropdown-menu a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-color);
  font-weight: 400;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: linear-gradient(90deg, var(--light-bg) 0%, var(--white) 100%);
  color: var(--primary-color);
}

.dropdown-menu > li.dropdown > a:hover {
  background: linear-gradient(90deg, var(--light-bg) 0%, var(--white) 100%);
}

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

.hero-section {
  color: var(--white);
  padding: 0;
  text-align: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-image-grid {
  display: flex;
  height: 100%;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  animation: kenburns 15s ease-in-out infinite;
}

.hero-image:nth-child(2),
.hero-image:nth-child(3) {
  display: none;
}

@keyframes kenburns {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(30, 136, 229, 0.75) 0%,
    rgba(13, 71, 161, 0.8) 50%,
    rgba(139, 195, 74, 0.75) 100%);
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 152, 0, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 195, 74, 0.3) 0%, transparent 50%);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.logo-animation {
  margin-bottom: 3rem;
}

.hero-logo {
  max-width: 350px;
  height: auto;
  margin: 0 auto 1rem;
  animation: fadeInScale 1s ease-out;
  filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.5)) brightness(1.1);
}

.logo-subtitle {
  font-size: 1.8rem;
  margin-top: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.5s ease-out;
}

.slogan {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  animation: fadeIn 2s ease-out;
  line-height: 1.3;
}

.slogan-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeIn 2.5s ease-out;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 3s ease-out;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-color), var(--lime-color));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(139, 195, 74, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(139, 195, 74, 0.6);
  background: linear-gradient(135deg, var(--lime-color), var(--green-color));
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: 5rem 2rem;
}

.section-dark {
  background-color: var(--light-bg);
}

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

.section-title {
  font-size: 2.5rem;
  background: linear-gradient(90deg, var(--primary-color), var(--green-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-color), var(--orange-color));
  border-radius: 2px;
}

.subsection-title {
  font-size: 2rem;
  color: var(--secondary-color);
  margin: 3rem 0 1.5rem;
}

.content-box {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  border-left: 5px solid var(--orange-color);
  transition: all 0.3s ease;
}

.content-box:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.section-dark .content-box {
  background-color: var(--white);
}

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

.content-box p {
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.content-box ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.content-box li {
  margin-bottom: 0.5rem;
}

.divisions {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--light-bg);
}

.about-with-images {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-with-images.reverse {
  grid-template-columns: 1fr 1.5fr;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.values-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.values-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--orange-color);
  font-size: 1.2rem;
}

.about-image-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.about-image-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(139, 195, 74, 0.3);
  border-color: var(--green-color);
}

.about-image-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

@media (max-width: 968px) {
  .about-with-images {
    grid-template-columns: 1fr;
  }

  .about-images {
    flex-direction: row;
  }
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partner-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.partner-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 30px rgba(30, 136, 229, 0.2);
  border-color: var(--orange-color);
}

.partner-card img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: left;
  color: var(--text-color);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--green-color), var(--orange-color));
  transition: width 0.3s ease;
}

.service-card:hover::before {
  width: 100%;
  opacity: 0.05;
}

.service-card h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(139, 195, 74, 0.3);
  border-color: var(--green-color);
}

.segments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.segment {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--green-color);
}

.segment:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 152, 0, 0.2);
  border-top-color: var(--orange-color);
}

.segment h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  padding-bottom: 0.75rem;
  font-weight: 600;
  position: relative;
}

.segment h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-color), var(--orange-color));
  border-radius: 2px;
}

.segment ul {
  list-style: none;
  padding: 0;
}

.segment li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.segment li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3a52 100%);
  color: var(--white);
  padding: 4rem 2rem 1.5rem;
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, var(--green-color), var(--primary-color), var(--orange-color)) 1;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--orange-color);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-color), var(--orange-color));
  border-radius: 2px;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.footer-slogan {
  font-size: 1rem;
  color: var(--green-color);
  font-weight: 600;
  margin-top: 1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 1rem;
}

.footer-links a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--green-color);
  transition: transform 0.3s ease;
}

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

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

.footer-contact-item {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-section {
    padding: 4rem 1rem;
    min-height: 50vh;
  }

  .ipc-logo {
    font-size: 3rem;
    letter-spacing: 4px;
  }

  .logo-subtitle {
    font-size: 1.2rem;
  }

  .slogan {
    font-size: 1.8rem;
  }

  .slogan-subtitle {
    font-size: 1.1rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .subsection-title {
    font-size: 1.5rem;
  }

  .content-box {
    padding: 1.5rem;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .segments {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-logo-img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a {
    padding-left: 0;
  }

  .footer-links a::before {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

.content-box p:last-child {
  margin-bottom: 0;
}

.segment li:last-child {
  padding-bottom: 0;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.strength-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.strength-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.strength-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.strength-card p {
  color: var(--text-color);
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.value-card p {
  opacity: 0.95;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.contact-item p {
  color: var(--text-color);
  font-size: 1rem;
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid var(--light-bg);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--green-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(139, 195, 74, 0.5);
  background: linear-gradient(135deg, var(--orange-color) 0%, var(--green-color) 100%);
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

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

.faq-item {
  background-color: var(--white);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.faq-item:hover {
  border-color: var(--green-color);
  box-shadow: 0 6px 25px rgba(139, 195, 74, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.faq-question h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  font-size: 2rem;
  color: var(--green-color);
  font-weight: bold;
  transition: transform 0.3s ease;
  min-width: 30px;
  text-align: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--orange-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem 2rem;
  border-top: 2px solid var(--light-bg);
}

.faq-answer p {
  color: var(--text-color);
  line-height: 1.8;
  margin: 0;
}

.page-hero {
  background: linear-gradient(135deg,
    rgba(30, 136, 229, 0.95) 0%,
    rgba(13, 71, 161, 0.95) 50%,
    rgba(139, 195, 74, 0.9) 100%);
  color: var(--white);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 152, 0, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 195, 74, 0.2) 0%, transparent 50%);
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero p {
  font-size: 1.8rem;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-box {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(139, 195, 74, 0.1) 100%);
  border-radius: 12px;
  border: 2px solid var(--light-bg);
}

.cta-box h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.3rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.detail-header {
  text-align: center;
  margin-bottom: 3rem;
}

.detail-subtitle {
  font-size: 1.5rem;
  color: var(--gray);
  margin-top: 1rem;
  font-weight: 300;
}

.detail-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.detail-content.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.detail-content.reverse .detail-text {
  order: 2;
}

.detail-content.reverse .detail-image {
  order: 1;
}

.detail-section-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}

.detail-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-color), var(--orange-color));
  border-radius: 2px;
}

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

.detail-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.8;
  color: var(--text-color);
  border-bottom: 1px solid var(--light-bg);
}

.detail-list li:last-child {
  border-bottom: none;
}

.detail-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-color);
  font-weight: bold;
  font-size: 1.3rem;
}

.detail-list li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.detail-conclusion {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--orange-color);
  line-height: 1.8;
  color: var(--text-color);
  font-style: italic;
}

.detail-image {
  position: relative;
}

.detail-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.detail-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 968px) {
  .detail-content,
  .detail-content.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .detail-content.reverse .detail-text,
  .detail-content.reverse .detail-image {
    order: 0;
  }

  .detail-section-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .strengths-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 1.2rem 1.5rem;
  }

  .detail-subtitle {
    font-size: 1.2rem;
  }

  .detail-list li {
    padding-left: 1.5rem;
    font-size: 0.95rem;
  }

  .page-hero {
    padding: 6rem 0 3rem;
  }

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

  .page-hero p {
    font-size: 1.3rem;
  }

  .cta-box {
    padding: 3rem 1.5rem;
  }

  .cta-box h2 {
    font-size: 1.8rem;
  }

  .cta-box p {
    font-size: 1.1rem;
  }
}

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

.equipment-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed var(--light-bg);
  position: relative;
}

.equipment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.equipment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-number {
  font-size: 6rem;
  font-weight: 700;
  color: var(--light-bg);
  user-select: none;
}

@media (max-width: 768px) {
  .equipment-gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .equipment-item {
    min-height: 250px;
  }

  .equipment-number {
    font-size: 4rem;
  }
}

.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
  align-items: center;
}

.supplier-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.supplier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(30, 136, 229, 0.2);
  border-color: var(--primary-color);
}

.supplier-card img {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 60px;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.partner-slide {
  min-width: calc(100% / 3);
  max-width: calc(100% / 3);
  flex-shrink: 0;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.partner-slide img {
  width: 100%;
  max-width: 250px;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: 12px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--green-color));
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(30, 136, 229, 0.4);
  background: linear-gradient(135deg, var(--green-color), var(--orange-color));
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(30, 136, 229, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-indicator.active {
  background: var(--primary-color);
  width: 32px;
  border-radius: 6px;
}

.carousel-indicator:hover {
  background: var(--green-color);
}

@media (max-width: 768px) {
  .suppliers-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .supplier-card {
    padding: 2rem;
    min-height: 150px;
  }

  .carousel-container {
    padding: 0 50px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .partner-slide {
    min-width: 100%;
    max-width: 100%;
    padding: 2rem;
  }

  .partner-slide img {
    max-width: 300px;
    max-height: 200px;
  }
}
