
    .page-link-78 {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light gray text for contrast */
    background-color: #1a1a2e; /* Dark blue background */
    line-height: 1.6;
    padding-bottom: 20px; /* Ensure space above footer */
}

.page-link-78__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-link-78__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #cccccc;
}

.page-link-78__keyword {
    color: #FFEA00; /* Brighter gold for keywords */
    font-weight: bold;
}

/* Hero Section */
.page-link-78__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 20px 80px 20px; /* 10px padding-top for fixed header offset */
    min-height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1d 100%);
}

.page-link-78__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
    max-width: 100%; /* Responsive image */
    box-sizing: border-box; /* Responsive image container */
}

.page-link-78__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.page-link-78__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-link-78__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-link-78__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-link-78__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-link-78__button--primary {
    background-color: #FFD700; /* Gold */
    color: #1a1a2e; /* Dark blue text */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-link-78__button--primary:hover {
    background-color: #FFEA00; /* Brighter gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 234, 0, 0.6);
}

.page-link-78__button--secondary {
    background-color: #00BFFF; /* Deep Sky Blue */
    color: #ffffff;
    border: 2px solid #00BFFF;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

.page-link-78__button--secondary:hover {
    background-color: #00A3D9; /* Darker blue */
    border-color: #00A3D9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 163, 217, 0.6);
}

.page-link-78__button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* About Section */
.page-link-78__about-section {
    padding: 60px 20px;
    background-color: #24243e; /* Slightly lighter dark blue */
}

.page-link-78__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-link-78__feature-item {
    background-color: #313150; /* Darker background for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-link-78__feature-item:hover {
    transform: translateY(-10px);
}

.page-link-78__feature-icon {
    width: 150px; /* Actual image will be larger due to GALLERY requirement */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    max-width: 100%; /* Responsive image */
    box-sizing: border-box; /* Responsive image container */
}

.page-link-78__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-link-78__feature-text {
    font-size: 1em;
    color: #cccccc;
}

/* Products Section */
.page-link-78__products-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

.page-link-78__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-link-78__product-card {
    background-color: #313150;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-link-78__product-card:hover {
    transform: translateY(-10px);
}

.page-link-78__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    max-width: 100%; /* Responsive image */
    box-sizing: border-box; /* Responsive image container */
}

.page-link-78__product-title {
    font-size: 1.5em;
    color: #FFD700;
    padding: 15px 20px 0;
    margin-bottom: 10px;
}

.page-link-78__product-text {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 20px 20px;
    flex-grow: 1; /* Ensure text pushes to bottom if needed */
}

/* Promotion Section */
.page-link-78__promotion-section {
    padding: 60px 20px;
    background-color: #24243e;
}

.page-link-78__promo-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
}

.page-link-78__promo-item {
    background-color: #313150;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box; /* For list item responsiveness */
}

.page-link-78__promo-item:hover {
    transform: translateY(-10px);
}

.page-link-78__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    max-width: 100%; /* Responsive image */
    box-sizing: border-box; /* Responsive image container */
}

.page-link-78__promo-title {
    font-size: 1.6em;
    color: #FFD700;
    padding: 15px 20px 0;
    margin-bottom: 10px;
}

.page-link-78__promo-text {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-link-78__call-to-action {
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section */
.page-link-78__faq-section {
    padding: 60px 20px;
    background-color: #1a1a2e;
}

.page-link-78__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-link-78__faq-item {
    background-color: #313150;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.page-link-78__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #3e3e60;
    cursor: pointer;
    font-size: 1.2em;
    color: #FFD700;
    transition: background-color 0.3s ease;
    user-select: none;
}

.page-link-78__faq-question:hover {
    background-color: #4a4a70;
}

.page-link-78__faq-title {
    font-size: 1.2em;
    margin: 0;
    color: #FFD700;
    pointer-events: none; /* Prevent h3 from blocking click on parent */
    flex-grow: 1;
}

.page-link-78__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #FFD700;
    margin-left: 15px;
    pointer-events: none; /* Prevent span from blocking click on parent */
    transition: transform 0.3s ease;
}

.page-link-78__faq-item.active .page-link-78__faq-toggle {
    transform: rotate(45deg); /* Change + to X (or similar) */
    content: "−" !important; /* Visual change handled by JS, but this is a CSS hint */
}

.page-link-78__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px; /* Initial padding */
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    color: #cccccc;
    font-size: 1em;
}

.page-link-78__faq-item.active .page-link-78__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to contain content */
    padding: 20px 25px !important;
    opacity: 1;
}

/* Call to Action Section */
.page-link-78__cta-section {
    padding: 60px 20px;
    background: linear-gradient(45deg, #24243e 0%, #1a1a2e 100%);
    text-align: center;
}

/* Floating Register/Login Buttons */
.page-link-78__floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.page-link-78__floating-button {
    background-color: #FFD700; /* Gold */
    color: #1a1a2e;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap; /* Prevent text wrapping */
}

.page-link-78__floating-button:hover {
    background-color: #FFEA00;
    transform: translateY(-3px) translateX(-50%); /* Adjust transform for hover */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-link-78__hero-title {
        font-size: 3em;
    }
    .page-link-78__hero-description {
        font-size: 1.2em;
    }
    .page-link-78__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-link-78__hero-section {
        padding-bottom: 60px;
    }
    .page-link-78__hero-title {
        font-size: 2.2em;
    }
    .page-link-78__hero-description {
        font-size: 1em;
    }
    .page-link-78__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-link-78__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .page-link-78__section-title {
        font-size: 1.8em;
    }
    .page-link-78__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    /* List item responsiveness */
    .page-link-78__features-grid,
    .page-link-78__product-grid,
    .page-link-78__promo-list {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }

    .page-link-78__feature-item,
    .page-link-78__product-card,
    .page-link-78__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px; /* Adjust padding for smaller screens */
    }

    .page-link-78__promo-item {
        padding: 0; /* Image takes full width */
    }
    .page-link-78__promo-image {
        border-radius: 10px 10px 0 0;
    }
    .page-link-78__promo-title,
    .page-link-78__promo-text {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-link-78__promo-text {
        padding-bottom: 15px;
    }

    .page-link-78__feature-icon,
    .page-link-78__product-image,
    .page-link-78__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        object-fit: cover;
    }

    .page-link-78__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-link-78__faq-title {
        font-size: 1.1em;
    }
    .page-link-78__faq-answer {
        padding: 15px 20px;
    }

    .page-link-78__floating-buttons {
        gap: 10px;
        bottom: 15px;
    }
    .page-link-78__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    /* Text wrapping for long content */
    .page-link-78__feature-text,
    .page-link-78__product-text,
    .page-link-78__promo-text,
    .page-link-78__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
}

@media (max-width: 480px) {
    .page-link-78__hero-title {
        font-size: 1.8em;
    }
    .page-link-78__section-title {
        font-size: 1.5em;
    }
    .page-link-78__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-link-78__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}
  