/* [Variables] */
:root {
  --Russian-violet: rgb(47,22,68);
  --Blue-Grey: rgb(107,154,196);
  --Tiffany-Blue: rgb(151,216,196);
  --Xanthous: rgb(244,185,66);
  --Mahogany: rgb(191,72,0);
  --Antiflash-White: rgb(239,242,241);
  --Raisin-Black: rgb(39,39,39);
  --Light-Background: rgb(250,250,250);
  --Hover-Button: rgb(204,207,205);
  --Box-Outline: rgb(153,153,153);
}

/* [Global Styles] */
.site-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body {
  color: rgba(0,0,0,1.00);
  position: relative;
  font-size: 16px;
  background: rgba(255,255,255,1.00);
  min-height: 100vh;
  font-family: Inter;
  font-weight: 400;
  line-height: 1.4;
}

container {
  width: 100%;
  display: block;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1 {
  font-size: 60px;
  margin: 0;
  font-weight: 700;
}

h2 {
  font-size: 42px;
  margin: 0;
  font-weight: 700;
}

h3 {
  font-size: 32px;
  margin: 0;
}

h4 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
}

h5 {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0;
}

/* Base Elements */
ul, ol {
  padding-left: 20px;
}

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

textarea {
  resize: vertical;
}

a {
  cursor: pointer;
  transition: all 200ms linear;
  text-decoration: none;
}

button {
  cursor: pointer;
}

component {
  display: block;
}

/* Rich Text Styling */
.rich-text-dh-styling {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.rich-text-dh-styling hr {
  width: 100%;
  border: 0;
  height: 1px;
  display: block;
  border-top: 1px solid rgb(203,203,203);
  margin: 20px 0;
}

blockquote {
  display: block;
  background: rgba(0,0,0,0.03);
  margin: 0;
  padding: 15px;
  border-radius: 6px;
}

blockquote cite {
  color: rgb(139,139,139);
  display: block;
  margin-top: 10px;
  font-weight: 500;
  padding-left: 15px;
}

/* [Navigation] */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.nav-logo {
  width: 350px;
}

.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0c0c0c;
  min-width: 500px;
  padding: 10px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 200ms linear;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  pointer-events: auto;
}

.nav-link {
  color: var(--Raisin-Black);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* [Footer] */
.footer {
  background: var(--Light-Background);
  padding: 80px 0 20px;
}

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

.footer-logo {
  max-width: 250px;
  margin-bottom: 40px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.footer-link {
  color: var(--Raisin-Black);
}

.footer-social {
  margin-top: 40px;
}

.footer-social img {
  max-width: 30px;
}

.footer-tagline {
  color: var(--Raisin-Black);
  font-size: 60px;
  font-weight: 800;
  text-align: center;
  line-height: 0.7;
  padding: 20px 0;
}

/* [Post Page] */
.post-section {
  background: var(--Antiflash-White);
  padding: clamp(40px, 5vw, 60px) 0;
}

/* Action Buttons */
.post-actions-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  background: white;
  position: relative;
  margin: 0 !important;
}

/* Action bar styling */
.action-divider {
  margin: 0;
  border: 0;
  height: 1px;
  background: rgba(229, 231, 235, 0.3);
}

.action-divider:last-child {
  margin-bottom: 5px;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 2px 0;
}

.action-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 11px;
  font-weight: 400;
  padding: 0;
  transition: opacity 0.2s ease;
  width: 60px;
  text-align: center;
}

.action-button span {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1;
}

.action-button:hover {
  opacity: 0.7;
  background: transparent;
  border: none;
}

.action-icon {
  width: 18px;
  height: 18px;
  display: block;
  margin: 0 auto;
  opacity: 0.6;
}

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

.post-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  overflow: hidden;
}

.post-hero {
  width: 100%;
  height: clamp(300px, 50vh, 600px);
  position: relative;
  margin-bottom: 0;
  background: var(--Antiflash-White);
  overflow: hidden;
}

.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-hero:hover img {
  transform: scale(1.02);
}

.post-header {
  padding: clamp(20px, 5vw, 40px);
  border-bottom: 1px solid #E5E7EB;
}

.post-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-tag {
  background: var(--Xanthous);
  color: var(--Raisin-Black);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.category-tag:hover {
  background: var(--Mahogany);
  color: white;
}

.post-date {
  color: var(--Raisin-Black);
  font-size: 0.875rem;
}

.post-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--Raisin-Black);
}

.post-excerpt {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.5;
  color: var(--Raisin-Black);
  opacity: 0.9;
  max-width: 70ch;
}

