:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg-color: #17191F;
    --background-color-page: #0D0E12; /* Specific page background */
    --text-main-color: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange-color: #D96800;
}

.page-blog-hy88-ios-features-review {
    font-family: 'Arial', sans-serif;
    color: var(--text-main-color); /* Main text color for the page */
    background-color: var(--background-color-page); /* Page specific background */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Base styles for sections and containers */
.page-blog-hy88-ios-features-review__section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-blog-hy88-ios-features-review__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-hy88-ios-features-review__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.page-blog-hy88-ios-features-review__section-description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-main-color);
}

.page-blog-hy88-ios-features-review p {
    margin-bottom: 1em;
    color: var(--text-main-color);
}

.page-blog-hy88-ios-features-review a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-hy88-ios-features-review a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* HERO Section */
.page-blog-hy88-ios-features-review__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px; /* Small top padding, larger bottom for content */
    background-color: var(--background-color-page);
}

.page-blog-hy88-ios-features-review__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-blog-hy88-ios-features-review__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-hy88-ios-features-review__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-hy88-ios-features-review__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--text-main-color);
}

.page-blog-hy88-ios-features-review__main-title {
    font-size: clamp(28px, 4vw, 48px); /* Using clamp for responsive H1 */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 140, 26, 0.5);
}

.page-blog-hy88-ios-features-review__intro-text {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-main-color);
}

.page-blog-hy88-ios-features-review__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-blog-hy88-ios-features-review__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%); /* Custom button color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box; /* Ensure responsiveness */
    white-space: normal; /* Ensure responsiveness */
    word-wrap: break-word; /* Ensure responsiveness */
}

.page-blog-hy88-ios-features-review__cta-button:hover {
    background: linear-gradient(180deg, var(--deep-orange-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-hy88-ios-features-review__btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.page-blog-hy88-ios-features-review__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Section specific styles */
.page-blog-hy88-ios-features-review__overview-section img,
.page-blog-hy88-ios-features-review__promotions-section img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hy88-ios-features-review__dark-bg {
    background-color: var(--card-bg-color); /* Use card background for dark sections */
    color: var(--text-main-color);
}

.page-blog-hy88-ios-features-review__dark-bg .page-blog-hy88-ios-features-review__section-title {
    color: var(--primary-color);
}

.page-blog-hy88-ios-features-review__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-blog-hy88-ios-features-review__feature-card {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color); /* Custom border color */
}

.page-blog-hy88-ios-features-review__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-hy88-ios-features-review__feature-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-blog-hy88-ios-features-review__feature-card p {
    font-size: 16px;
    color: var(--text-main-color);
    margin-bottom: 20px;
}

.page-blog-hy88-ios-features-review__feature-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-hy88-ios-features-review__cta-buttons--center {
    text-align: center;
    margin-top: 50px;
}

.page-blog-hy88-ios-features-review__installation-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    max-width: 800px;
    margin: 40px auto;
}

.page-blog-hy88-ios-features-review__installation-steps li {
    counter-increment: step-counter;
    margin-bottom: 25px;
    padding-left: 50px;
    position: relative;
    font-size: 17px;
    color: var(--text-main-color);
}

.page-blog-hy88-ios-features-review__installation-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.page-blog-hy88-ios-features-review__installation-steps li strong {
    color: var(--primary-color);
}

.page-blog-hy88-ios-features-review__promo-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.page-blog-hy88-ios-features-review__promo-list li {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for list items */
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    font-size: 17px;
    color: var(--text-main-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-hy88-ios-features-review__promo-list li strong {
    color: var(--secondary-color);
}

.page-blog-hy88-ios-features-review__comparison-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hy88-ios-features-review__comparison-table {
    width: 100%;
    min-width: 700px; /* Ensure table is wide enough for comparison */
    border-collapse: collapse;
    background-color: var(--card-bg-color);
    color: var(--text-main-color);
}

.page-blog-hy88-ios-features-review__comparison-table th,
.page-blog-hy88-ios-features-review__comparison-table td {
    padding: 15px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.page-blog-hy88-ios-features-review__comparison-table th {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.page-blog-hy88-ios-features-review__comparison-table tbody tr:nth-child(even) {
    background-color: rgba(255, 140, 26, 0.05); /* Slight tint for readability */
}

/* FAQ Section */
.page-blog-hy88-ios-features-review__faq-section {
    background-color: var(--background-color-page);
}

.page-blog-hy88-ios-features-review__faq-list {
    max-width: 900px;
    margin: 40px auto;
}

details.page-blog-hy88-ios-features-review__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
details.page-blog-hy88-ios-features-review__faq-item summary.page-blog-hy88-ios-features-review__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--text-main-color);
}
details.page-blog-hy88-ios-features-review__faq-item summary.page-blog-hy88-ios-features-review__faq-question::-webkit-details-marker {
    display: none;
}
details.page-blog-hy88-ios-features-review__faq-item summary.page-blog-hy88-ios-features-review__faq-question:hover {
    background: rgba(255, 140, 26, 0.1); /* Hover effect with primary color tint */
}
.page-blog-hy88-ios-features-review__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main-color);
}
.page-blog-hy88-ios-features-review__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
}
details.page-blog-hy88-ios-features-review__faq-item .page-blog-hy88-ios-features-review__faq-answer {
    padding: 0 25px 20px;
    background: rgba(255, 255, 255, 0.03); /* Slightly different background for answer */
    border-radius: 0 0 10px 10px;
    color: var(--text-main-color);
}
details.page-blog-hy88-ios-features-review__faq-item .page-blog-hy88-ios-features-review__faq-answer p {
    margin-bottom: 0;
}


/* Responsive styles */
@media (max-width: 1024px) {
    .page-blog-hy88-ios-features-review__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog-hy88-ios-features-review__section {
        padding: 40px 0;
    }

    .page-blog-hy88-ios-features-review__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-hy88-ios-features-review__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .page-blog-hy88-ios-features-review__section-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    /* Hero section adjustments */
    .page-blog-hy88-ios-features-review__hero-section {
        padding-top: 10px !important; /* Fixed top padding for mobile */
        padding-bottom: 40px;
    }

    .page-blog-hy88-ios-features-review__main-title {
        font-size: clamp(24px, 7vw, 36px);
        margin-bottom: 15px;
    }

    .page-blog-hy88-ios-features-review__intro-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .page-blog-hy88-ios-features-review__cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-hy88-ios-features-review__cta-button {
        padding: 12px 25px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-hy88-ios-features-review__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-hy88-ios-features-review__feature-title {
        font-size: 20px;
    }

    .page-blog-hy88-ios-features-review__installation-steps li {
        font-size: 16px;
        padding-left: 45px;
        margin-bottom: 20px;
    }

    .page-blog-hy88-ios-features-review__installation-steps li::before {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .page-blog-hy88-ios-features-review__promo-list li {
        padding: 15px;
        font-size: 16px;
    }

    .page-blog-hy88-ios-features-review__comparison-table th,
    .page-blog-hy88-ios-features-review__comparison-table td {
        padding: 10px;
        font-size: 14px;
    }
    
    /* Mobile image responsiveness */
    .page-blog-hy88-ios-features-review img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    details.page-blog-hy88-ios-features-review__faq-item summary.page-blog-hy88-ios-features-review__faq-question { padding: 15px; }
    .page-blog-hy88-ios-features-review__faq-qtext { font-size: 16px; }
    .page-blog-hy88-ios-features-review__faq-toggle { font-size: 24px; width: 25px; }
    details.page-blog-hy88-ios-features-review__faq-item .page-blog-hy88-ios-features-review__faq-answer { padding: 0 15px 15px; }
}