.elementor-12229 .elementor-element.elementor-element-e6c6285{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d6b183a *//* General Styling */
.privacy-policy {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: 'Arial', sans-serif;
    animation: fadeIn 1s ease-in-out;
}

/* Title Styling */
.title {
    text-align: center;
    font-size: 2.5rem;
    color: #880000;
    margin-bottom: 20px;
    position: relative;
    animation: slideInDown 1s ease-in-out;
}

.title i {
    margin-right: 10px;
}

.title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #880000;
    display: block;
    margin: 10px auto 0;
    animation: underlineGrow 1s ease-in-out;
}

/* Update Date */
.update-date {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

/* Policy Sections */
.policy-item {
    padding: 15px;
    margin-bottom: 15px;
    border-left: 5px solid #880000;
    background: #f9f9f9;
    border-radius: 5px;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
}

.policy-item:nth-child(odd) {
    animation-delay: 0.3s;
}
.policy-item:nth-child(even) {
    animation-delay: 0.6s;
}

.policy-item h3 {
    font-size: 1.6rem;
    color: #880000;
    margin-bottom: 5px;
    transition: transform 0.3s ease-in-out;
}

.policy-item h3 i {
    margin-right: 10px;
}

.policy-item p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

/* Footer */
.policy-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
    color: #555;
}

.policy-footer a {
    color: #880000;
    text-decoration: none;
    font-weight: bold;
}

.policy-footer a:hover {
    text-decoration: underline;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineGrow {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}/* End custom CSS */