.reading-progress-container {
  position: fixed;
  top: 0;
  width: 100%;
  height: 4px;
  background: rgba(0,0,0,0.1);
  z-index: 1000;
}

.reading-progress-bar {
  height: 100%;
  background: var(--Xanthous);
  width: 0;
  transition: width 0.2s ease;
}

/* Post content styling */
.post-content > *:not(.post-hero):not(.post-actions-bar) {
  padding: 16px;
}

.content-wrapper {
  padding-top: 0 !important;
}

/* Post body styling */
.t2130 {
  margin: 0;
  padding: 0;
}

/* Content break styling */
.content-break {
  height: 4px;
}

/* Reduce spacing when content-break is next to another content-break */
.content-break + .content-break {
  display: none;
}

/* Adjust spacing around sections */
.content-section {
  margin: 8px 0;
}

.post-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.post-content h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.post-content p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* Adjust list spacing */
.post-content ul,
.post-content ol {
  margin: 0.5rem 0;
}

.loading {
  text-align: center;
  padding: clamp(40px, 8vw, 80px) 20px;
  color: var(--Raisin-Black);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .post-actions-bar {
    flex-wrap: wrap;
  }
  
  .action-button {
    flex: 1;
    justify-content: center;
    min-width: 100px;
  }
}

/* [News Press Page] */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

/* Regular News Cards */
.news-card {
  border: 1px solid #D0D5DD;
  display: grid;
  background: #FFF;
}

.news-card-content {
  padding: 40px;
}

.news-card-header {
  margin-bottom: 40px;
}

.news-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 16px;
}

.news-card-title {
  display: flex;
  flex-wrap: wrap;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: none;
}

.news-card-excerpt {
  width: 100%;
  font-weight: 300;
}

.news-card-link {
  color: rgb(0,0,0);
  width: 100%;
  border: 1px solid #D0D5DD;
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  padding: 14px 40px;
  border-radius: 4px;
  justify-content: center;
}

.news-card-link:hover p {
  color: rgb(255,255,255);
  transition-delay: 0.1s;
}

.news-card-link:hover .hover-overlay {
  transform: translate(0px,0px);
}

.news-card-link p {
  z-index: 1;
  position: relative;
  transition: color 200ms 0ms ease;
}

.news-card-link .hover-overlay {
  width: 100%;
  height: 100px;
  position: absolute;
  transform: translate(110%,0px);
  background: rgb(244,185,66);
  transition: transform 400ms 0ms ease;
}

/* Featured Post */
.featured-post {
  width: 100%;
  border: 1px solid #D0D5DD;
  display: flex;
  background: #FFF;
  column-gap: 55px;
  justify-content: space-between;
}

.featured-post-content {
  width: 100%;
  padding: 40px;
}

.featured-post-header {
  margin-bottom: 40px;
}

.featured-post-title {
  color: #000;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.featured-post-excerpt {
  width: 100%;
  font-weight: 300;
}

.featured-post-link {
  color: rgb(0,0,0);
  width: 356px;
  border: 1px solid #D0D5DD;
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  padding: 14px 40px;
  border-radius: 4px;
  justify-content: center;
}

.featured-post-link:hover p {
  color: rgb(255,255,255);
  transition-delay: 0.1s;
}

.featured-post-link:hover .hover-overlay {
  transform: translate(0px,0px);
}

.featured-post-link p {
  z-index: 1;
  position: relative;
  transition: color 200ms 0ms ease;
}

.featured-post-link .hover-overlay {
  width: 100%;
  height: 100px;
  position: absolute;
  transform: translate(110%,0px);
  background: rgb(244,185,66);
  transition: transform 400ms 0ms ease;
}

.featured-post-image {
  width: 100%;
  max-width: 500px;
  object-fit: scale-down;
  padding-right: 25px;
}

/* [People Page] */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 60px;
}

.person-card {
  text-align: center;
}

.person-image-container {
  width: 100%;
  position: relative;
  padding-bottom: 80%;
  margin-bottom: 16px;
}

.person-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-name {
  font-size: 24px;
  margin: 12px 0 8px;
}

.person-title {
  font-size: 14px;
  color: var(--Raisin-Black);
}

.person-bio {
  margin-top: 16px;
}

/* [Projects & Partners] */
.t1821 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}

