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

body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background-color: #eeece4;
    padding: 20px;
    min-height: 100vh;
}

/* Navigation bar */
.navbar {
  width: 100%;
  padding: 20px 0px;
  display: flex;
  justify-content: flex-end; /* right-align links */
  background-color: transparent; /* keep white background */
  position: fixed; /* stays at top */
  top: 0;
  left: -10px;
  z-index: 100;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 5px;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #7c7c7c;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #000000;
}

/* Dropdown menu styling */
.dropdown {
  position: relative;
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  margin: 0;
  min-width: 150px;
  display: none;
  z-index: 101;
}

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

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #7c7c7c;
  font-size: 16px;
  transition: background-color 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
  color: #000000;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.title {
    color: black;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.info-box {
    background-color: #eeece4;
    border: 2px solid #eeece4;
    padding: 12px 15px;
    margin-bottom: 0px;
    max-width: 550px;
}

.info-box p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.certification-info-box {
    position: absolute;
    bottom: 400px;
    right: 225px;
    background-color: #eeece4;
    border: 2px solid #eeece4;
    padding: 12px 15px;
    max-width: 1500px;
    z-index: 50;
}

.certification-info-box p {
    color: #000000;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    min-height: 550px;
}

.left-content {
    flex: 0.5;
    padding: 20px;
    padding-top: 60px;
}

.right-content {
    flex: 0.5;
    padding: 20px;
    padding-top: 0;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.content-text h3 {
    color: #1a5490;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.content-text ul {
    list-style: none;
    padding-left: 0;
}

.content-text li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.content-text li:before {
    content: "○";
    position: absolute;
    left: 0;
}

.arrow-container {
    flex: 2;
    max-width: 1200px;
    position: relative;
}

.arrow-svg {
    width: 100%;
    height: auto;
}

.segment {
    fill: #4a90c8;
    stroke: #fff;
    stroke-width: 3;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-origin: center;
    transform-box: fill-box
}

.segment:hover {
    fill: #3a7ab0;
    transform: scale(1.1);
}

.segment:hover + text {
    font-size: 24px;
    transition: font-size 0.3s ease;
}

.segment.active {
    fill: #17426a;
}

.arrow-head {
    fill: #4a90c8;
    stroke: #fff;
    stroke-width: 3;
}

.segment-label {
    fill: white;
    font-size: 22px;
    font-weight: bold;
    text-anchor: middle;
    pointer-events: none;
    font-family: Arial, sans-serif;
    transition: font-size 0.3s ease;
}


.certification-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border: 3px solid #1a5490;
    padding: 20px 30px;
    min-width: 280px;
}

.certification-box h3 {
    color: #1a5490;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.certification-box p {
    margin: 8px 0;
    text-align: right;
    font-size: 1rem;
    color: #333;
}

@media (max-width: 1200px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .left-content,
    .right-content {
        width: 100%;
    }
    
    .certification-box {
        position: static;
        margin-top: 30px;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .segment-label {
        font-size: 12px;
    }
    
    .content-text {
        font-size: 1rem;
    }
}

/* Call-to-action section */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    margin: 20px 0 30px 0;
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #000000;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4a90c8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #005fa3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 116, 217, 0.3);
}