/* Styling for Ushine Batik */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fcf9f5;
    /* Soft cream background for a batik feel */
    color: #3d3d3d;
    line-height: 1.7;
}

.policy-wrapper {
    padding: 50px 15px;
}

.policy-container {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

/* Header Section */
.policy-header {
    text-align: center;
    margin-bottom: 50px;
}

.brand-name {
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: #a3895d;
    /* Gold/Bronze tone common in Batik branding */
    font-weight: 500;
    margin-bottom: 10px;
}

.policy-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.policy-header p {
    color: #777;
    max-width: 550px;
    margin: 0 auto;
}

/* Policy Content Sections */
.policy-section {
    display: flex;
    margin-bottom: 40px;
    border-left: 1px solid #eee;
    padding-left: 25px;
    position: relative;
}

.section-icon {
    position: absolute;
    left: -15px;
    background: #fcf9f5;
    padding: 5px;
    font-weight: 600;
    color: #a3895d;
    font-size: 0.8rem;
}

.section-content h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-content ul {
    list-style: none;
    margin-top: 10px;
}

.section-content ul li::before {
    content: "•";
    color: #a3895d;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.section-content li {
    margin-bottom: 5px;
    color: #555;
}

/* Footer Section */
.policy-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.contact-links {
    margin: 15px 0 30px;
}

.contact-links a {
    color: #a3895d;
    text-decoration: none;
    font-weight: 500;
}

.shop-btn {
    display: inline-block;
    background-color: #1a1a1a;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background-color: #a3895d;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .policy-container {
        padding: 30px 20px;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding-left: 15px;
    }
}
