html, body {
  background-color: #ffffff;
  color: #303030;
  font-family: sans-serif;
  margin: 0;
  padding: 0; }

.page-full-content {
  padding: 0 50px; }

.page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: left; }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 12px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #000; }
  .navbar .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600; }
    .navbar .navbar-brand a {
      text-decoration: none;
      font-style: italic;
      color: #1e1e1e;
      transition: color 0.2s ease; }
      .navbar .navbar-brand a:hover {
        color: #6750a4; }
  .navbar .navbar-menu {
    display: flex;
    gap: 40px; }
    .navbar .navbar-menu .navbar-item {
      position: relative; }
      .navbar .navbar-menu .navbar-item > a {
        font-size: 14px;
        color: #333;
        text-decoration: none;
        transition: color 0.2s; }
        .navbar .navbar-menu .navbar-item > a:hover {
          color: #6750a4; }
      .navbar .navbar-menu .navbar-item .dropdown {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #f5f5f5;
        padding: 10px 0;
        min-width: 220px;
        z-index: 100;
        border: none; }
        .navbar .navbar-menu .navbar-item .dropdown a {
          padding: 8px 16px;
          color: #333;
          font-size: 14px;
          white-space: nowrap;
          text-decoration: none;
          transition: background-color 0.2s; }
          .navbar .navbar-menu .navbar-item .dropdown a:hover {
            background-color: #eee;
            color: #6750a4; }
      .navbar .navbar-menu .navbar-item:hover .dropdown {
        display: flex; }
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
      height: auto;
      padding: 12px; }
      .navbar .navbar-menu {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 10px; }
        .navbar .navbar-menu .navbar-item {
          width: 100%; }
          .navbar .navbar-menu .navbar-item > a {
            font-size: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0; }
          .navbar .navbar-menu .navbar-item .dropdown {
            display: none;
            position: static;
            padding: 0;
            background-color: transparent; }
            .navbar .navbar-menu .navbar-item .dropdown a {
              padding-left: 20px;
              font-size: 15px; }
          .navbar .navbar-menu .navbar-item.active .dropdown {
            display: flex; } }
.homepage-hero {
  display: flex;
  margin-top: 0;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  height: 800px; }
  .homepage-hero .hero-left,
  .homepage-hero .hero-right {
    width: 50%;
    height: 100%; }
  .homepage-hero .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px; }
    .homepage-hero .hero-left .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: 60px;
      font-weight: 600; }
    .homepage-hero .hero-left .hero-description {
      font-size: 18px;
      margin-bottom: 32px;
      line-height: 1.5; }
    .homepage-hero .hero-left .hero-buttons {
      display: flex;
      gap: 16px; }
      .homepage-hero .hero-left .hero-buttons .btn {
        width: 128px;
        padding: 16.5px 25px;
        border-radius: 30px;
        text-align: center;
        text-decoration: none;
        font-size: 14px;
        font-weight: bold;
        transition: all 0.2s ease;
        box-shadow: none;
        cursor: default;
        display: flex;
        align-items: center;
        justify-content: center; }
        .homepage-hero .hero-left .hero-buttons .btn.btn-dark {
          background-color: #000;
          color: #fff; }
          .homepage-hero .hero-left .hero-buttons .btn.btn-dark:hover {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); }
          .homepage-hero .hero-left .hero-buttons .btn.btn-dark:active {
            box-shadow: none; }
        .homepage-hero .hero-left .hero-buttons .btn.btn-light {
          background-color: #ffffff;
          color: #000;
          border: 2px solid #000; }
          .homepage-hero .hero-left .hero-buttons .btn.btn-light:hover {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); }
          .homepage-hero .hero-left .hero-buttons .btn.btn-light:active {
            box-shadow: none; }
  .homepage-hero .hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center; }
    .homepage-hero .hero-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
    .homepage-hero .hero-right .image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 70%;
      height: 35%;
      background-color: rgba(0, 0, 0, 0.6);
      color: white;
      padding: 12px;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      font-size: 30px; }
  @media (max-width: 768px) {
    .homepage-hero {
      flex-direction: column;
      height: auto; }
      .homepage-hero .hero-left,
      .homepage-hero .hero-right {
        width: 100%;
        height: auto; }
      .homepage-hero .hero-left {
        padding: 30px 20px; }
        .homepage-hero .hero-left .hero-title {
          font-size: 32px;
          text-align: center; }
        .homepage-hero .hero-left .hero-description {
          font-size: 14px;
          text-align: center; }
        .homepage-hero .hero-left .hero-buttons {
          justify-content: center; }
          .homepage-hero .hero-left .hero-buttons .btn {
            width: 100%;
            max-width: 200px; }
      .homepage-hero .hero-right {
        height: 300px; }
        .homepage-hero .hero-right .image-overlay {
          font-size: 18px;
          padding: 8px;
          height: auto; } }
