/* Payment Page Specific Styles */

.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/payment-banner.jpg');
    background-size: cover;
    background-position: center;
}

.payment-intro {
    padding: 40px 0;
}

.payment-intro h2 {
    font-size: 28px;
    color: #2a7a9e;
    text-align: center;
    margin-bottom: 40px;
}

.payment-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: center;
}

.payment-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.payment-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-methods {
    background-color: #f5f5f5;
    padding: 60px 0;
    margin: 40px 0;
}

.payment-methods h2 {
    font-size: 28px;
    color: #2a7a9e;
    text-align: center;
    margin-bottom: 40px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.method-icon {
    text-align: center;
    margin-bottom: 20px;
}

.method-icon img {
    max-height: 60px;
}

.method-card h3 {
    color: #2a7a9e;
    margin-bottom: 15px;
    text-align: center;
}

.method-card p {
    color: #555;
    margin-bottom: 15px;
}

.method-details ul {
    padding-left: 20px;
}

.method-details ul li {
    margin-bottom: 10px;
    color: #555;
}

.security-section {
    padding: 60px 0;
}

.security-section h2 {
    font-size: 28px;
    color: #2a7a9e;
    text-align: center;
    margin-bottom: 40px;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.security-text h3 {
    color: #2a7a9e;
    margin-bottom: 20px;
}

.security-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.security-features {
    margin-top: 30px;
}

.feature-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    margin-right: 15px;
    color: #2a7a9e;
    font-size: 24px;
    min-width: 24px;
}

.feature-text h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #444;
}

.feature-text p {
    margin-bottom: 0;
    color: #555;
}

.security-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.returns-section {
    background-color: #eaf4f9;
    padding: 60px 0;
    margin: 40px 0;
}

.returns-section h2 {
    font-size: 28px;
    color: #2a7a9e;
    text-align: center;
    margin-bottom: 40px;
}

.returns-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.returns-text h3 {
    color: #2a7a9e;
    margin-bottom: 20px;
}

.returns-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.returns-process {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.returns-process h3 {
    color: #2a7a9e;
    margin-bottom: 20px;
    text-align: center;
}

.process-step {
    display: flex;
    margin-bottom: 25px;
}

.step-number {
    background-color: #2a7a9e;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #444;
}

.step-content p {
    margin-bottom: 0;
    color: #555;
}

.currency-section {
    padding: 60px 0;
}

.currency-section h2 {
    font-size: 28px;
    color: #2a7a9e;
    text-align: center;
    margin-bottom: 40px;
}

.currency-content {
    max-width: 900px;
    margin: 0 auto;
}

.currency-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.currencies-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.currencies-table th {
    background-color: #2a7a9e;
    color: white;
    padding: 15px;
    text-align: left;
}

.currencies-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.currencies-table tr:last-child td {
    border-bottom: none;
}

.currencies-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.currency-flag {
    display: flex;
    align-items: center;
}

.currency-flag img {
    width: 24px;
    margin-right: 10px;
}

.currency-note {
    font-style: italic;
    margin-top: 20px;
    color: #666;
}

.payment-faq {
    background-color: #f5f5f5;
    padding: 60px 0;
    margin: 40px 0;
}

.payment-faq h2 {
    font-size: 28px;
    color: #2a7a9e;
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
}

.faq-question {
    background-color: #f9f9f9;
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 500px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .payment-content, .security-content, .returns-content {
        grid-template-columns: 1fr;
    }
    
    .currencies-table {
        overflow-x: auto;
        display: block;
    }
}