
    /* CSS for 28 dt page */
.page-28-dt {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
    padding-top: var(--header-offset, 122px); /* Fallback to 122px if --header-offset is not set */
}

.page-28-dt__hero-section {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    background-color: #2a2a2a;
}

.page-28-dt__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-28-dt__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-28-dt__main-title {
    font-size: 2.8em;
    color: #ffcc00; /* Gold/yellow for highlights */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-28-dt__main-title strong {
    color: #ffcc00;
}

.page-28-dt__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-28-dt__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-28-dt__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-28-dt__hero-button--register {
    background-color: #ffcc00;
}

.page-28-dt__hero-button--register:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-28-dt__hero-button--login {
    background-color: #007bff;
    color: #ffffff;
}

.page-28-dt__hero-button--login:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-28-dt__section-title {
    font-size: 2.2em;
    color: #ffcc00;
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-28-dt__section-title strong {
    color: #ffcc00;
}

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

.page-28-dt__features-section,
.page-28-dt__products-section,
.page-28-dt__promotions-section,
.page-28-dt__news-section,
.page-28-dt__faq-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-28-dt__features-grid,
.page-28-dt__product-grid,
.page-28-dt__promotions-grid,
.page-28-dt__news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-28-dt__feature-item,
.page-28-dt__product-item,
.page-28-dt__promotion-item,
.page-28-dt__news-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box; /* Required for list items */
}

.page-28-dt__feature-item:hover,
.page-28-dt__product-item:hover,
.page-28-dt__promotion-item:hover,
.page-28-dt__news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-28-dt__feature-icon,
.page-28-dt__product-image,
.page-28-dt__promotion-image,
.page-28-dt__news-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    width: 100%; /* Ensure images fill container */
    min-height: 200px; /* Minimum image height */
}

.page-28-dt__feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    object-fit: contain; /* Icons can be contain */
}

.page-28-dt__feature-title,
.page-28-dt__product-title,
.page-28-dt__promotion-title,
.page-28-dt__news-title {
    font-size: 1.5em;
    color: #ffcc00;
    margin-bottom: 10px;
}

.page-28-dt__feature-description,
.page-28-dt__product-description,
.page-28-dt__promotion-description,
.page-28-dt__news-excerpt {
    font-size: 1em;
    color: #c0c0c0;
    flex-grow: 1; /* Allow description to take available space */
    word-wrap: break-word; /* Ensure text wraps */
    overflow-wrap: break-word; /* Ensure text wraps */
}

.page-28-dt__news-date {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 10px;
}

.page-28-dt__button {
    background-color: #007bff;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.0em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-28-dt__button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-28-dt__view-more-promos,
.page-28-dt__view-more-news {
    text-align: center;
    margin-top: 20px;
}

/* Floating Buttons */
.page-28-dt__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.page-28-dt__floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 45px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: none;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-28-dt__floating-button--register {
    background-color: #ffcc00;
}

.page-28-dt__floating-button--register:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-28-dt__floating-button--login {
    background-color: #007bff;
    color: #ffffff;
}

.page-28-dt__floating-button--login:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section Styles */
.page-28-dt__faq-list {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #2a2a2a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-28-dt__faq-item {
    border-bottom: 1px solid #333;
}

.page-28-dt__faq-item:last-child {
    border-bottom: none;
}

.page-28-dt__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    background-color: #2a2a2a;
    transition: background-color 0.3s ease;
}

.page-28-dt__faq-question:hover {
    background-color: #3a3a3a;
}

.page-28-dt__faq-title {
    font-size: 1.2em;
    color: #ffcc00;
    margin: 0;
    pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-28-dt__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #007bff;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent span from blocking click event */
}

.page-28-dt__faq-item.active .page-28-dt__faq-toggle {
    transform: rotate(45deg); /* Change + to X or similar */
    color: #ffcc00;
}

.page-28-dt__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    background-color: #222;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    color: #c0c0c0;
    font-size: 1em;
}

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

.page-28-dt__faq-answer p {
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-28-dt__hero-section {
        padding: 40px 15px;
        min-height: 350px;
    }

    .page-28-dt__main-title {
        font-size: 2em;
    }

    .page-28-dt__hero-description {
        font-size: 1em;
    }

    .page-28-dt__hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-28-dt__hero-button {
        width: 80%;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-28-dt__section-title {
        font-size: 1.8em;
        margin: 40px 0 30px;
    }

    .page-28-dt__features-section,
    .page-28-dt__products-section,
    .page-28-dt__promotions-section,
    .page-28-dt__news-section,
    .page-28-dt__faq-section {
        padding: 30px 15px;
    }

    .page-28-dt__features-grid,
    .page-28-dt__product-grid,
    .page-28-dt__promotions-grid,
    .page-28-dt__news-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
    }

    /* List item specific responsive requirements */
    .page-28-dt__features-grid > *,
    .page-28-dt__product-grid > *,
    .page-28-dt__promotions-grid > *,
    .page-28-dt__news-grid > * {
        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 mobile */
    }
    .page-28-dt__features-grid,
    .page-28-dt__product-grid,
    .page-28-dt__promotions-grid,
    .page-28-dt__news-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Adjust padding for container */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-28-dt__feature-item,
    .page-28-dt__product-item,
    .page-28-dt__promotion-item,
    .page-28-dt__news-item {
        padding: 20px;
    }

    .page-28-dt__feature-title,
    .page-28-dt__product-title,
    .page-28-dt__promotion-title,
    .page-28-dt__news-title {
        font-size: 1.3em;
    }

    .page-28-dt__faq-question {
        padding: 15px 20px;
    }

    .page-28-dt__faq-title {
        font-size: 1.1em;
    }

    .page-28-dt__faq-answer {
        padding: 15px 20px;
    }

    .page-28-dt__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: space-around;
    }

    .page-28-dt__floating-button {
        width: 48%;
        height: 40px;
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .page-28-dt__main-title {
        font-size: 1.8em;
    }
    .page-28-dt__section-title {
        font-size: 1.6em;
    }
    .page-28-dt__hero-button {
        width: 90%;
    }
}

/* Ensure images are responsive */
.page-28-dt img {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important; /* Added for general image content */
    overflow-wrap: break-word !important;
}

/* Ensure image containers are responsive */
.page-28-dt__feature-item,
.page-28-dt__product-item,
.page-28-dt__promotion-item,
.page-28-dt__news-item {
    overflow: hidden !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}
  