/* style/resources-loto188-mobile-app-features.css */
:root {
    --primary-color: #26A9E0;
    --auxiliary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --login-button-color: #EA7C07;
    --background-color: #FFFFFF;
    --black: #000000;
}

.page-resources-loto188-mobile-app-features {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-color);
}

.page-resources-loto188-mobile-app-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-loto188-mobile-app-features__section {
    padding: 60px 0;
    background-color: var(--auxiliary-color);
}

.page-resources-loto188-mobile-app-features__section:nth-of-type(even) {
    background-color: #f0f8ff; /* Slightly different background for visual separation */
}

.page-resources-loto188-mobile-app-features__heading {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-resources-loto188-mobile-app-features__paragraph {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.page-resources-loto188-mobile-app-features__paragraph a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-resources-loto188-mobile-app-features__paragraph a:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-resources-loto188-mobile-app-features__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background: linear-gradient(135deg, #E0F7FA, var(--auxiliary-color)); /* Light gradient background */
}

.page-resources-loto188-mobile-app-features__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-loto188-mobile-app-features__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-resources-loto188-mobile-app-features__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-loto188-mobile-app-features__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-resources-loto188-mobile-app-features__hero-title {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.page-resources-loto188-mobile-app-features__hero-description {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-loto188-mobile-app-features__cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 38, 255, 0.2);
}

.page-resources-loto188-mobile-app-features__cta-button:hover {
    background: #1e88e5; /* Slightly darker primary color */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-resources-loto188-mobile-app-features__introduction .page-resources-loto188-mobile-app-features__paragraph {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-loto188-mobile-app-features__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-loto188-mobile-app-features__feature-item {
    background-color: var(--auxiliary-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    border: 1px solid #e0e0e0;
}

.page-resources-loto188-mobile-app-features__feature-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-resources-loto188-mobile-app-features__feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}