/* Basic Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Utilities */
.ksa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.ksa-section-pill {
    display: inline-block;
    background-color: #dcfce7;
    color: #4cb648;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.ksa-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 16px;
}

.ksa-section-description {
    color: #555555;
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 16px;
}

.ksa-divider {
    border: none;
    height: 1px;
    background-color: #e5e5e5;
    margin-bottom: 40px;
}

/* Buttons */
.ksa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.ksa-btn--primary {
    background-color: #fdda00;
    color: #1a1a1a;
}

.ksa-btn--primary:hover {
    background-color: #e5c500;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ksa-btn--hero {
    font-size: 18px;
    padding: 16px 36px;
}

.ksa-btn--hero .ksa-icon {
    margin-right: 8px;
}

.ksa-btn--blue {
    background-color: #2563eb;
    color: #ffffff;
    font-size: 16px;
    padding: 14px 40px;
}

.ksa-btn--blue:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.ksa-btn--blue .ksa-icon {
    margin-right: 8px;
}

/* Navigation */
.ksa-main-header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ksa-main-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ksa-logo {
    display: block;
    width: 150px;
}

.ksa-logo__img {
    width: 100%;
    height: auto;
}

.ksa-main-nav__list {
    display: flex;
    gap: 40px;
}

.ksa-main-nav__link {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 15px;
    transition: color 0.2s;
}

.ksa-main-nav__link:hover {
    color: #448f36;
}

/* Hero Section */
.ksa-hero {
    background: linear-gradient(135deg, #2e6624 0%, #448f36 100%);
    padding: 80px 0 120px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.ksa-hero__container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.ksa-hero__status-pill {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ksa-hero__status-pill::before {
    content: '•';
    color: #fdda00;
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
}

.ksa-hero__title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.ksa-hero__title .ksa-highlight {
    color: #fdda00;
}

.ksa-hero__subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    opacity: 0.9;
}

.ksa-hero__description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 48px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Packages Section */
.ksa-packages {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.ksa-packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ksa-package-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ksa-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(85, 128, 59, .4);
    border-color: transparent;
}

.ksa-package-card__image-container {
    height: 160px;
    margin-bottom: 24px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.ksa-package-card__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ksa-package-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 12px;
}

.ksa-package-card__description {
    font-size: 14px;
    color: #555555;
    margin-bottom: 24px;
    flex-grow: 1;
}

.ksa-package-card__link {
    font-weight: 600;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    transition: transform 0.2s;
}

.ksa-package-card__link:hover {
    color: #a1c748;
}

.ksa-package-card__link:hover::after {
    transform: translateX(4px);
}

.ksa-package-card__link::after {
    content: '›';
    font-size: 25px;
    margin-left: 6px;
    line-height: 1;
    transition: transform 0.2s;
}

/* Package card specific positioning */
.ksa-package-card__image-container {
    position: relative;
}

.ksa-package-card__image-container .ksa-offer-tag {
    top: 10px;
    left: 10px;
}

/* OFFER DETAILS SECTION */
.ksa-offer-details {
    padding: 70px 0 100px;
    background-color: #f6fef3;
}

.ksa-offer-details .ksa-packages__header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ksa-detail-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.ksa-detail-card__image-container {
    width: 100%;
    height: 350px;
    background-color: #f0f4ff;
    position: relative;
    overflow: hidden;
}

.ksa-detail-card__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Offer Tag */
.ksa-offer-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #35732a;
    color: #fddb00;
    font-size: 16px;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(52, 114, 41, 0.4);
}

.ksa-offer-tag--large {
    font-size: 16px;
    padding: 8px 14px;
}

.ksa-detail-card__content {
    padding: 60px;
}

.ksa-detail-card__title {
    font-size: 28px;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 24px;
}

.ksa-detail-card__text {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.ksa-detail-card__subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 40px;
    margin-bottom: 16px;
}

.ksa-detail-card__subtext {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 16px;
}

.ksa-detail-card__list {
    margin-bottom: 24px;
    padding-left: 20px;
}

.ksa-detail-card__list li {
    position: relative;
    padding-left: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #4b5563;
}

.ksa-detail-card__list li::before {
    content: '•';
    color: #4ade80;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 1.2em;
}

/* Formats Grid */
.ksa-detail-card__formats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.ksa-format-box {
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 24px;
}

.ksa-format-box__title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.ksa-format-box__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #16a34a;
    background-color: #dcfce7;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.ksa-format-box__list li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #4b5563;
    position: relative;
    padding-left: 16px;
}

