/* Additional Styles for Customer Service Pages */

.page-content {
    padding: 4rem 0;
    min-height: 60vh;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.intro-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-section h2 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.content-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.content-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: var(--light-pink);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

/* Highlight Box */
.highlight-box {
    background: var(--light-pink);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

/* Info List */
.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.info-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Popular Customs */
.popular-customs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.custom-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.custom-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.custom-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.custom-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: var(--beige-color);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.response-time {
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Shipping Options */
.shipping-options {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.shipping-option {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.shipping-option h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Timeline */
.timeline-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* Info Box */
.info-box {
    background: var(--white);
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.info-box p strong {
    color: var(--primary-color);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: var(--light-pink);
    padding: 1.5rem;
    border-radius: 10px;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.faq-item p {
    margin-bottom: 0;
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Policy Box */
.policy-box {
    background: var(--light-pink);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1rem;
}

/* Warning Box */
.warning-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.warning-box p em {
    font-weight: 600;
    color: var(--text-dark);
}

/* Exchange Info */
.exchange-info {
    background: var(--beige-color);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1rem;
}

/* Shipping Info */
.shipping-info {
    display: grid;
    gap: 2rem;
    margin-top: 1.5rem;
}

.shipping-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Note */
.note {
    background: var(--light-pink);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.note p {
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-grid,
    .popular-customs,
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.payment-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.payment-card h3 {
    color: var(--text-dark);
    margin: 1rem 0;
}

.payment-card .info-list {
    text-align: left;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.security-item {
    background: var(--light-pink);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.security-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.security-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.security-item p {
    margin: 0;
    font-size: 0.9rem;
}
