.feature-section {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 50px;
    margin: 40px 0;
    position: relative;
    overflow: visible;
}

.feature-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    background: 
        linear-gradient(rgba(22, 24, 39, 0.35), rgba(22, 24, 39, 0.45)),
        url("/images/background1.jpg");
    background-size: cover;
    background-position: top;
    background-position-y: 120%;
    background-blend-mode: darken;
    background-attachment: fixed;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(64, 156, 255, 0.2);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 0.5px 12px rgba(0, 111, 180, 0.4);
    position: relative;
    overflow: visible;
    height: 300px;
    transition: all .4s ease;
}
.feature-container:hover {
    background-position-y: 160%;
    box-shadow: 0 4px 15px rgba(64, 156, 255, 0.085)
}

.feature-content {
    width: 65%;
    text-align: left;
}

.feature-content h2 {
    color: #e6f1ff;
    font-size: 38px;
    margin-bottom: 20px;
    text-align: left;
}

.feature-content p {
    color: #e0ebff;
    line-height: 1;
    margin-bottom: 15px;
    font-size: 22px;
    text-align: left;
    width: 750px;
}

.feature-button {
    display: inline-block;
    background: #fffffff3;
    color: #189bc7;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 10px;
}
.feature-button:hover {
    background: #189bc7;
    color: #fff;
}

.feature-right {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
}

.feature-dots {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
    padding: 0 30px;
    box-sizing: border-box;
}

.feature-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}