.angie-membership-packages-de8976ee {
    padding: 2rem 0;
    text-align: center;
    font-family: inherit;
}
.angie-packages-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2d2a26;
}
.angie-packages-subtitle {
    color: #6b6560;
    margin-bottom: 3rem;
}
.angie-packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.angie-package-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(45,42,38,0.08);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    box-sizing: border-box;
}
.angie-package-card.angie-premium {
    background: linear-gradient(135deg, #2d2a26 0%, #4a4440 100%);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(212,165,165,0.25);
}
.angie-package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}
.angie-package-card.angie-premium h3 {
    color: #fff;
}
.angie-package-card h4 {
    font-size: 2.5rem;
    color: #d4a5a5;
    margin: 0;
}
.angie-period {
    color: #9b8f8a;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
}
.angie-package-card hr {
    border: 0;
    border-top: 1px solid #f0ebe4;
    margin: 1.5rem 0;
}
.angie-package-card.angie-premium hr {
    border-top-color: #5a5450;
}
.angie-package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}
.angie-package-card ul li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}
.angie-package-card.angie-premium ul li {
    color: #f5f5f5;
}
.angie-btn {
    display: inline-block;
    background: #d4a5a5;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: background 0.3s;
}
.angie-btn:hover {
    background: #c39292;
    color: #fff;
}
.angie-package-card.angie-premium .angie-btn {
    background: #d4a5a5;
    color: #2d2a26;
}
.angie-package-card.angie-premium .angie-btn:hover {
    background: #fff;
}
.angie-badge {
    background: #d4a5a5;
    color: #2d2a26;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.1em;
}
@media (max-width: 768px) {
    .angie-package-card.angie-premium {
        transform: scale(1);
    }
}