.homepage-hero {
  margin-bottom: 40px; }

.homepage-info {
  display: flex;
  flex-direction: column;
  width: 100%; }
  .homepage-info .info-top {
    background-color: #003366;
    color: white;
    height: 180px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; }
    .homepage-info .info-top h2 {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 35px;
      margin-bottom: 15px; }
    .homepage-info .info-top p {
      font-size: 18px;
      line-height: 1.6;
      max-width: 800px;
      margin-bottom: 3px; }
    .homepage-info .info-top .btn-more {
      background-color: #ffffff;
      color: #000;
      border: 2px solid #000;
      padding: 14px 28px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: default;
      display: inline-flex;
      justify-content: center;
      align-items: center; }
      .homepage-info .info-top .btn-more:hover {
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2); }
      .homepage-info .info-top .btn-more:active {
        box-shadow: none; }
  .homepage-info .info-bottom {
    height: 150px;
    width: 100%;
    overflow: hidden; }
    .homepage-info .info-bottom img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
  @media (max-width: 768px) {
    .homepage-info .info-top {
      padding: 30px 20px;
      height: auto;
      align-items: center;
      text-align: center; }
      .homepage-info .info-top h2 {
        font-size: 24px; }
      .homepage-info .info-top p {
        font-size: 14px; }
      .homepage-info .info-top .btn-more {
        padding: 12px 24px;
        font-size: 14px; }
    .homepage-info .info-bottom {
      height: 200px; } }
.homepage-services {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #ffffff; }
  .homepage-services .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 0; }
    .homepage-services .services-header .title-group {
      display: flex;
      flex-direction: column;
      gap: 0; }
      .homepage-services .services-header .title-group h2 {
        font-size: 36px;
        font-weight: 700;
        margin: 0;
        color: #1e1e1e; }
      .homepage-services .services-header .title-group h3 {
        font-size: 24px;
        font-weight: 400;
        margin: 0;
        color: #1e1e1e; }
    .homepage-services .services-header .btn-read-more {
      background-color: #ffffff;
      color: #000;
      border: 2px solid #000;
      padding: 14px 28px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: default;
      display: inline-flex;
      align-items: center;
      justify-content: center; }
      .homepage-services .services-header .btn-read-more:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }
      .homepage-services .services-header .btn-read-more:active {
        box-shadow: none; }
  .homepage-services .services-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0; }
    .homepage-services .services-cards .service-card {
      width: 32%;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); }
      .homepage-services .services-cards .service-card img {
        width: 100%;
        height: 540px;
        object-fit: cover;
        display: block; }
      .homepage-services .services-cards .service-card .card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        padding: 20px;
        box-sizing: border-box; }
        .homepage-services .services-cards .service-card .card-overlay .card-title {
          font-size: 18px;
          font-weight: bold; }
        .homepage-services .services-cards .service-card .card-overlay .card-divider {
          height: 2px;
          width: 40px;
          background-color: #ffffff;
          margin: 8px 0; }
        .homepage-services .services-cards .service-card .card-overlay .card-description {
          font-size: 14px;
          line-height: 1.4; }
  @media (max-width: 768px) {
    .homepage-services {
      padding-top: 20px;
      padding-bottom: 40px; }
      .homepage-services .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0 20px; }
        .homepage-services .services-header .title-group h2 {
          font-size: 28px; }
        .homepage-services .services-header .title-group h3 {
          font-size: 20px; }
        .homepage-services .services-header .btn-read-more {
          align-self: flex-start;
          font-size: 14px;
          padding: 12px 24px; }
      .homepage-services .services-cards {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0 20px; }
        .homepage-services .services-cards .service-card {
          width: 100%;
          max-width: 360px; }
          .homepage-services .services-cards .service-card img {
            height: 300px; }
          .homepage-services .services-cards .service-card .card-overlay {
            padding: 16px; }
            .homepage-services .services-cards .service-card .card-overlay .card-title {
              font-size: 16px; }
            .homepage-services .services-cards .service-card .card-overlay .card-description {
              font-size: 13px; } }
