* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #10233f;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  padding: 18px 0;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 58px;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  text-decoration: none;
  color: #10233f;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s ease;
}

.main-nav a:hover {
  color: #4fa64d;
}

.header-btn {
  background: #4fa64d;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 3px;
  font-weight: 700;
  transition: 0.3s ease;
}

.header-btn:hover {
  background: #3d9140;
}

.hero {
  min-height: 520px;
  background: linear-gradient(
      rgba(5, 24, 46, 0.88),
      rgba(5, 24, 46, 0.88)
    ),
    url("images/hero-bg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.eyebrow {
  color: #4fa64d;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  color: #ffffff;
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-text {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
}

.btn {
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 3px;
  font-weight: 700;
}

.btn.primary {
  background: #4fa64d;
  color: #ffffff;
  transition: 0.3s ease;
}

.btn.primary:hover {
  background: #3d9140;
}

.btn.secondary {
  border: 2px solid #4fa64d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features {
  background: #071d36;
  padding: 50px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-item h3 {
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 18px;
}

.feature-item p {
  color: #c7d1df;
  line-height: 1.7;
  font-size: 15px;
}
.services {
  padding: 100px 0;
  background: #f7f8fb;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title p {
  color: #4fa64d;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 42px;
  color: #10233f;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: transparent;
  padding: 45px 32px;
  border-radius: 8px;
  transition: 0.3s ease;
  border: 1px solid #dfe5ec;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-card h3 {
  margin-bottom: 18px;
  color: #10233f;
  font-size: 24px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #5c6675;
}

.about-preview {
  padding: 100px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
}

.section-label {
  color: #4fa64d;
  font-weight: 700;
  margin-bottom: 14px;
}

.about-content {
    max-width: 620px;
}

.about-content h2 {
  font-size: 42px;
  color: #10233f;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-content p {
  color: #4f5b6b;
  line-height: 1.8;
  margin-bottom: 17px;
}

.about-panel {
  background: #071d36;
  padding: 40px;
  border-radius: 10px;
  border-top: 4px solid #4fa64d;
}

.about-panel h3 {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 24px;
}

.about-panel ul {
  list-style: none;
}

.about-panel li {
  color: #c7d1df;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.cta-section {
  background: #071d36;
  padding: 70px 0;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  align-items: center;
}

.cta-content h2 {
  color: #ffffff;
  font-size: 42px;
  line-height: 1.3;
  max-width: 700px;
}

.cta-button {
  flex-shrink: 0;
}

.cta-button .btn {
    padding: 18px 34px;
}

.site-footer {
  background: #ffffff;
  padding-top: 70px;
  border-top: 1px solid #dfe5ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr;
  gap: 65px;
  align-items: flex-start;
  padding: 20px 0 65px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: #5c6675;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #4fa64d;
}

.footer-brand img {
  width: 145px;
  margin-bottom: 20px;
}

.footer-brand p,
.footer-contact p {
  font-size: 15px;
  color: #5c6675;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  color: #10233f;
 margin-bottom: 28px;
 display: block;
}

.footer-links a {
  display: block;
  color: #5c6675;
  text-decoration: none;
  margin-bottom: 14px;
  transition: 0.3s ease;
}

.footer-links a,
.footer-contact p {
  line-height: 1.9;
}

.footer-links a:hover {
  color: #4fa64d;
}

.footer-bottom {
  background: #071d36;
  text-align: center;
  padding: 20px;
}

.footer-bottom p {
  color: #c7d1df;
}

@media (max-width: 900px) {
  .header-container {
    flex-direction: column;
    gap: 24px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  h1 {
    font-size: 40px;
  }

  .hero {
    min-height: 520px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .features-grid,
  .services-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-content h2,
  .about-content h2,
  .section-title h2 {
    font-size: 34px;
  }
}

@media (max-width: 500px) {
  .logo {
    height: 65px;
  }

  .header-btn {
    display: none;
  }

  h1 {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .services,
  .about-preview {
    padding: 70px 0;
  }
}

.service-icon {
    font-size: 48px;
    color: #4fa64d;
    margin-bottom: 24px;
}

.page-hero {
    background: #071d36;
    padding: 120px 0 110px;
}

.page-title {
    color: #ffffff;
    font-size: 58px;
    line-height: 1.1;
    max-width: 800px;
    margin-bottom: 24px;
}

.page-subtitle {
    color: #c7d1df;
    font-size: 20px;
    line-height: 1.8;
    max-width: 750px;
}

.page-hero .section-label {
    margin-bottom: 20px;
}

.about-story {
  padding: 90px 0;
}

.company-detail {
  padding: 90px 0;
  background: #f7f8fb;
}

.approach-points {
  margin-top: 28px;
  padding-left: 20px;
}

.approach-points li {
  margin-bottom: 17px;
  color: #4f5b6b;
  line-height: 1.8;
  font-size: 15px;
}

.company-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.about-section .section-label {
  color: #4fa64d;
}

.company-detail h2 {
  font-size: 40px;
  line-height: 1.25;
  color: #10233f;
  max-width: 520px;
}

.company-detail p {
  color: #5c6675;
  line-height: 1.9;
  margin-bottom: 17px;
  font-size: 17px;
}

.values-section {
  padding-top: 110px;
}

.company-detail .section-label {
  color: #4fa64d;
}

.values-section .services-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.values-section .service-card {
  width: 340px;
}

section {
  padding: 110px 0;
}

.about-text {
  max-width: 700px;
}

.footer {
  border-top: 1px solid #d9d9d9;
}

.footer-column a {
    color: #6b7280;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-column a:hover {
    color: #4caf50;
}


.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    text-decoration: none;
    color: #6b7280;
    transition: 0.3s ease;
}

.footer-column a:hover {
    color: #4caf50;
}

.accordion {
  max-width: 1100px;
  margin: 60px auto 0;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}

.accordion-header {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 30px 32px;
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  color: #10233f;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header span {
    font-weight: 400;
    font-size: 28px;
}

.accordion-header:hover {
  color: #4fa64d;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 32px;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
line-height: 2;
}

.accordion-item.active .accordion-content {
  max-height: 1200px;
  opacity: 1;
  padding: 0 32px 32px;
}

.accordion-content p {
  color: #5c6675;
  line-height: 1.8;
  font-size: 16px;
  max-width: 850px;
  margin-bottom: 18px;
}

.accordion-content h4 {
  color: #10233f;
  margin: 28px 0 14px;
  font-size: 20px;
  margin-top: 34px;
}

.accordion-content ul {
  list-style: none;
  margin: 10px 0 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}

.accordion-content li {
  color: #5c6675;
  line-height: 1.6;
  font-size: 16px;
  position: relative;
  padding-left: 28px;
}

.accordion-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4fa64d;
  font-weight: 700;
}
.hero-trust {
  color: #9fb0c3;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.7;
  max-width: 750px;
}

.main-nav a.active {
    color: #4fa64d;
}

.process-section {
  padding: 110px 0;
  background: #ffffff;
}

.process-list {
  max-width: 950px;
  margin: 70px auto 0;
}

.process-row {
  display: flex;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid #dfe5ec;
}

.process-row:hover {
    padding-left: 10px;
    transition: 0.3s ease;
}

.process-number {
  font-size: 18px;
  font-weight: 700;
  color: #4fa64d;
  min-width: 60px;
}

.process-content h3 {
  font-size: 28px;
  color: #10233f;
  margin-bottom: 12px;
}

.process-content p {
  color: #4f5b6b;
  line-height: 1.8;
  font-size: 17px;
  max-width: 700px;
}

@media (max-width: 700px) {
  .process-row {
    flex-direction: column;
    gap: 16px;
  }
}

.sectors-section {
  padding: 110px 0;
  background: #ffffff;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.sector-card {
  background: #ffffff;
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  padding: 42px 32px;
  transition: 0.3s ease;
}

.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.sector-icon {
  font-size: 44px;
  color: #4fa64d;
  margin-bottom: 24px;
}

.sector-card h3 {
  font-size: 24px;
  color: #10233f;
  margin-bottom: 16px;
}

.sector-card p {
  color: #4f5b6b;
  line-height: 1.8;
  font-size: 16px;
}

@media (max-width: 900px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }
}

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 48px;
    line-height: 1.2;
    color: #10233f;
    margin: 18px 0 24px;
    max-width: 520px;
}

.contact-info p {
    color: #5c6675;
    line-height: 1.9;
    margin-bottom: 18px;
}

.contact-details {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    color: #4fa64d;
    font-size: 22px;
    margin-top: 6px;
}

.contact-item h4 {
    color: #10233f;
    margin-bottom: 6px;
    font-size: 18px;
}

.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #dfe5ec;
    border-radius: 12px;
    padding: 34px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    color: #10233f;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    padding: 15px 16px;
    font-size: 16px;
    font-family: inherit;
    color: #10233f;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4fa64d;
}

.contact-form button {
    margin-top: 10px;
    border: none;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.company-detail ul {
    margin-top: 24px;
    padding-left: 18px;
}

.company-detail li {
    color: #5c6675;
    line-height: 1.9;
    margin-bottom: 10px;
}

.resources-section {
  padding: 90px 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.resource-card {
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  padding: 32px;
  transition: 0.3s ease;
  width: 100%;
  max-width: 760px;
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.resource-icon {
  font-size: 42px;
  color: #4fa64d;
  margin-bottom: 24px;
}

.resource-card h3 {
  font-size: 24px;
  color: #10233f;
  margin-bottom: 16px;
}

.resource-card p {
  color: #4f5b6b;
  line-height: 1.8;
  margin-bottom: 20px;
}

.resource-card a,
.featured-card a {
  color: #4fa64d;
  text-decoration: none;
  font-weight: 700;
}

.featured-section {
  padding: 90px 0;
  background: #f7f8fb;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.featured-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px 32px;
}

.featured-card h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #10233f;
  margin-bottom: 18px;
}

.featured-card p {
  color: #4f5b6b;
  line-height: 1.8;
  margin-bottom: 20px;
}

.faq-section {
  padding: 90px 0;
}

.faq-list {
  max-width: 900px;
  margin: 60px auto 0;
}

.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid #dfe5ec;
}

.faq-item h3 {
  color: #10233f;
  margin-bottom: 14px;
  font-size: 24px;
}

.faq-item p {
  color: #4f5b6b;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .resources-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

.article-section {
  padding: 90px 0;
  padding-bottom: 80px;
}

.article-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.article-content h2 {
  font-size: 36px;
  color: #10233f;
  margin-top: 50px;
  margin-bottom: 20px;
}

.article-content h3 {
  font-size: 24px;
  color: #10233f;
  margin-bottom: 14px;
}

.article-content p,
.article-content li {
  color: #4f5b6b;
  line-height: 2;
  font-size: 18px;
  max-width: 900px;
}

.article-content ul {
  margin: 20px 0 20px 24px;
}

.article-content ul li {
  margin-bottom: 12px;
}

.article-intro {
  font-size: 20px;
  line-height: 1.9;
}

.article-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
  max-width: 780px;
}

.benefit-item {
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  padding: 28px;
}

.article-sidebar {
  position: relative;
}

.sidebar-card {
  position: sticky;
  top: 120px;
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  padding: 32px;
  transition: 0.3s ease;
}

.sidebar-card a {
    display: block;
    margin-bottom: 14px;
    color: #58b14c;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.sidebar-card a:hover {
    opacity: 0.7;
}

.sidebar-card h3 {
  color: #10233f;
  margin-bottom: 24px;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card li {
  margin-bottom: 16px;
}

.sidebar-card a {
  display: block;
  margin-bottom: 14px;
  color: #4fa64d;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 900px) {
  .article-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.article-sidebar {
  position: relative;
}

.sidebar-card {
  position: sticky;
  top: 120px;
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  padding: 32px;
  background: #ffffff;
}
}

@media (max-width: 900px) {
  .article-container {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: relative;
    top: 0;
  }
}

.benefit-item h3 a {
  color: #10233f;
  text-decoration: none;
  transition: 0.3s ease;
}

.benefit-item h3 a:hover {
  color: #4fa64d;
}

.article-sidebar {
  align-self: start;
}

.sidebar-card {
  position: sticky;
  top: 110px;
}

.article-section {
  padding: 90px 0 80px;
  overflow: visible;
}

.article-container {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 320px;
  gap: 60px;
  align-items: start;
}

.article-sidebar {
  align-self: start;
  position: sticky;
  top: 110px;
}

.sidebar-card {
  border: 1px solid #dfe5ec;
  border-radius: 10px;
  padding: 32px;
  background: #ffffff;
}

@media (max-width: 900px) {
  .article-container {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: relative;
    top: 0;
  }
}


.footer a:hover {
  color: #4caf50;
}

.article-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.article-content {
  flex: 1;
}

.article-sidebar {
  width: 300px;
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 32px;
}

.sidebar-card h3 {
  margin-bottom: 20px;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card ul li {
  margin-bottom: 14px;
}

.sidebar-card ul li:last-child {
  margin-bottom: 0;
}

.sidebar-card a {
  color: #4caf50;
  text-decoration: none;
  font-weight: 600;
}

.sidebar-card a:hover {
  color: #1f2937;
}

/* FOOTER FIX */
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1.15fr 1fr;
  gap: 55px;
  align-items: flex-start;
  padding-bottom: 55px;
}

.footer-column h4 {
  color: #10233f;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  display: block;
  color: #5c6675;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.7;
}

.footer-column a:hover {
  color: #4fa64d;
}

.footer-column p {
  color: #5c6675;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-column strong {
  color: #10233f;
}

/* MANAGEMENT SYSTEM ISO CARD SPACING FIX */
.article-content .resource-card {
  margin-bottom: 24px;
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
  }
}

@media (max-width: 650px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand,
  .footer-column {
    max-width: 100%;
  }
}