/* Memberships Page Styles */
.memberships-page {
    background: linear-gradient(180deg, #1a3164 0%, #0f1f3d 100%);
    min-height: 100vh;
    padding: 60px 20px 80px;
    position: relative;
    overflow: hidden;
}
.memberships-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}
.shape-membership {
    position: absolute;
    opacity: 0.05;
    animation: floatShape 20s infinite ease-in-out;
}
.shape-membership:nth-child(1) {
    top: 10%;
    left: 5%;
}