.bg-primary-soft { 
    background-color: #b6f5ff;
}
.btn-primary {
    background-color: #4859d6;
    border-color: #ffffff;
}
.btn-primary:hover {
    background-color:#5024a3; border-color: #ffffff; 
}

.timeline { 
    position: relative; 
    padding-left: 30px; 
}
.timeline::before { 
    content: ''; 
    position: absolute; 
    left: 0; 
    top: 0; 
    bottom: 0; 
    width: 2px; 
    background: #2980B9; 
}
.timeline-item { 
    position: relative; 
    margin-bottom: 30px; 
}
.timeline-item::before { 
    content: ''; 
    position: absolute; 
    left: -36px; 
    top: 0; 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    background: #2980B9; 
}
.founder-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}
.privacy-popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
}
.privacy-popup-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    overflow-y: auto;
}
.privacy-popup-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.privacy-popup-close:hover,
.privacy-popup-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