.homepage-resources {
  width: 100%;
  padding: 60px 0;
  background-color: #ffffff; }
  .homepage-resources .resources-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 40px;
    padding: 0 50px; }
  .homepage-resources .resources-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 0 50px; }
    .homepage-resources .resources-grid .resource-card {
      flex: 1;
      background-color: #f9f6f6;
      border-radius: 8px;
      padding: 24px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: all 0.2s ease;
      min-height: 576px; }
      .homepage-resources .resources-grid .resource-card .resource-icon {
        font-size: 30px;
        margin-bottom: 16px;
        color: #333; }
      .homepage-resources .resources-grid .resource-card .resource-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #1e1e1e; }
      .homepage-resources .resources-grid .resource-card .resource-description {
        font-size: 14px;
        color: #333;
        line-height: 1.6;
        margin-bottom: 30px;
        flex-grow: 1;
        max-height: 600px;
        overflow: hidden;
        text-overflow: ellipsis; }
      .homepage-resources .resources-grid .resource-card .resource-link {
        font-size: 14px;
        font-weight: bold;
        color: #000;
        text-decoration: none;
        align-self: flex-start;
        transition: color 0.2s ease; }
        .homepage-resources .resources-grid .resource-card .resource-link:hover {
          color: #6750a4; }
  @media (max-width: 768px) {
    .homepage-resources {
      padding: 40px 0; }
      .homepage-resources .resources-title {
        font-size: 28px;
        padding: 0 20px;
        margin-bottom: 30px; }
      .homepage-resources .resources-grid {
        flex-direction: column;
        padding: 0 20px;
        gap: 16px; }
        .homepage-resources .resources-grid .resource-card {
          width: 100%;
          min-height: auto; }
          .homepage-resources .resources-grid .resource-card .resource-description {
            font-size: 15px;
            line-height: 1.6;
            max-height: none; } }
.homepage-updates {
  width: 100%;
  padding: 60px 0;
  background-color: #ffffff; }
  .homepage-updates .updates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    margin-bottom: 40px; }
    .homepage-updates .updates-header h2 {
      font-size: 36px;
      font-weight: 700;
      color: #1e1e1e;
      margin: 0; }
    .homepage-updates .updates-header .btn-view-all {
      background-color: #ffffff;
      color: #000;
      border: 2px solid #000;
      padding: 14px 28px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: default;
      display: inline-flex;
      align-items: center;
      justify-content: center; }
      .homepage-updates .updates-header .btn-view-all:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }
      .homepage-updates .updates-header .btn-view-all:active {
        box-shadow: none; }
  .homepage-updates .updates-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 24px;
    padding: 0 50px; }
    .homepage-updates .updates-grid .update-card {
      flex: 1 1 calc(33.333% - 16px);
      display: flex;
      flex-direction: row;
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      min-height: 240px; }
      .homepage-updates .updates-grid .update-card .update-image {
        width: 33.333%;
        height: 100%;
        object-fit: cover;
        display: block; }
      .homepage-updates .updates-grid .update-card .update-text {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column; }
        .homepage-updates .updates-grid .update-card .update-text .update-category {
          font-size: 14px;
          font-weight: bold;
          color: #6750a4;
          margin-bottom: 4px; }
        .homepage-updates .updates-grid .update-card .update-text .update-date {
          font-size: 12px;
          color: #888;
          margin-bottom: 12px; }
        .homepage-updates .updates-grid .update-card .update-text .update-title {
          font-size: 16px;
          font-weight: 600;
          margin-bottom: 16px;
          color: #1e1e1e; }
        .homepage-updates .updates-grid .update-card .update-text .update-description {
          font-size: 14px;
          line-height: 1.5;
          color: #333;
          margin-bottom: auto; }
        .homepage-updates .updates-grid .update-card .update-text .learn-more {
          font-size: 14px;
          font-weight: bold;
          color: #000;
          text-decoration: none;
          align-self: flex-start;
          margin-top: auto; }
          .homepage-updates .updates-grid .update-card .update-text .learn-more:hover {
            color: #6750a4; }
  @media (max-width: 768px) {
    .homepage-updates {
      padding: 40px 0; }
      .homepage-updates .updates-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        gap: 16px; }
        .homepage-updates .updates-header h2 {
          font-size: 28px; }
        .homepage-updates .updates-header .btn-view-all {
          font-size: 14px; }
      .homepage-updates .updates-grid {
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 0 20px; }
        .homepage-updates .updates-grid .update-card {
          flex-direction: column;
          width: 100%; }
          .homepage-updates .updates-grid .update-card .update-image {
            width: 100%;
            height: 200px; }
          .homepage-updates .updates-grid .update-card .update-text {
            padding: 16px; }
            .homepage-updates .updates-grid .update-card .update-text .update-title {
              font-size: 15px; }
            .homepage-updates .updates-grid .update-card .update-text .update-description {
              font-size: 13px; } }
.homepage-leadership {
  width: 100%;
  padding: 60px 0;
  background-color: #ffffff; }
  .homepage-leadership .leadership-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    margin-bottom: 40px; }
    .homepage-leadership .leadership-header h2 {
      font-size: 36px;
      font-weight: 700;
      color: #1e1e1e;
      margin: 0; }
    .homepage-leadership .leadership-header .btn-read-more {
      background-color: #ffffff;
      color: #000;
      border: 2px solid #000;
      padding: 14px 28px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: default;
      display: inline-flex;
      align-items: center;
      justify-content: center; }
      .homepage-leadership .leadership-header .btn-read-more:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }
      .homepage-leadership .leadership-header .btn-read-more:active {
        box-shadow: none; }
  .homepage-leadership .leadership-cards {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 0 50px; }
    .homepage-leadership .leadership-cards .leader-card {
      flex: 1 1 calc(33.333% - 16px);
      background-color: #ffffff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: none;
      display: flex;
      flex-direction: column;
      height: 805px; }
      .homepage-leadership .leadership-cards .leader-card img {
        width: 100%;
        height: 90%;
        object-fit: cover;
        display: block; }
      .homepage-leadership .leadership-cards .leader-card .leader-name {
        font-size: 20px;
        font-weight: bold;
        margin: 16px 24px 16px;
        color: #303030;
        text-align: left; }
      .homepage-leadership .leadership-cards .leader-card .divider {
        height: 1px;
        width: calc(100% - 48px);
        margin: 0 24px 16px;
        background-color: #b7b7b7; }
      .homepage-leadership .leadership-cards .leader-card .leader-role {
        font-size: 14px;
        color: #b7b7b7;
        line-height: 1.4;
        margin: 0 24px;
        text-align: left; }
  @media (max-width: 768px) {
    .homepage-leadership {
      padding: 40px 0; }
      .homepage-leadership .leadership-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        gap: 16px; }
        .homepage-leadership .leadership-header h2 {
          font-size: 28px; }
        .homepage-leadership .leadership-header .btn-read-more {
          font-size: 14px;
          padding: 12px 24px; }
      .homepage-leadership .leadership-cards {
        flex-direction: column;
        padding: 0 20px; }
        .homepage-leadership .leadership-cards .leader-card {
          width: 100%;
          height: auto; }
          .homepage-leadership .leadership-cards .leader-card img {
            height: 400px; }
          .homepage-leadership .leadership-cards .leader-card .leader-name {
            font-size: 18px;
            margin: 20px 16px 20px; }
          .homepage-leadership .leadership-cards .leader-card .divider {
            margin: 0 16px 20px;
            width: calc(100% - 32px); }
          .homepage-leadership .leadership-cards .leader-card .leader-role {
            font-size: 13px;
            margin: 0 16px 24px; } }
