
    /* CSS for 599 Smart Plan Page */
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #00BFFF; /* Deep Sky Blue */
      --dark-background: #1a1a2e; /* Dark Blue/Purple */
      --light-text: #ffffff;
      --gray-text: #cccccc;
      --accent-color: #e94560; /* Reddish pink */
      --card-background: #2a2a4a;
      --border-color: #3e2d84;
      --button-hover-bg: #c9364f;
      --header-offset: 122px; /* Default value, will be overridden by shared.css */
    }

    .page-599-smart-plan {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback if body padding-top is not set by shared.css */
    }

    .page-599-smart-plan__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-599-smart-plan__hero-section {
      position: relative;
      background-image: url('[GALLERY:hero:1920x1080:gaming,plan,smart,strategy]');
      background-size: cover;
      background-position: center;
      color: var(--light-text);
      text-align: center;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small top padding for hero after body padding-top */
    }

    .page-599-smart-plan__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-599-smart-plan__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .page-599-smart-plan__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }

    .page-599-smart-plan__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: var(--gray-text);
    }

    .page-599-smart-plan__cta-button {
      background-color: var(--accent-color);
      color: var(--light-text);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .page-599-smart-plan__cta-button:hover {
      background-color: var(--button-hover-bg);
    }

    .page-599-smart-plan__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-599-smart-plan__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

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

    .page-599-smart-plan__text-content {
      font-size: 1.1em;
      color: var(--gray-text);
      margin-bottom: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-599-smart-plan__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-599-smart-plan__feature-card {
      background-color: var(--card-background);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      border: 1px solid var(--border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-599-smart-plan__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-599-smart-plan__feature-icon {
      width: 200px; /* Minimum size requirement */
      height: auto;
      margin-bottom: 20px;
      max-width: 100%;
      display: block;
      margin-left: auto;
      margin-right: auto;
      border-radius: 8px;
    }

    .page-599-smart-plan__feature-title {
      font-size: 1.8em;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }

    .page-599-smart-plan__feature-description {
      font-size: 1em;
      color: var(--gray-text);
    }

    .page-599-smart-plan__image-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-top: 40px;
    }

    .page-599-smart-plan__gallery-item {
      flex: 1 1 calc(33.333% - 20px);
      max-width: calc(33.333% - 20px);
      background-color: var(--card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
      border: 1px solid var(--border-color);
    }

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

    .page-599-smart-plan__gallery-item:hover .page-599-smart-plan__gallery-image {
      transform: scale(1.05);
    }

    .page-599-smart-plan__gallery-caption {
      padding: 15px;
      font-size: 1.1em;
      color: var(--light-text);
    }

    .page-599-smart-plan__faq-section {
      padding: 60px 0;
      background-color: #20203a;
    }

    .page-599-smart-plan__faq-list {
      max-width: 800px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
    }

    .page-599-smart-plan__faq-item {
      background-color: var(--card-background);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-sizing: border-box;
    }

    .page-599-smart-plan__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      font-size: 1.2em;
      color: var(--primary-color);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-599-smart-plan__faq-question:hover {
      background-color: #3a3a5a;
    }

    .page-599-smart-plan__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--primary-color);
      pointer-events: none; /* Prevents h3 from capturing click */
    }

    .page-599-smart-plan__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--secondary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle icon from capturing click */
    }

    .page-599-smart-plan__faq-item.active .page-599-smart-plan__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' visually */
    }

    .page-599-smart-plan__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      color: var(--gray-text);
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-599-smart-plan__faq-item.active .page-599-smart-plan__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

    .page-599-smart-plan__external-link {
      color: var(--secondary-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-599-smart-plan__external-link:hover {
      color: var(--primary-color);
      text-decoration: underline;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-599-smart-plan__hero-title {
        font-size: 3em;
      }
      .page-599-smart-plan__hero-description {
        font-size: 1.2em;
      }
      .page-599-smart-plan__section-title {
        font-size: 2em;
      }
      .page-599-smart-plan__gallery-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
      }
    }

    @media (max-width: 768px) {
      .page-599-smart-plan__container {
        padding: 15px;
      }
      .page-599-smart-plan__hero-section {
        padding: 80px 15px;
        min-height: 400px;
      }
      .page-599-smart-plan__hero-title {
        font-size: 2.5em;
      }
      .page-599-smart-plan__hero-description {
        font-size: 1em;
      }
      .page-599-smart-plan__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-599-smart-plan__section {
        padding: 40px 0;
      }
      .page-599-smart-plan__section-title {
        font-size: 1.8em;
      }
      .page-599-smart-plan__text-content {
        font-size: 0.95em;
        text-align: justify;
      }
      .page-599-smart-plan__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-599-smart-plan__feature-card {
        padding: 25px;
      }
      .page-599-smart-plan__feature-icon {
        width: 180px; /* Adjust for smaller screens */
      }
      .page-599-smart-plan__feature-title {
        font-size: 1.5em;
      }
      .page-599-smart-plan__gallery-item {
        flex: 1 1 100% !important; /* Important for list-like elements */
        max-width: 100% !important; /* Important for list-like elements */
        box-sizing: border-box !important; /* Important for list-like elements */
        margin-left: 0 !important; /* Important for list-like elements */
        margin-right: 0 !important; /* Important for list-like elements */
      }
      .page-599-smart-plan__gallery-image {
        height: 200px;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-599-smart-plan__gallery-item .page-599-smart-plan__gallery-caption {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-599-smart-plan__faq-section {
        padding: 40px 0;
      }
      .page-599-smart-plan__faq-list {
        padding: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-599-smart-plan__faq-item {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-599-smart-plan__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-599-smart-plan__faq-question h3 {
        font-size: 1.1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-599-smart-plan__faq-answer {
        padding: 15px 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-599-smart-plan__faq-toggle {
        font-size: 1.5em;
      }
    }

    @media (max-width: 480px) {
      .page-599-smart-plan__hero-title {
        font-size: 2em;
      }
      .page-599-smart-plan__hero-description {
        font-size: 0.9em;
      }
      .page-599-smart-plan__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-599-smart-plan__section-title {
        font-size: 1.6em;
      }
      .page-599-smart-plan__feature-title {
        font-size: 1.3em;
      }
      .page-599-smart-plan__feature-description {
        font-size: 0.9em;
      }
      .page-599-smart-plan__gallery-image {
        height: 180px;
      }
      .page-599-smart-plan__faq-question {
        font-size: 1em;
      }
      .page-599-smart-plan__faq-question h3 {
        font-size: 1em;
      }
      .page-599-smart-plan__faq-answer {
        font-size: 0.9em;
      }
    }
  