/* Store Policies Styling */
.policy-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.policy-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
}

.policy-title {
    font-size: 32px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 8px;
    text-align: center;
}

.policy-subtitle {
    font-size: 14px;
    color: #888888;
    text-align: center;
    margin-bottom: 40px;
}

.policy-content-block {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f3f4f6;
}

.policy-content-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section-title i {
    color: var(--accent-color, #c89f55);
    font-size: 16px;
}

.policy-text {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-top: 0;
    margin-bottom: 15px;
}

.policy-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 15px;
}

.policy-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

.policy-list li::before {
    content: "•";
    color: var(--accent-color, #c89f55);
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}

.policy-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}

.policy-table th {
    background-color: #f9fafb;
    padding: 12px 16px;
    font-weight: 700;
    color: #111111;
    border-bottom: 1px solid #e5e7eb;
}

.policy-table td {
    padding: 12px 16px;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-note {
    background-color: rgba(200, 159, 85, 0.05);
    border-left: 4px solid var(--accent-color, #c89f55);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.policy-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #1f2937;
    font-weight: 500;
}

@media (max-width: 768px) {
    .policy-card {
        padding: 25px 20px;
    }
    
    .policy-title {
        font-size: 24px;
    }
}
