
    /* Base styles for the page */
    .page-cesd-599-2 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px; /* Ensure space above footer */
    }

    /* Fixed navigation bar spacing adjustment */
    .page-cesd-599-2__hero-section {
      padding-top: 10px; /* Small decorative top padding, assuming body handles header offset */
    }

    /* Hero Section */
    .page-cesd-599-2__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      background: linear-gradient(135deg, #0a192f 0%, #1a3a60 100%); /* Dark gradient for contrast */
      padding: 60px 20px;
      box-sizing: border-box;
    }

    .page-cesd-599-2__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.3; /* Subtle background image */
    }

    .page-cesd-599-2__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
      border-radius: 10px;
    }

    .page-cesd-599-2__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffcc00; /* Gold color for branding */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-cesd-599-2__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-cesd-599-2__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    }

    .page-cesd-599-2__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffcc00; /* Gold color */
      color: #0a192f; /* Dark blue text */
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-cesd-599-2__button:hover {
      background-color: #e6b800; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    .page-cesd-599-2__button--secondary {
      background-color: #0a192f; /* Dark blue */
      color: #ffcc00; /* Gold text */
      border: 2px solid #ffcc00;
    }

    .page-cesd-599-2__button--secondary:hover {
      background-color: #1a3a60; /* Slightly lighter dark blue */
      color: #fff;
    }

    /* General Section Styling */
    .page-cesd-599-2__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-cesd-599-2__section-title {
      font-size: 2.5em;
      color: #0a192f;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-cesd-599-2__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

    .page-cesd-599-2__text-content {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #555;
      text-align: left;
    }

    .page-cesd-599-2__text-content p {
      margin-bottom: 1em;
    }

    /* Feature Grid */
    .page-cesd-599-2__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-cesd-599-2__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-cesd-599-2__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-cesd-599-2__feature-icon-container {
      margin-bottom: 20px;
      height: 150px; /* Fixed height for consistency */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-cesd-599-2__feature-icon {
      width: 250px; /* Minimum size for images */
      height: 250px; /* Minimum size for images */
      object-fit: contain;
      border-radius: 5px;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
    }

    .page-cesd-599-2__feature-heading {
      font-size: 1.8em;
      color: #0a192f;
      margin-bottom: 15px;
    }

    .page-cesd-599-2__feature-text {
      font-size: 1em;
      color: #666;
    }

    /* Image Showcase */
    .page-cesd-599-2__image-showcase {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-cesd-599-2__image-container {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-cesd-599-2__image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-cesd-599-2__image:hover {
      transform: scale(1.05);
    }

    /* Call to Action Section */
    .page-cesd-599-2__cta-section {
      background: linear-gradient(90deg, #1a3a60 0%, #0a192f 100%);
      color: #fff;
      padding: 80px 20px;
      text-align: center;
      margin-top: 60px;
    }

    .page-cesd-599-2__cta-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #ffcc00;
    }

    .page-cesd-599-2__cta-text {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 40px auto;
    }

    /* FAQ Section */
    .page-cesd-599-2__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-cesd-599-2__faq-title {
      font-size: 2.5em;
      color: #0a192f;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-cesd-599-2__faq-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

    .page-cesd-599-2__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-cesd-599-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f5f5f5;
      color: #0a192f;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-cesd-599-2__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-cesd-599-2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0a192f;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-cesd-599-2__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      color: #ffcc00;
    }

    .page-cesd-599-2__faq-item.active .page-cesd-599-2__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use a '−' directly */
    }

    .page-cesd-599-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fff;
      color: #555;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-cesd-599-2__faq-item.active .page-cesd-599-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-cesd-599-2__hero-title {
        font-size: 3em;
      }
      .page-cesd-599-2__hero-description {
        font-size: 1.2em;
      }
      .page-cesd-599-2__section-title,
      .page-cesd-599-2__cta-title,
      .page-cesd-599-2__faq-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-cesd-599-2__hero-section {
        min-height: 400px;
        padding: 40px 15px;
      }
      .page-cesd-599-2__hero-title {
        font-size: 2.5em;
      }
      .page-cesd-599-2__hero-description {
        font-size: 1.1em;
      }
      .page-cesd-599-2__button-group {
        flex-direction: column;
        gap: 15px;
      }
      .page-cesd-599-2__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 20px;
      }

      .page-cesd-599-2__section {
        padding: 40px 15px;
      }
      .page-cesd-599-2__section-title,
      .page-cesd-599-2__cta-title,
      .page-cesd-599-2__faq-title {
        font-size: 1.8em;
      }

      /* List item responsive requirements */
      .page-cesd-599-2__feature-grid {
        display: block; /* Stack items */
        width: 100% !important; /* Ensure container is full width */
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Adjust padding if needed for container */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-cesd-599-2__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for smaller screens */
        margin-bottom: 20px; /* Add margin between stacked items */
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-cesd-599-2__feature-icon-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        height: auto !important; /* Allow height to adjust */
      }
      .page-cesd-599-2__feature-icon {
        max-width: 100% !important;
        height: auto !important; /* Ensure aspect ratio is maintained */
        box-sizing: border-box !important;
      }


      .page-cesd-599-2__image-showcase {
        display: block; /* Stack images */
        width: 100% !important; /* Ensure container is full width */
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-cesd-599-2__image-container {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
        box-sizing: border-box !important;
        overflow: hidden;
      }
      .page-cesd-599-2__image {
        max-width: 100% !important;
        height: auto !important; /* Ensure aspect ratio is maintained */
        box-sizing: border-box !important;
      }


      .page-cesd-599-2__cta-section {
        padding: 60px 15px;
      }
      .page-cesd-599-2__cta-title {
        font-size: 2.2em;
      }
      .page-cesd-599-2__cta-text {
        font-size: 1em;
      }

      .page-cesd-599-2__faq-section {
        padding: 40px 15px;
      }
      .page-cesd-599-2__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-cesd-599-2__faq-question h3 {
        font-size: 1.1em;
      }
      .page-cesd-599-2__faq-answer {
        padding: 15px 20px;
      }
      .page-cesd-599-2__faq-item.active .page-cesd-599-2__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-cesd-599-2__hero-title {
        font-size: 2em;
      }
      .page-cesd-599-2__hero-description {
        font-size: 0.95em;
      }
      .page-cesd-599-2__section-title,
      .page-cesd-599-2__cta-title,
      .page-cesd-599-2__faq-title {
        font-size: 1.5em;
      }
      .page-cesd-599-2__feature-heading {
        font-size: 1.5em;
      }
      .page-cesd-599-2__faq-question {
        font-size: 1em;
      }
      .page-cesd-599-2__faq-question h3 {
        font-size: 1em;
      }
    }
  