body {
    font-family: 'Kumbh Sans', Arial, sans-serif;
    background-color: #f7f8fa;
    color: #212529;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* Sheet container */
.sheet {
    padding: 48px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 48px;
}

.logo-container {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
}

.announcement-banner {
    background-color: #5658DD;
    /* Blue background */
    color: white;
    text-align: center;
    padding: 40px 20px;
    /* Increased height */
    font-size: 20px;
    /* Larger font */
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.announcement-banner span {
    font-style: italic;
    color: #ffdd57;
    /* Highlighted text in yellow */
}

.pricing-container {
    padding: 1rem 1rem;
    margin: 0 auto;
    max-width: 1280px;
}

.pricing-header {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    color: #065f46;
    background-color: #ccfbf1;
    text-transform: uppercase;
    border-radius: 9999px;
}

.pricing-title {
    font-family: sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
    position: relative;
}

.background-svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 128px;
    display: none;
}

.title-highlight {
    position: relative;
    display: inline-block;
}

.highlight-text {
    position: relative;
}

.pricing-description {
    font-size: 1rem;
    color: #4b5563;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-content {
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.card-price span {
    font-size: 1rem;
    color: #4b5563;
}

.card-features p {
    color: #4b5563;
}

.card-button {
    display: inline-block;
    width: 100%;
    padding: 0.75rem;
    margin-top: 1.5rem;
    background-color: #1f2937;
    color: #ffffff;
    text-align: center;
    border-radius: 0.5rem;
    text-decoration: none;
}

.card-button:hover {
    background-color: #111827;
    color: white;
}

.card-footer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
}

.popular {
    border-color: #7c3aed;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: #7c3aed;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 9999px;
    text-transform: uppercase;
}

.popular-button {
    background-color: #7c3aed;
}

.popular-button:hover {
    background-color: #5b21b6;
}