.pass__comparison {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.pass__comparison-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /*justify-content: center;*/
    gap: 1.25rem;
    width: 100%;
    justify-content: space-between;
}

.comparison__pass-item {
    align-items: flex-start;
    justify-content: stretch;
}

.pass__header {
    color: #1E1E1E;
    text-align: left;
    margin-bottom: 0.5rem;
}

.pass__desc {
    color: #1E1E1E;
}

.pass__annotation {
    color: #1E1E1E;
}

.pass__strong {
    font-weight: 600;
    font-size: 3rem;
}

.pass_hline {
    width: 90%;
    background: black;
    height: 2px;
    opacity: 0.2;
    margin: 1rem 0 1rem 0;
}

.purle_margin {
    margin-bottom: 3rem;
}

.pass__button_purple {
    width: 60%;
    background: linear-gradient(90deg, #C1B9F9 0%, #F0FDFA 100%);
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    margin: 2.5rem auto 2.5rem;
    text-align: center;
    text-decoration: none;
}

.pass__button {
    width: 60%;
    background: linear-gradient(90deg, #A3FFE6 0%, #F0FDFA 100%);
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    margin: 1rem auto 1rem;
    text-align: center;
    text-decoration: none;
}

.pass_link {
    margin: auto;
    text-align: center;
}

.pass__text {
    color: #1E1E1E;
    margin-bottom: 0.5rem;
}

.pass__benefits-container {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.pass__benefits-text {
    color: #1E1E1E;
}

.pass__comparison-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 2rem; /* 32px on mobile */
    font-style: normal;
    font-weight: 600;
    color: #303030;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
    z-index: 1;
    margin-top: 2.5rem;
}

/* Base reset for consistent rendering */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: system-ui, sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 10px 40px 10px 14px;
    cursor: pointer;
    transition: all 0.15s ease;
    outline: none;
    width: 220px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin: 0 auto 2rem;
}

/* Subtle hover effect */
select:hover {
    border-color: #5abddd;
    box-shadow: 0 0 0 3px rgba(90, 189, 221, 0.15);
}

/* Focus state */
select:focus {
    border-color: #8b7cf3;
    box-shadow: 0 0 0 3px rgba(139, 124, 243, 0.25);
}

/* Optional: style the dropdown arrow */
select {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%238b7cf3' height='16' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M4 6l4 4 4-4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

/* Mobile optimization */
@media (max-width: 480px) {
    select {
        width: 100%;
        font-size: 15px;
    }
}