.homepage-feedback {
  width: 100%;
  padding: 60px 0;
  background-color: #ffffff; }
  .homepage-feedback .feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    margin-bottom: 40px; }
    .homepage-feedback .feedback-header h2 {
      font-size: 36px;
      font-weight: 700;
      color: #1e1e1e;
      margin: 0; }
    .homepage-feedback .feedback-header .btn-send {
      background-color: #ffffff;
      color: #000;
      border: 2px solid #000;
      padding: 14px 28px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: default;
      display: inline-flex;
      align-items: center;
      justify-content: center; }
      .homepage-feedback .feedback-header .btn-send:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }
      .homepage-feedback .feedback-header .btn-send:active {
        box-shadow: none; }
  @media (max-width: 768px) {
    .homepage-feedback {
      padding: 40px 0; }
      .homepage-feedback .feedback-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        gap: 16px; }
        .homepage-feedback .feedback-header h2 {
          font-size: 28px; }
        .homepage-feedback .feedback-header .btn-send {
          font-size: 14px;
          padding: 12px 24px; } }
.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  border-radius: 12px;
  margin-bottom: 24px;
  overflow: hidden;
  color: #1e1e1e; }
  .program-card .program-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 100px; }
    .program-card .program-content .program-title {
      font-family: 'Georgia', serif;
      font-size: 24px;
      font-weight: 600;
      margin: 10px 0 0 0; }
    .program-card .program-content .program-description {
      font-size: 16px;
      line-height: 1.5; }
    .program-card .program-content .program-button {
      cursor: ponter; }
  .program-card .program-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background-repeat: repeat-x;
    background-size: contain;
    background-position: bottom center;
    pointer-events: none;
    z-index: 0; }
  .program-card.program-green {
    background-color: #d6f4dd; }
    .program-card.program-green .program-pattern {
      background-image: url("/static/img/pattern-green.webp"); }
  .program-card.program-blue {
    background-color: #cbe5f6; }
    .program-card.program-blue .program-pattern {
      background-image: url("/static/img/pattern-blue.webp"); }
  .program-card.program-purple {
    background-color: #e9d6f7; }
    .program-card.program-purple .program-pattern {
      background-image: url("/static/img/pattern-purple.webp"); }
  @media (max-width: 768px) {
    .program-card {
      padding: 30px 20px; }
      .program-card .program-title {
        font-size: 20px; }
      .program-card .program-description {
        font-size: 14px; }
      .program-card .program-button {
        padding: 10px 20px;
        font-size: 13px; }
      .program-card .program-content {
        padding-bottom: 80px; }
      .program-card .program-pattern {
        height: 60px; } }
.footer {
  background-color: #f9f6f6;
  color: #222;
  padding: 40px 50px;
  font-family: sans-serif;
  margin-top: 90px; }
  .footer .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px; }
    .footer .footer-container .footer-column {
      min-width: 180px; }
      .footer .footer-container .footer-column h4 {
        font-size: 16px;
        margin-bottom: 12px;
        border-bottom: 1px solid #aaa;
        padding-bottom: 4px; }
      .footer .footer-container .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0; }
        .footer .footer-container .footer-column ul li {
          margin-bottom: 8px; }
          .footer .footer-container .footer-column ul li a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s; }
            .footer .footer-container .footer-column ul li a:hover {
              color: #000; }
  .footer .footer-bottom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #777; }
    .footer .footer-bottom a {
      color: #777;
      text-decoration: none; }
      .footer .footer-bottom a:hover {
        color: #000; }
  @media (max-width: 768px) {
    .footer {
      margin-top: 20px; }
      .footer .footer-container {
        flex-direction: column;
        gap: 20px; }
      .footer .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px; } }
.feedback-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  gap: 24px; }
  .feedback-form .form-group {
    position: relative;
    margin-bottom: 32px; }
    .feedback-form .form-group input,
    .feedback-form .form-group textarea {
      width: 100%;
      font-size: 16px;
      padding: 20px 16px 12px 16px;
      border: 1px solid #888;
      border-radius: 4px;
      background: transparent;
      color: #1e1e1e; }
      .feedback-form .form-group input:focus,
      .feedback-form .form-group textarea:focus {
        border-color: #6750a4;
        outline: none;
        box-shadow: 0 0 0 2px rgba(103, 80, 164, 0.1); }
      .feedback-form .form-group input:focus + label, .feedback-form .form-group input:not(:placeholder-shown) + label,
      .feedback-form .form-group textarea:focus + label,
      .feedback-form .form-group textarea:not(:placeholder-shown) + label {
        top: -10px;
        left: 12px;
        background-color: #ffffff;
        font-size: 12px;
        padding: 0 4px;
        color: #6750a4; }
    .feedback-form .form-group label {
      position: absolute;
      top: 14px;
      left: 16px;
      font-size: 16px;
      color: #b7b7b7;
      pointer-events: none;
      transition: 0.2s ease all;
      background-color: transparent; }
    .feedback-form .form-group textarea {
      min-height: 120px;
      resize: vertical; }

@media (max-width: 768px) {
  .feedback-form {
    padding: 0 20px; }
    .feedback-form input,
    .feedback-form textarea {
      font-size: 15px; }
    .feedback-form label {
      font-size: 14px; } }

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  align-self: flex-start; }
  .btn.btn-dark {
    background-color: #000;
    color: #fff;
    border: none; }
    .btn.btn-dark:hover {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); }
    .btn.btn-dark:active {
      box-shadow: none; }
  .btn.btn-light {
    background-color: #ffffff;
    color: #000;
    border: 2px solid #000; }
    .btn.btn-light:hover {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); }
    .btn.btn-light:active {
      box-shadow: none; }

