/* style/betting-platforms-review-process.css */

/* Base styles for the page */
.page-betting-platforms-review-process {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light grey for text on dark background */
    background-color: #1A2E44; /* Main dark blue background */
}

.page-betting-platforms-review-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-betting-platforms-review-process__hero {
    background: linear-gradient(135deg, #1A2E44 0%, #365b82 100%); /* Dark blue to slightly lighter blue */
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-betting-platforms-review-process__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-betting-platforms-review-process__hero h1 {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-betting-platforms-review-process__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-betting-platforms-review-process__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
    object-fit: cover;
}

.page-betting-platforms-review-process__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General Section Styling */
.page-betting-platforms-review-process__section {
    padding: 60px 0;
    background-color: #1A2E44;
}

.page-betting-platforms-review-process__section:nth-of-type(even) {
    background-color: #142539; /* Slightly darker shade for alternating sections */
}

.page-betting-platforms-review-process__section h2 {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-betting-platforms-review-process__section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-betting-platforms-review-process__section h3 {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-bottom: 15px;
}

.page-betting-platforms-review-process__section p {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-betting-platforms-review-process__section ul,
.page-betting-platforms-review-process__section ol {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.page-betting-platforms-review-process__section ul li,
.page-betting-platforms-review-process__section ol li {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    text-align: justify;
}

.page-betting-platforms-review-process__section ul li::before {
    content: '•';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.page-betting-platforms-review-process__section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-betting-platforms-review-process__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    margin: 10px;
}

.page-betting-platforms-review-process__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A2E44; /* Dark blue */
}

.page-betting-platforms-review-process__btn--primary:hover {
    background-color: #e5c000; /* Slightly darker gold */
    color: #0d1e2f;
}

.page-betting-platforms-review-process__btn--secondary {
    background-color: #1A2E44; /* Dark blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-betting-platforms-review-process__btn--secondary:hover {
    background-color: #FFD700; /* Gold */
    color: #1A2E44; /* Dark blue */
}

.page-betting-platforms-review-process__btn--tertiary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-betting-platforms-review-process__btn--tertiary:hover {
    background-color: #FFD700;
    color: #1A2E44;
}

/* Specific section styles */
.page-betting-platforms-review-process__why-review ul li::before {
    content: '✓'; /* Checkmark for why review section */
    color: #FFD700;
}

.page-betting-platforms-review-process__criteria .page-betting-platforms-review-process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-platforms-review-process__criteria .page-betting-platforms-review-process__grid-item {
    background-color: #243e59; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-platforms-review-process__criteria .page-betting-platforms-review-process__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-betting-platforms-review-process__criteria .page-betting-platforms-review-process__grid-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-betting-platforms-review-process__criteria .page-betting-platforms-review-process__grid-item p {
    font-size: 1em;
    color: #c0c0c0;
}

.page-betting-platforms-review-process__step-by-step .page-betting-platforms-review-process__steps {
    counter-reset: step-counter;
}

.page-betting-platforms-review-process__step-by-step .page-betting-platforms-review-process__steps li {
    margin-bottom: 30px;
    padding-left: 70px;
    position: relative;
    border-left: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 20px;
}

.page-betting-platforms-review-process__step-by-step .page-betting-platforms-review-process__steps li:last-child {
    border-left: none;
    padding-bottom: 0;
}

.page-betting-platforms-review-process__step-by-step .page-betting-platforms-review-process__steps li h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-betting-platforms-review-process__step-by-step .page-betting-platforms-review-process__steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    background-color: #FFD700;
    color: #1A2E44;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    font-weight: bold;
    position: absolute;
    left: -23px;
    top: 0;
    border: 3px solid #1A2E44;
    box-shadow: 0 0 0 3px #FFD700;
}

.page-betting-platforms-review-process__benefits ul li::before {
    content: '✅'; /* Checkmark for benefits section */
    color: #FFD700;
}

.page-betting-platforms-review-process__cta {
    text-align: center;
    background: linear-gradient(45deg, #1A2E44, #0d1e2f);
    padding: 80px 0;
}

.page-betting-platforms-review-process__cta h2 {
    color: #FFD700;
}

.page-betting-platforms-review-process__cta p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.15em;
}

.page-betting-platforms-review-process__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-betting-platforms-review-process__hero h1 {
        font-size: 2.5em;
    }
    .page-betting-platforms-review-process__hero p {
        font-size: 1em;
    }
    .page-betting-platforms-review-process__section h2 {
        font-size: 2em;
    }
    .page-betting-platforms-review-process__section h3 {
        font-size: 1.4em;
    }
    .page-betting-platforms-review-process__section p,
    .page-betting-platforms-review-process__section ul li,
    .page-betting-platforms-review-process__section ol li {
        font-size: 0.95em;
    }
    .page-betting-platforms-review-process__criteria .page-betting-platforms-review-process__grid {
        grid-template-columns: 1fr;
    }
    .page-betting-platforms-review-process__step-by-step .page-betting-platforms-review-process__steps li {
        padding-left: 55px;
    }
    .page-betting-platforms-review-process__step-by-step .page-betting-platforms-review-process__steps li::before {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
        left: -20px;
    }
    .page-betting-platforms-review-process__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-betting-platforms-review-process__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-betting-platforms-review-process__hero h1 {
        font-size: 2em;
    }
    .page-betting-platforms-review-process__hero p {
        font-size: 0.9em;
    }
    .page-betting-platforms-review-process__section h2 {
        font-size: 1.8em;
    }
    .page-betting-platforms-review-process__section h3 {
        font-size: 1.2em;
    }
    .page-betting-platforms-review-process__section p,
    .page-betting-platforms-review-process__section ul li,
    .page-betting-platforms-review-process__section ol li {
        font-size: 0.9em;
    }
    .page-betting-platforms-review-process__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}