/* CSS for Static Pages (Privacy, Terms, Returns, Shipping) */
.static-page-header {
    background: linear-gradient(135deg, #fff7cc, #fffde7);
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px dashed #ffe066;
}

.static-page-header h1 {
    font-family: 'Fredoka One', 'Bubblegum Sans', cursive, sans-serif;
    color: #ff6b6b;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.static-page-header p {
    color: #666;
    font-size: 1.1rem;
}

.static-content-section {
    padding: 50px 0;
    background-color: #fffdf5;
}

.static-content-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #ffe066;
}

.static-content-box h2 {
    color: #4ecdc4;
    font-family: 'Fredoka One', cursive, sans-serif;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #e9ecef;
}

.static-content-box h2:first-child {
    margin-top: 0;
}

.static-content-box h3 {
    color: #ff9f43;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.static-content-box p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.static-content-box ul {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
}

.static-content-box li {
    margin-bottom: 10px;
}

.static-page-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #fff;
    color: #ff6b6b;
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

@media (max-width: 768px) {
    .static-content-box {
        padding: 20px;
    }

    .static-page-header {
        padding: 40px 0;
    }

    .static-page-header h1 {
        font-size: 2rem;
    }
}