.ksa-format-box__list li::before {
    content: '•';
    color: #9ca3af;
    position: absolute;
    left: 0;
}

/* What's Included Checklist */
.ksa-detail-card__checklist {
    list-style: none;
    margin-bottom: 40px;
}

.ksa-detail-card__checklist li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #374151;
}

.ksa-detail-card__checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    background-color: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Note */
.ksa-detail-card__note {
    background-color: #eff6ff;
    border-radius: 8px;
    padding: 16px;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ksa-detail-card__note .ksa-icon {
    font-size: 20px;
}

/* Pricing Table */
.ksa-pricing-table {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.ksa-pricing-table__row {
    display: flex;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e5e5;
    align-items: center;
}

.ksa-pricing-table__row:last-child {
    border-bottom: none;
}

.ksa-pricing-table__head {
    background-color: #f9fafb;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.5px;
}

.ksa-pricing-table__row .ksa-col-name {
    flex: 2;
    font-weight: 700;
    color: #1f2937;
}

.ksa-pricing-table__row .ksa-col-regular {
    flex: 1;
    text-align: right;
    color: #9ca3af;
    font-weight: 700;
}

.ksa-pricing-table__row .ksa-col-bizprime {
    flex: 1;
    text-align: right;
    font-weight: 700;
    color: #16a34a;
}

.ksa-pricing-table__row .ksa-strikethrough {
    text-decoration: line-through;
}

.ksa-pricing-note {
    font-size: 12px;
    color: #9ca3af;
    font-style: italic;
    margin-bottom: 40px;
}

/* Detail Footer */
.ksa-detail-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ksa-validity .ksa-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 4px;
}

.ksa-validity .ksa-value {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

/* Sublist for Checklists */
.ksa-detail-card__sublist {
    margin-top: 8px;
    padding-left: 20px;
    list-style: none;
}

.ksa-detail-card__sublist li {
    font-size: 14px;
    color: #555555;
    margin-bottom: 6px;
    position: relative;
    padding-left: 12px;
}

.ksa-detail-card__sublist li::before {
    content: '•';
    color: #4ade80;
    position: absolute;
    left: -10px;
    font-weight: bold;
    font-size: 16px;
    background: none;
}

/* Warning Box */
.ksa-warning-box {
    background-color: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.ksa-warning-box__title {
    display: flex;
    align-items: center;
    color: #92400e;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ksa-warning-box__title .ksa-icon {
    margin-right: 8px;
    font-size: 18px;
}

.ksa-warning-box__list {
    list-style: none;
    padding-left: 28px;
}

.ksa-warning-box__list li {
    font-size: 14px;
    color: #b45309;
    margin-bottom: 6px;
    position: relative;
    padding-left: 12px;
}

.ksa-warning-box__list li::before {
    content: '▪';
    color: #f59e0b;
    position: absolute;
    left: -10px;
    font-size: 18px;
    line-height: 16px;
}

/* Delivery Timeline Box */
.ksa-delivery-timeline {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 16px;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ksa-delivery-timeline .ksa-icon {
    font-size: 20px;
}

/* Redemption Process Section */
.ksa-redemption-process {
    padding: 80px 0;
    background-color: #ffffff;
}

.ksa-redemption-process__header {
    text-align: center;
    margin-bottom: 60px;
}

.ksa-redemption-process__title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.ksa-redemption-process__subtitle {
    font-size: 16px;
    color: #6b7280;
}

.ksa-redemption-process__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Steps Timeline */
.ksa-steps-timeline__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.ksa-steps-timeline__step-pill {
    background-color: #dbeafe;
    color: #2563eb;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.ksa-steps-timeline__title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.ksa-steps-timeline__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.ksa-steps-timeline__list {
    position: relative;
    padding-left: 13px;
    border-left: 2px solid #e9f0ff;
    margin-left: 16px;
}

.ksa-steps-timeline__item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

.ksa-steps-timeline__item::before {
    content: '';
    position: absolute;
    left: -21px;
    top: 5px;
    width: 10px;
    height: 10px;
    background-color: #3b82f6;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.ksa-steps-timeline__item:last-child {
    margin-bottom: 0;
}

.ksa-form-link {
    color: #111827;
    font-weight: 700;
    text-decoration: underline;
}

/* Terms Card */
.ksa-terms-card {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #f1f5f9;
}

.ksa-terms-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.ksa-terms-card__header .ksa-icon {
    color: #64748b;
}

.ksa-terms-card__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.ksa-terms-card__list {
    margin-bottom: 30px;
}

.ksa-terms-card__item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #475569;
}

.ksa-terms-card__item .ksa-icon-check {
    color: #cbd5e1;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.ksa-terms-card__item .ksa-icon-check svg {
    width: 100%;
    height: 100%;
}

.ksa-terms-card__validity-pill {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ksa-terms-card__validity-pill::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    margin-right: 8px;
}

/* FAQs Section */
.ksa-faq-section {
    padding: 80px 0;
    background-color: #f6fef3;
}

.ksa-faq-section__header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ksa-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.ksa-faq-item {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ksa-faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ksa-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    transition: background-color 0.2s ease;
}

.ksa-faq-question:hover {
    background-color: #f9fafb;
}

.ksa-faq-question span {
    flex: 1;
    padding-right: 20px;
}

.ksa-faq-icon {
    flex-shrink: 0;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.ksa-faq-item.active .ksa-faq-icon {
    transform: rotate(180deg);
}

.ksa-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ksa-faq-item.active .ksa-faq-answer {
    max-height: 500px;
}

.ksa-faq-answer__content {
    padding: 0 24px 24px 24px;
}

.ksa-faq-answer__content p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.ksa-faq-answer__content strong {
    color: #1f2937;
    font-weight: 600;
}

/* ---------------------------------------------------------------------- 
   VIDEO TEMPLATE GALLERY SECTION 
------------------------------------------------------------------------- */
.ai-video-gallery-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Navigation Pills */
.gallery-nav-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.gallery-nav-pill {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #448f36;
    border-radius: 50px;
    color: #448f36;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: transparent;
}

.gallery-nav-pill:hover,
.gallery-nav-pill.active {
    background-color: #448f36;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(68, 143, 54, 0.2);
}

/* Category Sections */
.gallery-category-section {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.gallery-category-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-category-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.gallery-category-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #A3C948;
    margin: 8px auto 0;
    border-radius: 2px;
}

.gallery-category-subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* Video Card Styles */
.video-template-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #A3C948;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.video-template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-thumb {
    position: relative;
    width: 100%;
    height: 0;
    border-radius: 15px;
    padding-bottom: 56.25%;
    background-color: #000;
    overflow: hidden;
}

.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.video-template-card:hover .video-thumb img {
    opacity: 0.6;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    z-index: 2;
}

.video-template-card:hover .play-btn-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-meta {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.template-id {
    background-color: #f0fdf4;
    color: #4cb648;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.video-duration {
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* AI Video Top Banner */
.ai-video-top-banner {
    background: #ffffff url(/Upload/fldCMS/ai-video-header-banner.png) no-repeat;
    background-size: cover;
    background-position: center;
}

/* Response Breakpoints */
@media (max-width: 1024px) {
    .ksa-packages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ksa-main-nav__list {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .ksa-section-title {
        font-size: 30px;
    }

    .ksa-hero__title {
        font-size: 42px;
    }

    .ksa-main-nav {
        display: none;
    }

    .ksa-detail-card__content {
        padding: 30px;
    }

    .ksa-detail-card__formats {
        grid-template-columns: 1fr;
    }

    .ksa-detail-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .ksa-pricing-table__row {
        padding: 12px 16px;
        font-size: 14px;
    }

    .ksa-redemption-process__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ksa-section-title {
        font-size: 26px;
    }

    .ksa-hero__title {
        font-size: 32px;
    }

    .ksa-packages__grid {
        grid-template-columns: 1fr;
    }
}

@media(min-width: 1600px) {
    .ai-video-top-banner {
        padding-bottom: 131px !important;
    }
}