/* Custom styles for the landing page */
.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    margin-bottom: 15px;
    color: #000;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-description {
    color: #6c757d;
    font-size: 0.95rem;
}

.section-title {
    font-weight: 800;
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.vitals-section {
    background-color: #000;
    color: #fff;
    padding: 5rem 0;
    border-radius: 0;
}

.btn-hero-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background-color: #fff;
    color: #000;
}

.user-type-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.user-type-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.user-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.user-type-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.user-type-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.user-type-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.pricing-section {
    padding: 5rem 0;
    background-color: #fff;
}

.pricing-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pricing-header {
    background-color: #000;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
}

.pricing-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li:before {
    content: '✓';
    color: #000;
    position: absolute;
    left: 0;
}

.pricing-cta {
    display: block;
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.pricing-cta:hover {
    background-color: #333;
    color: #fff;
}