    :root {
      --primary-color: #005f73;
      --secondary-color: #0a9396;
      --accent-color: #94d2bd;
      --text-color: #001219;
      --background-color: #ffffff;
      --font-family: 'Roboto', Arial, sans-serif;
      --transition-speed: 0.3s;
	  --hovercolor-menu: yellow;
	  --hovercolor-text: blue;
    }
    *, *::before, *::after { box-sizing: border-box; }
    body {
      margin: 0;
      padding: 0;
      font-family: var(--font-family);
      color: var(--text-color);
      background: var(--background-color);
      line-height: 1.6;
    }
    a, button { font: inherit; }
    a {
      color: var(--secondary-color);
      text-decoration: none;
      transition: color var(--transition-speed);
    }
    a:hover, a:focus,
    button:hover, button:focus {
      color: var(--accent-color);
    /*  outline: 2px solid var(--accent-color);*/
      text-decoration: underline;
    }
    .skip-link {
      position: absolute;
      top: -40px;
      left: 0;
      background: var(--primary-color);
      color: #fff;
      padding: 8px;
      z-index: 100;
      transition: top var(--transition-speed);
    }
	.skip-link a{
		color: #fff;
	}
    .skip-link:focus { top: 0; }
    nav { background: var(--primary-color); }
    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
      display: flex;
      align-items: center;
      position: relative;
    }
    .logo img { }
    .hamburger {
      display: none;
      flex-direction: column;
      width: 75px;
      height: 50px;
      justify-content: space-between;
      border: none;
      background: none;
      cursor: pointer;
    }
    .hamburger span {
      display: block;
      height: 6px;
      background: #fff;
      border-radius: 2px;
    }
    .nav-menu {
      list-style: none;
      display: flex;
      margin-left: auto;
      gap: 1.5rem;
    }
    .nav-menu.show {
      display: flex;
      flex-direction: column;
      background: var(--primary-color);
      position: absolute;
      top: 100%;
      right: 1rem;
      padding: 1rem;
      border-radius: 0 0 8px 8px;
      z-index: 999;
    }
    .nav-menu li { position: relative; }
    .nav-menu a, .dropdown-toggle {
      color: #fff;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      background: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    .dropdown-toggle::after {
      content: '\f0d7';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      margin-left: 0.3rem;
    }

    /* Dropdown styling */
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary-color);
      padding: 1rem;
      width: 80vw;
      max-width: 800px;
      border-radius: 8px;
      z-index: 1000;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      min-width: 400px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.1);
    }
	
	/* Add vertical line to all columns except the last */
	.dropdown-menu > *:not(:last-child)::after {
	  content: '';
	  position: absolute;
	  top: 2%;
	  right: 0;
	  width: 1px;
	  height: 98%;
	  background: var(--accent-color);
	}
	
	.nav-menu a:hover{
		color: var(--hovercolor-menu);
	}
    /* Desktop: Show dropdown on hover or focus-within */
    @media (min-width: 769px) {
      .nav-menu li:hover > .dropdown-menu,
      .nav-menu li:focus-within > .dropdown-menu {
        display: grid;
      }

      /* Only highlight the hovered/focused/clicked toggle */
      .dropdown-toggle.active,
      .nav-menu li:hover > .dropdown-toggle,
      .nav-menu li:focus-within > .dropdown-toggle,
      .dropdown-toggle:focus,
      .dropdown-toggle:hover {
        background: var(--accent-color);
        color: var(--primary-color);
        outline: none;
      }

      /* Remove .active from siblings when hovering/focusing another item */
      .nav-menu li:hover ~ li > .dropdown-toggle,
      .nav-menu li:focus-within ~ li > .dropdown-toggle {
        background: none;
        color: #fff;
      }
	  
		.dropdown-menu li .submenu-title{
			font-weight: bold;
			color: var(--hovercolor-menu);
			padding-left: 40px;
			text-transform: uppercase;
		}
		
		ul.dropdown-menu, ul.dropdown-menu li{
			list-style: none;
			margin-left : 0;
			padding-left: 0;
		}
		ul.dropdown-menu li{
			padding-left: 0px;
			margin-left:0px;
			text-transform: lowercase;
		}
		ul.dropdown-menu li a{ 
			padding-left: 0px;
			margin-left:0px;
			text-transform: capitalize;
		}
		
		
    }

    /* MOBILE MENU LOGIC */
    @media (max-width: 768px) {
      .hamburger {
        display: flex;
        margin-left: auto;
      }
      .nav-menu {
        display: none;
        flex-direction: column;
        background: var(--primary-color);
        position: absolute;
        top: 100%;
        right: 1rem;
        padding: 1rem;
        border-radius: 0 0 8px 8px;
        gap: 1rem;
        width: 90vw;
        z-index: 999;
      }
      .nav-menu.show { display: flex; }
      .nav-menu li:hover > .dropdown-menu,
      .nav-menu li:focus-within > .dropdown-menu { display: none; }
      .dropdown-menu {
        position: static !important;
        display: none;
        width: 100% !important;
        padding: 0.5rem 1rem !important;
        background: var(--primary-color) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        z-index: 100 !important;
        left: 0 !important;
        transform: none !important;
      }
      .dropdown-menu.open { display: flex !important; }
      .dropdown-menu * { color: #fff !important; }
      .dropdown-menu a,
      .dropdown-menu li .submenu-title,
      .dropdown-menu p { color: #fff !important; text-align: left !important; }
      /* Active toggle styling for mobile */
      .dropdown-toggle.active {
        background: var(--accent-color);
        color: var(--primary-color);
      }
    }

    /* --- MAIN CONTENT STYLES (unchanged) --- */
    header {
      position: relative;
      overflow: hidden;
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: var(--secondary-color);
    }
    header h1 {
      position: relative;
      font-size: 2.5rem;
      max-width: 90%;
      margin: 0;
      padding: 1rem;
    }
    main {
      padding: 2rem 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .content-section { margin-bottom: 2rem; }
    .content-section h2 {
      color: var(--primary-color);
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
    }
    .content-section p { margin-bottom: 1rem; }
    .cta-button {
      background: var(--primary-color);
      color: #fff;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 4px;
      font-size: 1rem;
      cursor: pointer;
      font-weight: 600;
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1rem;
      margin-top: 2rem;
    }
    .card {
      background: #fafafa;
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 1rem;
    }
    .card h3 {
      margin-bottom: 0.5rem;
      color: var(--secondary-color);
      font-size: 1.25rem;
    }
    footer {
      background: var(--primary-color);
      color: #fff;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
    }