/* Policy Page Styles */

/* Override hero color for policy page */
.policy-hero {
    position: relative;
    background: linear-gradient(135deg, #6B4423 0%, #8B5A3C 50%, #A67C52 100%);
    padding: 8rem 0 6rem;
    overflow: hidden;
    color: white;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.policy-hero .container {
    position: relative;
    z-index: 2;
}

.policy-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 1 !important;
}

.policy-hero p {
    font-size: 1.3rem;
    opacity: 0.95 !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Policy sections */
.policy-section {
    margin-bottom: 30px;
}

.policy-section h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-list {
    list-style: none;
    padding-left: 0;
}

.policy-list li {
    padding: 8px 0;
}

/* Payment method cards */
.payment-method-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef !important;
}

.payment-method-card:hover {
    box-shadow: 0 4px 12px rgba(107, 68, 35, 0.15);
    transform: translateY(-2px);
    border-color: #6B4423 !important;
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6B4423 0%, #8B5A3C 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