.news-page {
  padding: 40px 20px; }
  .news-page .news-list {
    display: flex;
    flex-direction: column;
    gap: 24px; }
  .news-page .news-card {
    display: flex;
    height: 200px;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); }
    .news-page .news-card .news-image {
      flex: 0 0 20%;
      object-fit: cover;
      height: 100%;
      width: 100%; }
    .news-page .news-card .news-content {
      flex: 1;
      padding: 16px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center; }
      .news-page .news-card .news-content .news-date {
        font-size: 13px;
        color: #888;
        margin-bottom: 6px; }
      .news-page .news-card .news-content .news-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 8px;
        color: #000; }
      .news-page .news-card .news-content .news-description {
        font-size: 14px;
        color: #444;
        line-height: 1.4;
        overflow: hidden;
        text-overflow: ellipsis; }

.news-detail {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px; }
  .news-detail .news-detail-title {
    font-size: 32px;
    margin-bottom: 10px; }
  .news-detail .news-detail-date {
    color: #888;
    margin-bottom: 20px; }
  .news-detail .news-detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 20px; }
  .news-detail .news-detail-body {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px; }

.programs-page {
  padding: 40px 20px; }
  .programs-page .programs-title {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center; }
  .programs-page .programs-list {
    display: flex;
    flex-direction: column;
    gap: 20px; }
  .programs-page .program-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 24px;
    background-color: #f9f9f9;
    transition: box-shadow 0.2s ease; }
    .programs-page .program-card .program-description {
      font-size: 15px;
      color: #444;
      margin-bottom: 16px;
      line-height: 1.6; }
    .programs-page .program-card .btn {
      align-self: flex-start; }

