/* style/platform-reviews-payment-methods-evaluation.css */
.page-platform-reviews-payment-methods-evaluation {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-platform-reviews-payment-methods-evaluation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-platform-reviews-payment-methods-evaluation__hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-platform-reviews-payment-methods-evaluation__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 204, 0, 0.1) 0%, rgba(0, 51, 102, 0) 70%);
    animation: page-platform-reviews-payment-methods-evaluation__hero-animate 20s infinite linear;
}

@keyframes page-platform-reviews-payment-methods-evaluation__hero-animate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-platform-reviews-payment-methods-evaluation__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold yellow for emphasis */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-platform-reviews-payment-methods-evaluation__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.page-platform-reviews-payment-methods-evaluation__section {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.page-platform-reviews-payment-methods-evaluation__section:nth-of-type(even) {
    background-color: #eef4f8; /* A lighter shade of blue-gray */
}

.page-platform-reviews-payment-methods-evaluation__heading {
    font-size: 2.2em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-platform-reviews-payment-methods-evaluation__heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-platform-reviews-payment-methods-evaluation__sub-heading {
    font-size: 1.8em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFCC00;
    padding-left: 15px;
}

.page-platform-reviews-payment-methods-evaluation p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #444;
}

.page-platform-reviews-payment-methods-evaluation ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-platform-reviews-payment-methods-evaluation ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #555;
}

.page-platform-reviews-payment-methods-evaluation__button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    position: relative;
    z-index: 1;
}

.page-platform-reviews-payment-methods-evaluation__button--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-platform-reviews-payment-methods-evaluation__button--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-platform-reviews-payment-methods-evaluation__button--secondary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}

.page-platform-reviews-payment-methods-evaluation__button--secondary:hover {
    background-color: #003366;
    color: #FFCC00;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-platform-reviews-payment-methods-evaluation__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-platform-reviews-payment-methods-evaluation__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-platform-reviews-payment-methods-evaluation__image--small {
    max-width: 150px;
    margin: 20px auto;
    display: block;
}

.page-platform-reviews-payment-methods-evaluation__list {
    list-style: none;
    padding: 0;
}

.page-platform-reviews-payment-methods-evaluation__list li {
    background-color: #ffffff;
    border-left: 4px solid #003366;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
}

.page-platform-reviews-payment-methods-evaluation__list li strong {
    color: #003366;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-platform-reviews-payment-methods-evaluation__title {
        font-size: 2em;
    }

    .page-platform-reviews-payment-methods-evaluation__subtitle {
        font-size: 1em;
    }

    .page-platform-reviews-payment-methods-evaluation__heading {
        font-size: 1.8em;
    }

    .page-platform-reviews-payment-methods-evaluation__sub-heading {
        font-size: 1.5em;
    }

    .page-platform-reviews-payment-methods-evaluation__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-platform-reviews-payment-methods-evaluation__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-platform-reviews-payment-methods-evaluation__title {
        font-size: 1.6em;
    }

    .page-platform-reviews-payment-methods-evaluation__subtitle {
        font-size: 0.9em;
    }

    .page-platform-reviews-payment-methods-evaluation__heading {
        font-size: 1.5em;
    }

    .page-platform-reviews-payment-methods-evaluation__sub-heading {
        font-size: 1.3em;
    }

    .page-platform-reviews-payment-methods-evaluation__button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}