
    /* page-ow-88 specific styles */
.page-ow-88 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
    line-height: 1.6;
    padding-top: 10px; /* Small decorative padding, assuming body handles --header-offset */
}

.page-ow-88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-ow-88__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold accent */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    font-weight: 700;
}

.page-ow-88__text-block {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #cccccc;
}

.page-ow-88__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.page-ow-88__button--primary {
    background-color: #FFD700; /* Gold */
    color: #1a1a1a;
}

.page-ow-88__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-ow-88__button--secondary {
    background-color: #333;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-ow-88__button--secondary:hover {
    background-color: #444;
    transform: translateY(-2px);
}

.page-ow-88__button-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Hero Section */
.page-ow-88__hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding: 60px 0;
}

.page-ow-88__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.page-ow-88__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.page-ow-88__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.page-ow-88__hero-title .highlight {
    color: #FFD700;
}

.page-ow-88__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-ow-88__hero-buttons .page-ow-88__button {
    margin: 0 10px;
}

/* About Section */
.page-ow-88__about-section {
    padding: 60px 0;
    background-color: #222;
}

.page-ow-88__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-ow-88__feature-item {
    background-color: #333;
    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-ow-88__feature-item:hover {
    transform: translateY(-5px);
}

.page-ow-88__feature-icon {
    width: 200px; /* Enforcing min 200x200 */
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
}

.page-ow-88__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-ow-88__feature-description {
    color: #ccc;
    font-size: 1em;
}

/* Products Section */
.page-ow-88__products-section {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.page-ow-88__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-ow-88__product-card {
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-align: center;
}

.page-ow-88__product-card:hover {
    transform: translateY(-5px);
}

.page-ow-88__product-image {
    width: 100%;
    height: 250px; /* Ensuring min 200px height for product images */
    object-fit: cover;
    max-width: 100%;
}

.page-ow-88__product-title {
    font-size: 1.8em;
    color: #FFD700;
    margin: 20px 15px 10px;
}

.page-ow-88__product-description {
    font-size: 1em;
    color: #ccc;
    padding: 0 15px 20px;
}

/* Promo Section */
.page-ow-88__promo-section {
    padding: 60px 0;
    background-color: #222;
}

.page-ow-88__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-ow-88__promo-card {
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-align: center;
}

.page-ow-88__promo-card:hover {
    transform: translateY(-5px);
}

.page-ow-88__promo-image {
    width: 100%;
    height: 250px; /* Ensuring min 200px height for promo images */
    object-fit: cover;
    max-width: 100%;
}

.page-ow-88__promo-title {
    font-size: 1.8em;
    color: #FFD700;
    margin: 20px 15px 10px;
}

.page-ow-88__promo-description {
    font-size: 1em;
    color: #ccc;
    padding: 0 15px 20px;
}

/* Providers Section */
.page-ow-88__providers-section {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.page-ow-88__providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Min 200px for each grid item */
    gap: 20px;
    margin-top: 50px;
    justify-items: center;
}

.page-ow-88__provider-item {
    background-color: #222;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    width: 100%; /* Take full width of its grid cell */
    min-height: 280px; /* Sufficient height for 200x200 logo + text */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}
.page-ow-88__provider-item:hover {
    transform: translateY(-5px);
}

.page-ow-88__provider-logo {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum width for the image itself */
    min-height: 200px; /* Enforce minimum height for the image itself */
    object-fit: contain; /* Ensure image content scales within the min-size */
    margin-bottom: 10px;
}
.page-ow-88__provider-name {
    font-size: 1em;
    color: #ccc;
    font-weight: bold;
}

/* FAQ Section */
.page-ow-88__faq-section {
    padding: 60px 0;
    background-color: #222;
}

.page-ow-88__faq-list {
    max-width: 900px;
    margin: 50px auto 0 auto;
}

.page-ow-88__faq-item {
    background-color: #333;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-ow-88__faq-question:hover {
    background-color: #555;
}

.page-ow-88__faq-question-text {
    font-size: 1.2em;
    color: #FFD700;
    margin: 0;
    pointer-events: none; /* Prevent h3 from blocking click */
}

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

.page-ow-88__faq-item.active .page-ow-88__faq-toggle {
    transform: rotate(45deg); /* Plus to X for active */
}

.page-ow-88__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    color: #ccc;
}

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

.page-ow-88__faq-answer p {
    margin: 0;
}

/* CTA Section */
.page-ow-88__cta-section {
    padding: 60px 0;
    background-color: #1a1a1a;
    text-align: center;
}

/* Floating Buttons */
.page-ow-88__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-ow-88__floating-button {
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 1em;
    font-weight: bold;
    color: #1a1a1a;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-ow-88__floating-button--register {
    background-color: #FFD700; /* Gold */
}

.page-ow-88__floating-button--register:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-ow-88__floating-button--login {
    background-color: #007bff; /* Blue */
    color: #fff;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-ow-88__hero-title {
        font-size: 2.8em;
    }
    .page-ow-88__hero-description {
        font-size: 1.1em;
    }
    .page-ow-88__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-ow-88__hero-section {
        min-height: 400px;
        padding: 40px 0;
    }
    .page-ow-88__hero-title {
        font-size: 2.2em;
    }
    .page-ow-88__hero-description {
        font-size: 1em;
    }
    .page-ow-88__hero-buttons .page-ow-88__button {
        display: block;
        margin: 15px auto;
        width: 80%;
        max-width: 250px;
    }
    .page-ow-88__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .page-ow-88__text-block {
        font-size: 0.95em;
        margin-bottom: 20px;
    }
    .page-ow-88__feature-item,
    .page-ow-88__product-card,
    .page-ow-88__promo-card {
        padding: 20px;
    }
    .page-ow-88__feature-title,
    .page-ow-88__product-title,
    .page-ow-88__promo-title {
        font-size: 1.4em;
    }
    .page-ow-88__faq-question {
        padding: 15px 20px;
    }
    .page-ow-88__faq-question-text {
        font-size: 1.1em;
    }
    .page-ow-88__faq-answer {
        padding: 0 20px;
    }
    .page-ow-88__faq-item.active .page-ow-88__faq-answer {
        padding: 15px 20px !important;
    }
    .page-ow-88__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    .page-ow-88__floating-button {
        padding: 10px 18px;
        font-size: 0.9em;
    }

    /* List item responsiveness */
    .page-ow-88__features-grid > div,
    .page-ow-88__product-grid > div,
    .page-ow-88__promo-cards > div,
    .page-ow-88__providers-grid > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    .page-ow-88__features-grid,
    .page-ow-88__product-grid,
    .page-ow-88__promo-cards,
    .page-ow-88__providers-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        grid-template-columns: 1fr; /* Stack items */
    }
    .page-ow-88__provider-item {
        width: 100% !important;
        min-height: 250px !important; /* Adjusted min-height for mobile */
        padding: 10px !important;
    }
    .page-ow-88__provider-logo {
        min-width: 180px !important; /* Slightly smaller min size for mobile if necessary */
        min-height: 180px !important;
        max-height: 200px !important; /* Maintain max height for logos */
    }
}

@media (max-width: 480px) {
    .page-ow-88__hero-title {
        font-size: 1.8em;
    }
    .page-ow-88__section-title {
        font-size: 1.5em;
    }
    .page-ow-88__faq-question-text {
        font-size: 1em;
    }
    .page-ow-88__faq-toggle {
        font-size: 1.5em;
    }
    .page-ow-88__floating-buttons {
        flex-direction: row;
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        justify-content: space-around;
    }
    .page-ow-88__floating-button {
        flex: 1;
        margin: 0 5px;
    }
    .page-ow-88__provider-logo {
        min-width: 150px !important;
        min-height: 150px !important;
    }
}
  