
    .page-789-pet {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-789-pet__hero-section {
    position: relative;
    background-color: #0056b3; /* Darker blue for hero background */
    color: #fff;
    padding: 60px 20px 40px;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* As per instruction, relying on body padding for header offset */
}

@media (min-width: 768px) {
    .page-789-pet__hero-section {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;
        padding: 80px 40px;
    }
    .page-789-pet__hero-content {
        flex: 1;
        max-width: 50%;
        padding-right: 30px;
    }
    .page-789-pet__hero-image-wrapper {
        flex: 1;
        max-width: 40%;
    }
}

.page-789-pet__hero-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
    word-wrap: break-word; /* Ensure long titles wrap */
    overflow-wrap: break-word;
}

.page-789-pet__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-789-pet__hero-cta-button {
    display: inline-block;
    background-color: #28a745; /* Green button */
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-789-pet__hero-cta-button:hover {
    background-color: #218838;
}

.page-789-pet__hero-image-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.page-789-pet__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box; /* Important for responsive images */
}

/* General Section Styling */
.page-789-pet__section-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #0056b3;
    padding: 0 15px; /* Ensure padding for titles on small screens */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-789-pet__features-section,
.page-789-pet__products-section,
.page-789-pet__promotions-section,
.page-789-pet__game-providers-section,
.page-789-pet__payment-methods-section,
.page-789-pet__faq-section,
.page-789-pet__cta-download-section {
    padding: 40px 20px;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-789-pet__features-grid,
.page-789-pet__products-grid,
.page-789-pet__promotions-grid,
.page-789-pet__providers-grid,
.page-789-pet__payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 0; /* Reset default list padding */
    margin: 0; /* Reset default list margin */
}

.page-789-pet__feature-item,
.page-789-pet__product-card,
.page-789-pet__promotion-card,
.page-789-pet__provider-item,
.page-789-pet__payment-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    box-sizing: border-box; /* Crucial for responsive grid items */
    width: 100%; /* Default to full width for mobile */
    max-width: 100%; /* Default to full width for mobile */
    margin: 0; /* Ensure no extra margin on mobile list items */
}

.page-789-pet__feature-item:hover,
.page-789-pet__product-card:hover,
.page-789-pet__promotion-card:hover,
.page-789-pet__provider-item:hover,
.page-789-pet__payment-item:hover {
    transform: translateY(-5px);
}

.page-789-pet__feature-icon,
.page-789-pet__product-image,
.page-789-pet__promotion-image,
.page-789-pet__provider-logo,
.page-789-pet__payment-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
    box-sizing: border-box; /* Important for responsive images */
}

.page-789-pet__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain; /* Ensure icons fit without cropping */
}

.page-789-pet__feature-title,
.page-789-pet__product-title,
.page-789-pet__promotion-title,
.page-789-pet__provider-name,
.page-789-pet__payment-name {
    font-size: 1.3em;
    color: #0056b3;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-789-pet__feature-text,
.page-789-pet__product-description,
.page-789-pet__promotion-description {
    font-size: 0.95em;
    color: #555;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Floating Buttons */
.page-789-pet__floating-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.page-789-pet__floating-button {
    flex: 1;
    text-align: center;
    color: #fff;
    padding: 12px 0;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border-radius: 5px;
    margin: 0 5px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.page-789-pet__register-button {
    background-color: #28a745; /* Green for Register */
}

.page-789-pet__register-button:hover {
    background-color: #218838;
}

.page-789-pet__login-button {
    background-color: #007bff; /* Blue for Login */
}

.page-789-pet__login-button:hover {
    background-color: #0056b3;
}

/* Call to Action Download Section */
.page-789-pet__cta-download-section {
    text-align: center;
    background-color: #007bff;
    color: #fff;
    padding: 50px 20px;
}

.page-789-pet__cta-download-section .page-789-pet__section-title {
    color: #fff;
}

.page-789-pet__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-789-pet__cta-button {
    display: inline-block;
    background-color: #ffc107; /* Yellow button */
    color: #333;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.page-789-pet__cta-button:hover {
    background-color: #e0a800;
}

/* FAQ Section */
.page-789-pet__faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-789-pet__faq-item {
    background-color: #f0f0f0;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-789-pet__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #e9ecef;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.3s ease;
}

.page-789-pet__faq-question:hover {
    background-color: #dee2e6;
}

.page-789-pet__faq-item.active .page-789-pet__faq-question {
    background-color: #d3d9df;
}

.page-789-pet__faq-q-text {
    margin: 0;
    font-size: 1.1em;
    color: #333;
    pointer-events: none; /* Prevent text from blocking click event */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-789-pet__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #0056b3;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle icon from blocking click event */
}

.page-789-pet__faq-item.active .page-789-pet__faq-toggle {
    transform: rotate(45deg); /* Change + to X or similar */
    content: "−"; /* Visually change to minus, handled by JS too */
}

.page-789-pet__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    background-color: #fdfdfd;
}

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

.page-789-pet__faq-answer p {
    margin: 0;
    color: #555;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-789-pet__hero-title {
        font-size: 2em;
    }
    .page-789-pet__section-title {
        font-size: 1.5em;
    }

    /* General list item responsiveness */
    .page-789-pet__features-grid,
    .page-789-pet__products-grid,
    .page-789-pet__promotions-grid,
    .page-789-pet__providers-grid,
    .page-789-pet__payment-grid {
        grid-template-columns: 1fr; /* Stack items on mobile */
        gap: 15px;
        padding: 0 10px !important; /* Adjust container padding */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-789-pet__feature-item,
    .page-789-pet__product-card,
    .page-789-pet__promotion-card,
    .page-789-pet__provider-item,
    .page-789-pet__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* Image responsiveness */
    .page-789-pet__hero-image,
    .page-789-pet__feature-icon,
    .page-789-pet__product-image,
    .page-789-pet__promotion-image,
    .page-789-pet__provider-logo,
    .page-789-pet__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    /* Floating buttons */
    .page-789-pet__floating-button {
        font-size: 1em;
        padding: 10px 0;
        margin: 0 3px;
    }

    /* FAQ Mobile adjustments */
    .page-789-pet__faq-question {
        padding: 12px 15px;
    }
    .page-789-pet__faq-q-text {
        font-size: 1em;
    }
    .page-789-pet__faq-answer {
        padding: 15px 15px !important;
    }
}

/* Ensure images maintain aspect ratio and fit container */
.page-789-pet__hero-image,
.page-789-pet__feature-icon,
.page-789-pet__product-image,
.page-789-pet__promotion-image,
.page-789-pet__provider-logo,
.page-789-pet__payment-logo {
    object-fit: cover; /* or contain depending on desired effect */
}
.page-789-pet__feature-icon {
    object-fit: contain; /* Icons should be contained */
}

  