.feature-number {
    width: 36px;
    height: 36px;
    background-color: #006D77;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 12px;
}

.title-container {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.card-title {
    margin: 0;
}

.card {
    background-color: white;
    border: none;
    transition: transform 0.2s;
    max-width: 600px;
    margin: 0;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 1.5rem;
}

.card-text {
    margin-bottom: 1rem;
    line-height: 1.4;
}

.btn-primary {
    background-color: #006D77;
    border-color: #006D77;
}

.btn-primary:hover {
    background-color: #005c64;
    border-color: #005c64;
}

.btn-secondary {
    background-color: #83C5BE;
    border-color: #83C5BE;
}

.row {
    max-width: none;
    margin: 0;
}

.content {
    padding: 0 1.5rem;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .card {
        max-width: 100%; /* Allow cards to take full width on mobile */
    }
    
    .card-body {
        padding: 1rem; /* Slightly reduce padding on mobile */
    }
    
    .content {
        padding: 0 1rem; /* Reduce side padding on mobile */
    }
    
    .feature-number {
        width: 32px; /* Slightly smaller feature numbers on mobile */
        height: 32px;
        font-size: 1rem;
    }
    
    .card-title {
        font-size: 1.1rem; /* Slightly smaller title on mobile */
    }
    
    .card-text {
        font-size: 0.95rem; /* Slightly smaller text on mobile */
    }
}

/* For very small screens */
@media (max-width: 375px) {
    .card-body {
        padding: 0.875rem; /* Further reduce padding on very small screens */
    }
    
    .feature-number {
        width: 28px; /* Even smaller feature numbers on very small screens */
        height: 28px;
        margin-right: 8px;
    }
} 