/* [Education Arts Culture Projects] */
.introduction-card {
  background: white;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  gap: 2rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.introduction-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.introduction-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.featured-resource-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.featured-resource-title h3 {
  color: var(--Xanthous);
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
}

.resource-badge {
  background: var(--Blue-Grey);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.toolkit-preview {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.toolkit-title {
  color: var(--Raisin-Black);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

.resource-title {
  margin: 1rem 0;
}

.resource-title.h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--Raisin-Black);
}

.toolkit-description {
  color: #333;
  font-size: 1em;
  line-height: 1.6;
  margin: 1rem 0;
  font-weight: 320;
}

.toolkit-preview .faq-item {
  margin-bottom: 1rem;
  border: none;
}

.toolkit-preview .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #D0D5DD;
  font-weight: 500;
  color: var(--Raisin-Black);
}

.toolkit-preview .faq-answer {
  padding: 1rem 0;
  background: transparent;
}

.resource-actions {
  display: flex;
  justify-content: center;
  width: 100%;
}

.download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--Xanthous);
  color: var(--Raisin-Black);
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 300px;
}

.download-button:hover {
  background: var(--Mahogany);
  color: white;
  transform: translateY(-2px);
}

.download-button img {
  width: 20px;
  height: 20px;
  filter: brightness(0);
}

.download-button:hover img {
  filter: brightness(100);
}

.introduction-image {
  flex: 1;
  max-width: 500px;
}

.introduction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.featured-single-project {
  max-width: 100%;
  margin-bottom: 2rem;
}

.featured-projects-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  margin-top: 0;
}

.partner-card {
  background: white;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.partner-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-bottom: 1px solid #D0D5DD;
}

.partner-label {
  color: var(--Mahogany);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.partner-logo {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}

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

.partner-date {
  color: var(--Raisin-Black);
  font-size: 0.875rem;
  font-weight: 500;
}

.partner-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--Antiflash-White);
}

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

.partner-content {
  position: relative;
  padding: 1.5rem;
  background: white;
}

.project-link {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  color: var(--Raisin-Black);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.project-link:hover {
  opacity: 1;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--Raisin-Black);
  margin-bottom: 1rem;
}

