/* Refund Policy Custom Styles */
.refund-policy {
    background-color: #0a0a0a;
    color: #ffffff;
}

.refund-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.refund-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.refund-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

div p a{
    color: #00ffd4;
}

.refund-section h3 {
    color: #4a90e2;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.refund-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #cccccc;
}

.refund-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.refund-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #cccccc;
    line-height: 1.6;
}

.refund-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #4a90e2;
    font-weight: bold;
    font-size: 18px;
}

.section-header h2 {
    color: #4a90e2;
    text-transform: uppercase;
    font-weight: 700;
}

.section-header p {
    color: #cccccc;
}


.menu {
    list-style: none;
    gap: 15px;
}

.menu li {
    margin: 0;
}

.login, .signup {
    white-space: nowrap;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.login {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.signup {
    background: #4a90e2;
    color: #fff;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #4a90e2;
}

.footer-logo img {
    max-width: 150px;
}

.footer-links-section h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 8px;
}

.footer-links-list a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links-list a:hover {
    color: #4a90e2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .refund-content {
        padding: 20px;
    }
    
    .refund-section h3 {
        font-size: 20px;
    }
}