/* style/deposit-withdrawal-security.css */
.page-deposit-withdrawal-security {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light grey for general text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

.page-deposit-withdrawal-security__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-deposit-withdrawal-security__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-deposit-withdrawal-security__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Accent gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-deposit-withdrawal-security__hero-title a,
.page-deposit-withdrawal-security__hero-subtitle a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-deposit-withdrawal-security__hero-title a:hover,
.page-deposit-withdrawal-security__hero-subtitle a:hover {
    color: #fff;
}

.page-deposit-withdrawal-security__hero-subtitle {
    font-size: 1.3em;
    color: #e5dfd3;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-deposit-withdrawal-security__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-deposit-withdrawal-security__btn--primary {
    background-color: #FFD700; /* Gold for primary action */
    color: #1A202C;
}

.page-deposit-withdrawal-security__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-deposit-withdrawal-security__btn-text {
    text-transform: uppercase;
}

.page-deposit-withdrawal-security__section {
    padding: 60px 0;
    background-color: #2D3748; /* Slightly lighter dark for section background */
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-deposit-withdrawal-security__section:nth-child(even) {
    background-color: #1A202C;
}

.page-deposit-withdrawal-security__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-deposit-withdrawal-security__section-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-deposit-withdrawal-security__section-title a:hover {
    color: #e5dfd3;
}

.page-deposit-withdrawal-security__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #e5dfd3;
}

.page-deposit-withdrawal-security__text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-deposit-withdrawal-security__text a:hover {
    text-decoration: underline;
}

.page-deposit-withdrawal-security__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-deposit-withdrawal-security__card {
    background-color: #1A202C; /* Darker background for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-deposit-withdrawal-security__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-deposit-withdrawal-security__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-deposit-withdrawal-security__card-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-deposit-withdrawal-security__card-text {
    font-size: 1em;
    color: #a0aec0; /* Lighter grey for card text */
    text-align: justify;
}

.page-deposit-withdrawal-security__card-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-deposit-withdrawal-security__card-text a:hover {
    text-decoration: underline;
}

.page-deposit-withdrawal-security__subsection-title {
    font-size: 2em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.page-deposit-withdrawal-security__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-deposit-withdrawal-security__list-item {
    background-color: #1A202C;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-deposit-withdrawal-security__list-item:hover {
    background-color: #2D3748;
}

.page-deposit-withdrawal-security__list-item-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-deposit-withdrawal-security__list-item-text {
    color: #a0aec0;
    text-align: justify;
}

.page-deposit-withdrawal-security__list-item-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-deposit-withdrawal-security__list-item-text a:hover {
    text-decoration: underline;
}

.page-deposit-withdrawal-security__accordion {
    margin-top: 40px;
}

.page-deposit-withdrawal-security__accordion-item {
    background-color: #2D3748;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-security__accordion-header {
    background-color: #1A202C;
    color: #FFD700;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-deposit-withdrawal-security__accordion-header:hover {
    background-color: #2D3748;
}

.page-deposit-withdrawal-security__accordion-header a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-deposit-withdrawal-security__accordion-header a:hover {
    color: #e5dfd3;
}

.page-deposit-withdrawal-security__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-deposit-withdrawal-security__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-deposit-withdrawal-security__accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #2D3748;
}

.page-deposit-withdrawal-security__accordion-content.active {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-deposit-withdrawal-security__accordion-content .page-deposit-withdrawal-security__text {
    margin-bottom: 0;
    color: #a0aec0;
}

.page-deposit-withdrawal-security__cta {
    background-color: #FFD700; /* Gold background for CTA */
    padding: 80px 0;
    text-align: center;
    color: #1A202C;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-deposit-withdrawal-security__cta-title {
    font-size: 2.8em;
    color: #1A202C;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-deposit-withdrawal-security__cta-title a {
    color: #1A202C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-deposit-withdrawal-security__cta-title a:hover {
    color: #4a5568;
}

.page-deposit-withdrawal-security__cta-text {
    font-size: 1.2em;
    color: #4a5568; /* Darker grey for CTA text */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-deposit-withdrawal-security__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-deposit-withdrawal-security__btn--secondary {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-deposit-withdrawal-security__btn--secondary:hover {
    background-color: #2D3748;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.page-deposit-withdrawal-security__btn--tertiary {
    background-color: transparent;
    color: #1A202C;
    border: 2px solid #1A202C;
}

.page-deposit-withdrawal-security__btn--tertiary:hover {
    background-color: #1A202C;
    color: #FFD700;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-deposit-withdrawal-security__hero-title {
        font-size: 2.8em;
    }
    .page-deposit-withdrawal-security__section-title {
        font-size: 2em;
    }
    .page-deposit-withdrawal-security__card-title {
        font-size: 1.4em;
    }
    .page-deposit-withdrawal-security__subsection-title {
        font-size: 1.8em;
    }
    .page-deposit-withdrawal-security__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-deposit-withdrawal-security__hero {
        padding: 80px 0;
    }
    .page-deposit-withdrawal-security__hero-title {
        font-size: 2.2em;
    }
    .page-deposit-withdrawal-security__hero-subtitle {
        font-size: 1.1em;
    }
    .page-deposit-withdrawal-security__section {
        padding: 40px 0;
    }
    .page-deposit-withdrawal-security__section-title {
        font-size: 1.8em;
    }
    .page-deposit-withdrawal-security__grid {
        grid-template-columns: 1fr;
    }
    .page-deposit-withdrawal-security__cta-title {
        font-size: 1.8em;
    }
    .page-deposit-withdrawal-security__cta-text {
        font-size: 1em;
    }
    .page-deposit-withdrawal-security__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-deposit-withdrawal-security__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-deposit-withdrawal-security__accordion-header {
        font-size: 1.1em;
    }
    .page-deposit-withdrawal-security__list-item-title {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-deposit-withdrawal-security__hero-title {
        font-size: 1.8em;
    }
    .page-deposit-withdrawal-security__section-title {
        font-size: 1.5em;
    }
    .page-deposit-withdrawal-security__cta-title {
        font-size: 1.6em;
    }
    .page-deposit-withdrawal-security__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-deposit-withdrawal-security__accordion-header {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-deposit-withdrawal-security__accordion-content {
        padding: 15px 20px;
    }
    .page-deposit-withdrawal-security__list-item {
        padding: 20px;
    }
}