.project-description {
  color: var(--Raisin-Black);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.impact-area {
  border-top: 1px solid #D0D5DD;
  padding-top: 1rem;
}

.impact-area h4 {
  color: var(--Mahogany);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.impact-area p {
  color: var(--Raisin-Black);
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .t1821 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* [Contact Page] */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-card {
  border: 1px solid #D0D5DD;
  background: #FFF;
  padding: 40px;
}

.contact-title {
  color: var(--Xanthous);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-heading {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-description {
  margin-bottom: 24px;
}

/* [Approach Page] */
.approach-section {
  padding: 80px 0;
}

.approach-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.approach-title {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 24px;
}

.approach-description {
  font-size: 20px;
  line-height: 1.6;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.approach-card {
  background: rgba(0,0,0,0.05);
  padding: 24px;
  border-radius: 6px;
}

.approach-card-title {
  font-size: 24px;
  margin: 12px 0 8px;
}

.approach-card-description {
  font-size: 16px;
  line-height: 1.5;
}

/* [Utility Classes] */
.button-primary {
  color: #FFF;
  background: var(--Raisin-Black);
  padding: 12px 20px;
  border: 1px solid var(--Raisin-Black);
  border-radius: 4px;
  font-weight: 500;
  transition: all 200ms ease;
}

.button-primary:hover {
  color: var(--Raisin-Black);
  background: #FFF;
}

.button-secondary {
  color: var(--Raisin-Black);
  background: #FFF;
  padding: 12px 20px;
  border: 1px solid var(--Raisin-Black);
  border-radius: 4px;
  font-weight: 500;
  transition: all 200ms ease;
}

.button-secondary:hover {
  color: #FFF;
  background: var(--Raisin-Black);
}

.loading {
  text-align: center;
  padding: 20px;
  color: var(--Raisin-Black);
}

.dh-absolute-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* [Animations & Transitions] */
.hover-slide {
  position: relative;
  overflow: hidden;
}

.hover-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--Xanthous);
  transform: translateX(-100%);
  transition: transform 400ms ease;
}

.hover-slide:hover::after {
  transform: translateX(0);
}

/* [Navigation Buttons] */
.nav-contact-wrapper {
    display: flex;
    align-items: center;
}

/* Hamburger Menu Styles */
.t461 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-left: 20px;
}

.t462 {
    width: 100%;
    height: 3px;
    background-color: var(--Raisin-Black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.t461.active .t462:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.t461.active .t462:nth-child(2) {
    opacity: 0;
}

.t461.active .t462:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.nav-contact-btn {
    color: var(--Raisin-Black);
    display: inline-block;
    background: var(--Xanthous);
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 200ms ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.nav-contact-btn:hover {
    background: var(--Mahogany);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

/* [EMIC Certification Page] */
/* Section Cards */
.dh-body > section {
    background: var(--Antiflash-White);
    padding: 2rem;
    margin: 2rem 0;
}

.t564 {
    background: var(--Antiflash-White);
}

.dh-body > section > container {
    padding: 0;
}

.dh-body > section > container > div {
    background: white;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.level-item {
  background: var(--Light-Background);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #D0D5DD;
  transition: transform 0.2s, box-shadow 0.2s;
}

.level-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.level-number {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  background: var(--Xanthous);
  color: var(--Raisin-Black);
  border-radius: 50%;
  margin-bottom: 1rem;
  font-weight: bold;
}

.level-item h4 {
  margin-bottom: 0.5rem;
  color: var(--Raisin-Black);
}

.level-item p {
  color: var(--Raisin-Black);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Components Grid */
.components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.component-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #D0D5DD;
  transition: transform 0.2s;
}

.component-item:hover {
  transform: translateY(-4px);
}

.component-item h4 {
  color: var(--Xanthous);
  margin-bottom: 1rem;
}

/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: var(--Light-Background);
  color: var(--Raisin-Black);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--Xanthous);
  color: var(--Raisin-Black);
}

.tab-content {
  margin-top: 2rem;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.tab-pane.active {
  display: block;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.skill-area {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #D0D5DD;
}

.skill-area h4 {
  color: var(--Xanthous);
  margin-bottom: 0.5rem;
}

/* Level Details */
.level-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  background: var(--Light-Background);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.detail-item h5 {
  color: var(--Xanthous);
  margin-bottom: 0.5rem;
}

/* Theory Grid */
.theory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.theory-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #D0D5DD;
  transition: transform 0.2s;
}

.theory-item:hover {
  transform: translateY(-4px);
}

.theory-item h4 {
  color: var(--Xanthous);
  margin-bottom: 1rem;
}

/* Format Grid */
.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.format-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #D0D5DD;
}

.format-item h4 {
  color: var(--Xanthous);
  margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-categories {
  margin: 2rem 0;
}

.faq-list {
  margin-top: 1rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background: var(--Light-Background);
  padding: 1rem;
  cursor: pointer;
  font-weight: 500;
}

.faq-answer {
  padding: 1rem;
  background: white;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Cost Structure Section */
.cost-structure {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.price-card {
    background: white;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.price-card h3 {
    color: var(--Raisin-Black);
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--Xanthous);
    margin-bottom: 0.5rem;
}

.price-monthly {
    color: var(--Raisin-Black);
    font-size: 0.9rem;
}

.participation-options {
    margin: 3rem 0;
}

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

.option-card {
    background: white;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s;
}

.option-card:hover {
    transform: translateY(-4px);
}

.option-card h4 {
    color: var(--Xanthous);
    margin-bottom: 1rem;
}

.option-card p {
    margin-bottom: 1rem;
    color: var(--Raisin-Black);
}

.price-info {
    font-weight: 600;
    color: var(--Mahogany);
}

.organizational-packages {
    margin: 3rem 0;
    background: var(--Light-Background);
    padding: 2rem;
    border-radius: 8px;
}

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

.discount-item {
    background: white;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.discount-item h4 {
    color: var(--Xanthous);
    margin-bottom: 0.5rem;
}

.discount-item p {
    color: var(--Mahogany);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background: var(--Light-Background);
    border-radius: 8px;
}

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

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #D0D5DD;
    transition: transform 0.2s;
}

.contact-item:hover {
    transform: translateY(-4px);
}

.contact-item h4 {
    color: var(--Xanthous);
    margin-bottom: 1rem;
}

.contact-item a {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: var(--Mahogany);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a.button-primary {
    background: var(--Xanthous);
    color: var(--Raisin-Black);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.contact-item a.button-primary:hover {
    background: var(--Mahogany);
    color: white;
}

.contact-item p {
    color: var(--Raisin-Black);
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-hours {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    margin-top: 2rem;
}

.contact-hours h4 {
    color: var(--Xanthous);
    margin-bottom: 1rem;
}

.contact-hours p {
    color: var(--Raisin-Black);
    margin-bottom: 0.5rem;
}

/* [Media Queries] */

@media (max-width: 768px) {
    .pricing-table,
    .options-grid,
    .discount-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 1024px) {
  .news-grid,
  .people-grid,
  .project-grid,
  .contact-grid,
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Hamburger menu styles for all screen sizes */
#menu2.active {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
}

@media (max-width: 768px) {
  .news-grid,
  .people-grid,
  .project-grid,
  .contact-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  #menu2 {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }
}

/* [Intern & Volunteer Page] */
.hero-section {
  position: relative;
  margin-bottom: 3rem;
}

.hero-image {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

.full-width-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 400px; /* Added max-height */
}

.stats-section {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0; /* Reduced margin */
    padding: 1rem; /* Reduced padding */
    background: var(--Antiflash-White);
    border-radius: 8px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem; /* Reduced font-size */
    font-weight: 700;
    color: var(--Raisin-Black); /* Changed color */
    margin-bottom: 0.25rem; /* Reduced margin */
}

.stat-label {
    font-size: 0.9rem; /* Reduced font-size */
    color: var(--Raisin-Black);
}

/* Testimonial styles */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.testimonial-card {
    background: white;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    padding: 1rem; /* Reduced padding */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.testimonial-author {
    font-weight: 700;
    color: var(--Raisin-Black); /* Changed color */
    margin-bottom: 0.25rem;
}

/* Application process styles */
.application-process {
    background: var(--Antiflash-White);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.process-title {
    color: var(--Raisin-Black); /* Changed color */
    margin-bottom: 1.5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.step-number {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  background: var(--Xanthous);
  color: white;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Benefits section */
.benefits-section {
  margin: 1rem 0; /* Reduced margin */
}

.benefit-item {
    background: white;
    border-left: 4px solid var(--Xanthous);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0 8px 8px 0;
}

/* Increased spacing in benefits */
.benefit-item > p {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Removed CTA section */

/* Volunteer section */
.volunteer-section h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Former Interns List */
.former-interns-section {
    margin-top: 2rem;
}

.interns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.intern-card {
    background: white;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    text-align: center;
}

.intern-name {
    font-weight: 700;
    color: var(--Raisin-Black);
    margin-bottom: 0.25rem;
}

.intern-specialization {
    font-size: 0.9rem;
    color: var(--Raisin-Black);
}

/* Enhanced Application Guidelines */
.application-guidelines {
    background: var(--Antiflash-White);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.guidelines-title {
    color: var(--Raisin-Black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.guidelines-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.guidelines-step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.guidelines-step:hover {
    transform: translateY(-4px);
}

.step-icon {
    display: block;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--Xanthous);
}

.criteria-list {
    list-style: none;
    padding: 0;
}

.criteria-list li {
    margin-bottom: 0.5rem;
}

.submit-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--Xanthous);
    color: var(--Raisin-Black);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.submit-link:hover {
    background-color: var(--Mahogany);
    color: white;
}

@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    gap: 2rem;
  }
  
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .interns-grid {
        grid-template-columns: 1fr; /* One column on very small screens */
    }
}

.join-community-message {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--Raisin-Black);
    margin: 3rem auto;
    max-width: 800px;
    padding: 2rem;
    background: var(--Antiflash-White);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* [EMIC Certification - Who Should Pursue Section] */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.sector-card {
    background: white;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.sector-card h3 {
    color: var(--Xanthous);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.sector-card ul {
    margin: 0;
    padding-left: 1.5rem;
}

.sector-card li {
    margin-bottom: 0.5rem;
    color: var(--Raisin-Black);
    line-height: 1.4;
}

/* [EMIC Certification - Real-World Applications Section] */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.application-card {
    background: white;
    border: 1px solid #D0D5DD;
    border-radius: 0 8px 8px 0;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 4px solid var(--Xanthous);
}

.application-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.application-card h3 {
    color: var(--Xanthous);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.application-card ul {
    margin: 0;
    padding-left: 1.5rem;
}

.application-card li {
    margin-bottom: 0.5rem;
    color: var(--Raisin-Black);
    line-height: 1.4;
}

@media (max-width: 480px) {
    .interns-grid,
    .guidelines-steps,
    .sectors-grid,
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .price-monthly {
        font-size: 0.8rem;
    }
}

/* EMIC Enrollment Section Styles */
.emic-enrollment-section {
    background-color: var(--Antiflash-White);
    padding: 4rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.emic-enrollment-section h2 {
    text-align: center;
    color: var(--Raisin-Black);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.enrollment-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.emic-enrollment-section .step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
}

.emic-enrollment-section .step:hover {
    transform: translateY(-5px);
}

.emic-enrollment-section .step-number {
    background: var(--Xanthous);
    color: var(--Raisin-Black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.emic-enrollment-section h4 {
    color: var(--Raisin-Black);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.emic-enrollment-section p {
    color: var(--Raisin-Black);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .emic-enrollment-section {
        padding: 3rem 1.5rem;
    }
    
    .enrollment-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .emic-enrollment-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}