.program-detail-page {
  padding: 40px 20px; }
  .program-detail-page .program-detail-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px; }
  .program-detail-page .program-detail-description {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px; }

.material-dialog {
  border: none;
  border-radius: 28px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 400px;
  font-family: 'Roboto', sans-serif; }

.dialog-content {
  padding: 24px 24px 16px;
  background-color: #fff;
  border-radius: 28px; }

.dialog-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  color: #1c1b1f; }

.dialog-description {
  font-size: 16px;
  color: #49454f;
  margin-bottom: 24px; }

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  padding: 0 24px 16px; }

.btn-filled {
  background-color: #6750a4;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease; }

.btn-filled:hover {
  background-color: #5a409c; }

body.accessibility-mode {
  font-size: 20px;
  background-color: #000 !important;
  color: #fff !important;
  line-height: 1.8; }
  body.accessibility-mode a, body.accessibility-mode button {
    color: #0ff !important;
    border: 2px solid #0ff !important;
    background-color: transparent !important;
    font-size: 20px; }
  body.accessibility-mode h1, body.accessibility-mode h2, body.accessibility-mode h3, body.accessibility-mode h4 {
    color: #fff !important;
    font-size: 2em; }
  body.accessibility-mode .btn,
  body.accessibility-mode .btn-read-more,
  body.accessibility-mode .btn-send,
  body.accessibility-mode .btn-more {
    background-color: #000 !important;
    color: #0ff !important;
    border: 2px solid #0ff !important;
    font-size: 18px !important;
    padding: 18px 32px !important; }
  body.accessibility-mode .hero-title,
  body.accessibility-mode .card-title,
  body.accessibility-mode .update-title {
    font-size: 30px !important;
    color: #fff !important; }
  body.accessibility-mode .hero-description,
  body.accessibility-mode .card-description,
  body.accessibility-mode .update-description,
  body.accessibility-mode .program-description {
    font-size: 20px !important;
    color: #fff !important; }
  body.accessibility-mode img {
    filter: grayscale(100%);
    opacity: 0.2; }

.form-group-captcha {
  display: flex;
  flex-direction: column;
  gap: 8px; }
  .form-group-captcha .captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 12px; }
    .form-group-captcha .captcha-wrapper input[type="text"] {
      width: auto;
      max-width: 120px;
      min-width: 80px;
      padding: 8px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 4px;
      flex-shrink: 0; }
    .form-group-captcha .captcha-wrapper .captcha-refresh {
      font-size: 14px;
      color: #6750a4;
      text-decoration: none;
      cursor: pointer;
      white-space: nowrap; }
      .form-group-captcha .captcha-wrapper .captcha-refresh:hover {
        color: #3c2c8e; }
  .form-group-captcha .captcha-image img {
    max-height: 60px;
    height: auto;
    width: auto; }
  .form-group-captcha .error {
    font-size: 13px;
    color: #d32f2f;
    margin-top: 4px; }

@media (max-width: 600px) {
  .form-group-captcha .captcha-wrapper {
    flex-direction: column;
    align-items: flex-start; }
    .form-group-captcha .captcha-wrapper input[type="text"] {
      width: 100%;
      max-width: 100%; }
    .form-group-captcha .captcha-wrapper .captcha-refresh {
      margin-top: 4px; }
  .form-group-captcha .captcha-image img {
    width: 100%;
    height: auto; } }

/*# sourceMappingURL=main.css.map */