/* style/deposits-withdrawals-deposit-methods-detailed.css */

.page-deposits-withdrawals-deposit-methods-detailed {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-deposits-withdrawals-deposit-methods-detailed__hero-section {
    position: relative;
    padding: 100px 20px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #003366 0%, #FFD700 100%); /* Main and auxiliary colors */
}

.page-deposits-withdrawals-deposit-methods-detailed__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-deposits-withdrawals-deposit-methods-detailed__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-deposits-withdrawals-deposit-methods-detailed__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-deposits-withdrawals-deposit-methods-detailed__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.page-deposits-withdrawals-deposit-methods-detailed__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-deposits-withdrawals-deposit-methods-detailed__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-deposits-withdrawals-deposit-methods-detailed__section-title {
    font-size: 2.5em;
    color: #003366; /* Main color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-deposits-withdrawals-deposit-methods-detailed__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Auxiliary color */
    border-radius: 2px;
}

.page-deposits-withdrawals-deposit-methods-detailed__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-deposits-withdrawals-deposit-methods-detailed__feature-item {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.1);
    text-align: center;
    border-top: 5px solid #003366;
}

.page-deposits-withdrawals-deposit-methods-detailed__feature-heading {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-deposits-withdrawals-deposit-methods-detailed__feature-item p {
    font-size: 1.05em;
    color: #555;
}

.page-deposits-withdrawals-deposit-methods-detailed__method-card {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-deposits-withdrawals-deposit-methods-detailed__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-deposits-withdrawals-deposit-methods-detailed__method-icon {
    width: 80px;
    height: 80px;
    margin-right: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    padding: 10px;
    background-color: #FFD700;
    object-fit: contain;
}

.page-deposits-withdrawals-deposit-methods-detailed__method-details {
    flex-grow: 1;
}

.page-deposits-withdrawals-deposit-methods-detailed__method-heading {
    font-size: 2em;
    color: #003366;
    margin-bottom: 15px;
}

.page-deposits-withdrawals-deposit-methods-detailed__method-details p {
    margin-bottom: 15px;
    color: #444;
}

.page-deposits-withdrawals-deposit-methods-detailed__method-subheading {
    font-size: 1.4em;
    color: #003366;
    margin-top: 25px;
    margin-bottom: 10px;
    border-left: 4px solid #FFD700;
    padding-left: 10px;
}

.page-deposits-withdrawals-deposit-methods-detailed__method-details ol,
.page-deposits-withdrawals-deposit-methods-detailed__method-details ul {
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-deposits-withdrawals-deposit-methods-detailed__method-details li {
    margin-bottom: 8px;
    list-style-type: disc;
}

.page-deposits-withdrawals-deposit-methods-detailed__method-details ol li {
    list-style-type: decimal;
}

.page-deposits-withdrawals-deposit-methods-detailed__info-section {
    background-color: #e6f7ff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 60px;
    border-left: 8px solid #003366;
}

.page-deposits-withdrawals-deposit-methods-detailed__info-heading {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-deposits-withdrawals-deposit-methods-detailed__info-section p {
    color: #444;
    margin-bottom: 10px;
}

.page-deposits-withdrawals-deposit-methods-detailed__tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-deposits-withdrawals-deposit-methods-detailed__tip-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-bottom: 5px solid #FFD700;
}

.page-deposits-withdrawals-deposit-methods-detailed__tip-heading {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
}

.page-deposits-withdrawals-deposit-methods-detailed__tip-item p {
    color: #555;
}

.page-deposits-withdrawals-deposit-methods-detailed__support-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-deposits-withdrawals-deposit-methods-detailed__cta-section {
    background: linear-gradient(90deg, #003366, #0055aa);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    margin-top: 60px;
}

.page-deposits-withdrawals-deposit-methods-detailed__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-deposits-withdrawals-deposit-methods-detailed__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-deposits-withdrawals-deposit-methods-detailed__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #003366;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-deposits-withdrawals-deposit-methods-detailed__cta-button:hover {
    background-color: #e0b800;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-deposits-withdrawals-deposit-methods-detailed__hero-title {
        font-size: 2.5em;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__hero-description {
        font-size: 1.1em;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__section-title {
        font-size: 2em;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__method-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__method-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-deposits-withdrawals-deposit-methods-detailed__hero-section {
        padding: 80px 15px;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__hero-title {
        font-size: 2em;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__hero-description {
        font-size: 1em;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__feature-grid,
    .page-deposits-withdrawals-deposit-methods-detailed__tips-list {
        grid-template-columns: 1fr;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__method-heading {
        font-size: 1.8em;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__method-subheading {
        font-size: 1.2em;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__cta-title {
        font-size: 2em;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-deposits-withdrawals-deposit-methods-detailed__hero-section {
        padding: 60px 10px;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__hero-title {
        font-size: 1.8em;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__section-title {
        font-size: 1.8em;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__method-icon {
        width: 60px;
        height: 60px;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__method-heading {
        font-size: 1.5em;
    }
    .page-deposits-withdrawals-deposit-methods-detailed__feature-heading,
    .page-deposits-withdrawals-deposit-methods-detailed__info-heading,
    .page-deposits-withdrawals-deposit-methods-detailed__tip-heading {
        font-size: 1.4em;
    }
}