/* style/payment-methods-troubleshooting.css */
.page-payment-methods-troubleshooting {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for readability */
}

.page-payment-methods-troubleshooting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-payment-methods-troubleshooting__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deep blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-payment-methods-troubleshooting__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="p" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="%230a4781"/></pattern></defs><rect width="100%" height="100%" fill="url(%23p)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.page-payment-methods-troubleshooting__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
}

.page-payment-methods-troubleshooting__hero-title .highlight {
    color: #FFCC00; /* Golden yellow for highlight */
}

.page-payment-methods-troubleshooting__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-payment-methods-troubleshooting__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Golden yellow button */
    color: #003366; /* Deep blue text for contrast */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-payment-methods-troubleshooting__cta-button:hover {
    background-color: #e6b800; /* Darker yellow on hover */
    transform: translateY(-3px);
}

/* Intro Section */
.page-payment-methods-troubleshooting__intro-section {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.page-payment-methods-troubleshooting__intro-section p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #444;
}

.page-payment-methods-troubleshooting__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.page-payment-methods-troubleshooting__image--small {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.page-payment-methods-troubleshooting__image--medium {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.page-payment-methods-troubleshooting__image--large {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Content Section */
.page-payment-methods-troubleshooting__content-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.page-payment-methods-troubleshooting__section-title {
    font-size: 2.5em;
    color: #003366; /* Deep blue for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-payment-methods-troubleshooting__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Golden yellow underline */
    border-radius: 2px;
}

.page-payment-methods-troubleshooting__section-title .highlight {
    color: #FFCC00;
}

.page-payment-methods-troubleshooting__content-section > p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 50px auto;
    color: #555;
}

.page-payment-methods-troubleshooting__trouble-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid #003366; /* Accent border */
}

.page-payment-methods-troubleshooting__item-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.page-payment-methods-troubleshooting__trouble-item p {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
}

.page-payment-methods-troubleshooting__trouble-item ul,
.page-payment-methods-troubleshooting__trouble-item ol {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-payment-methods-troubleshooting__trouble-item ul li,
.page-payment-methods-troubleshooting__trouble-item ol li {
    margin-bottom: 8px;
    color: #444;
    font-size: 1em;
}

.page-payment-methods-troubleshooting__trouble-item ul {
    list-style-type: disc;
}

.page-payment-methods-troubleshooting__ordered-list {
    list-style-type: decimal;
    padding-left: 25px;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-payment-methods-troubleshooting__ordered-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333;
}

.page-payment-methods-troubleshooting__bullet-list {
    list-style-type: disc;
    padding-left: 25px;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-payment-methods-troubleshooting__bullet-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}

.page-payment-methods-troubleshooting__inline-link {
    color: #003366; /* Deep blue for inline links */
    text-decoration: underline;
    font-weight: bold;
}

.page-payment-methods-troubleshooting__inline-link:hover {
    color: #FFCC00; /* Golden yellow on hover */
    text-decoration: none;
}

/* FAQ Section */
.page-payment-methods-troubleshooting__faq {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.page-payment-methods-troubleshooting__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 25px;
    border-left: 4px solid #FFCC00; /* Golden yellow accent */
}

.page-payment-methods-troubleshooting__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-payment-methods-troubleshooting__faq-answer {
    font-size: 1em;
    color: #555;
}

/* Call to Action Block */
.page-payment-methods-troubleshooting__cta-block {
    background-color: #003366; /* Deep blue background */
    color: #ffffff;
    padding: 60px 30px;
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-troubleshooting__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-payment-methods-troubleshooting__cta-title .highlight {
    color: #FFCC00;
}

.page-payment-methods-troubleshooting__cta-block p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-payment-methods-troubleshooting__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-payment-methods-troubleshooting__cta-button--primary {
    background-color: #FFCC00;
    color: #003366;
}

.page-payment-methods-troubleshooting__cta-button--primary:hover {
    background-color: #e6b800;
}

.page-payment-methods-troubleshooting__cta-button--secondary {
    background-color: #0a4781; /* Slightly lighter blue */
    color: #ffffff;
    border: 2px solid #0a4781;
}

.page-payment-methods-troubleshooting__cta-button--secondary:hover {
    background-color: #002244; /* Darker blue */
    border-color: #002244;
}

.page-payment-methods-troubleshooting__cta-button--tertiary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-payment-methods-troubleshooting__cta-button--tertiary:hover {
    background-color: #FFCC00;
    color: #003366;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-payment-methods-troubleshooting__hero-title {
        font-size: 2.8em;
    }

    .page-payment-methods-troubleshooting__hero-subtitle {
        font-size: 1.2em;
    }

    .page-payment-methods-troubleshooting__section-title {
        font-size: 2em;
    }

    .page-payment-methods-troubleshooting__item-title {
        font-size: 1.5em;
    }

    .page-payment-methods-troubleshooting__cta-title {
        font-size: 2.2em;
    }

    .page-payment-methods-troubleshooting__button-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-payment-methods-troubleshooting__cta-button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-payment-methods-troubleshooting__hero-section,
    .page-payment-methods-troubleshooting__intro-section,
    .page-payment-methods-troubleshooting__content-section,
    .page-payment-methods-troubleshooting__cta-block {
        padding: 40px 0;
    }

    .page-payment-methods-troubleshooting__hero-title {
        font-size: 2.2em;
    }

    .page-payment-methods-troubleshooting__hero-subtitle {
        font-size: 1em;
    }

    .page-payment-methods-troubleshooting__section-title {
        font-size: 1.8em;
    }

    .page-payment-methods-troubleshooting__item-title {
        font-size: 1.3em;
    }

    .page-payment-methods-troubleshooting__cta-title {
        font-size: 1.8em;
    }

    .page-payment-methods-troubleshooting__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-payment-methods-troubleshooting__ordered-list,
    .page-payment-methods-troubleshooting__bullet-list {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .page-payment-methods-troubleshooting__hero-section,
    .page-payment-methods-troubleshooting__intro-section,
    .page-payment-methods-troubleshooting__content-section,
    .page-payment-methods-troubleshooting__cta-block {
        padding: 30px 0;
    }

    .page-payment-methods-troubleshooting__hero-title {
        font-size: 1.8em;
    }

    .page-payment-methods-troubleshooting__hero-subtitle {
        font-size: 0.9em;
    }

    .page-payment-methods-troubleshooting__section-title {
        font-size: 1.5em;
    }

    .page-payment-methods-troubleshooting__item-title {
        font-size: 1.2em;
    }

    .page-payment-methods-troubleshooting__cta-title {
        font-size: 1.5em;
    }

    .page-payment-methods-troubleshooting__cta-button {
        width: 90%;
        max-width: unset;
    }
}