/* Device image section */
.feature-image {
    width: 100%;
    position: relative;
    margin: 20px 0;
    min-height: 300px;
}

.device-image_f20 {
    width: 72%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.popup-image_f20 {
    width: 100%;
    height: auto;
    max-height: 270px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.popup-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
}

.popup-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

/* Hotspot positions for mobile first */
#hotspot6 {
    top: 29%;
    right: 45%;
}

#hotspot7 {
    top: 25%;
    left: 10%;
}

#hotspot8 {
    top: 20%;
    right: 36%;
}

#hotspot9 {
    top: 57%;
    left: 17%;
}

#hotspot10 {
    top: 40%;
    left: 34%;
}

/* Popup positions for mobile first */
#popup6 {
    top: 32%;
    right: 22%;
}

#popup7 {
    top: 30.5%;
    left: 5%;
}

#popup8 {
    top: 24%;
    right: 11%;
}

#popup9 {
    top: 60%;
    left: 5%;
}

#popup10 {
    top: 43%;
    left: 12%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section titles */
h2.section-title {
    font-size: clamp(22px, 4vw, 28px);
    color: #444;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#obligation-section {
    background-color: #f7f7f7;
    padding: 30px 0;
}

/* Support section */
.support-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.support-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #187635;
    margin: 0 auto 15px;
}

.card-icon img {
    width: 30px;
    height: 30px;
}

.card-title {
    font-size: clamp(16px, 3vw, 20px);
    color: #187635;
    margin-bottom: 10px;
    text-align: center;
}

.support-card p {
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}

.btn {
    display: block;
    width: fit-content;
    background-color: #187635;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    margin: 30px auto 0;
    text-align: center;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2a8c48;
}

/* Desktop styles */
@media (min-width: 1224px) {
    .feature-section {
        flex-direction: row;
        padding: 40px 20px;
    }

    .feature-content {
        flex-direction: row;
        justify-content: space-between;
        width: 58%;
        padding: 20px;
        padding-top: 0;
    }

    .feature-list, .right-features {
        width: 48%;
    }

    .feature-image {
        width: 50%;
        margin: 0;
        min-height: auto;
    }

    /* Desktop hotspot positions */
    #hotspot6 {
        top: 28%;
        right: 46%;
    }

    #hotspot7 {
        top: 27%;
        left: 20%;
    }

    #hotspot8 {
        top: 20.5%;
        right: 36%;
    }

    #hotspot9 {
        top: 56%;
        left: 23%;
    }

    #hotspot10 {
        top: 40%;
        left: 39%;
    }

    /* Desktop popup positions */
    #popup6 {
        top: 33.5%;
        right: 26%;
    }

    #popup7 {
        top: 39.5%;
        left: 4%;
    }

    #popup8 {
        top: 18%;
        right: 31%;
    }

    #popup9 {
        top: 52.5%;
        left: 31%;
    }

    #popup10 {
        top: 46.5%;
        left: 43%;
    }

    .support-cards {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
    }
}

@media (min-width: 981px) {
    /* Desktop hotspot positions */
    #hotspot6 {
        top: 29.5%;
        right: 46%;
    }

    #hotspot7 {
        top: 37%;
        left: 21%;
    }

    #hotspot8 {
        top: 15%;
        right: 51%;
    }

    #hotspot9 {
        top: 49%;
        left: 46%;
    }

    #hotspot10 {
        top: 43%;
        left: 62%;
    }

    /* Desktop popup positions */
    #popup6 {
        top: 33%;
        right: 26%;
    }

    #popup7 {
        top: 40.5%;
        left: 4%;
    }

    #popup8 {
        top: 18.5%;
        right: 32%;
    }

    #popup9 {
        top: 52.5%;
        left: 25%;
    }

    #popup10 {
        top: 46.5%;
        left: 42%;
    }

}


/* Tablet styles */
@media (min-width: 768px) and (max-width: 1223px) {
    .feature-content {
        padding: 20px;
        padding-top: 0;
        flex-direction: row;
        order: 2;
    }

    .device-image_f20 {
        width: 74%; /* скасовує обмеження max-width */
        max-height: none; /* скасовує обмеження висоти */
        max-width: 430px;
    }

    /* Tablet hotspot positions */
    #hotspot6 {
        top: 29%;
        right: 48%;
    }

    #hotspot7 {
        top: 36%;
        left: 34.5%;
    }

    #hotspot8 {
        top: 16%;
        right: 51%;
    }

    #hotspot9 {
        top: 49.5%;
        left: 48%;
    }

    #hotspot10 {
        top: 43%;
        left: 57%;
    }

    /* Tablet popup positions */
    #popup6 {
        top: 32%;
        right: 38%;
    }

    #popup7 {
        top: 39%;
        left: 24%;
    }

    #popup8 {
        top: 19%;
        right: 41%;
    }

    #popup9 {
        top: 52.5%;
        left: 38%;
    }

    #popup10 {
        top: 46%;
        left: 47%;
    }

    .support-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Додаткові контрольні точки для планшетів */
@media (min-width: 768px) and (max-width: 900px) {
    #hotspot6 {
        top: 29%;
        right: 47%;
    }

    #hotspot7 {
        top: 36%;
        left: 28%;
    }

    #hotspot8 {
        top: 16%;
        right: 51%;
    }

    #hotspot9 {
        top: 49%;
        left: 46%;
    }

    #hotspot10 {
        top: 43%;
        left: 61%;
    }

    #popup6 {
        top: 32%;
        right: 34%;
    }

    #popup7 {
        top: 39%;
        left: 14%;
    }

    #popup8 {
        top: 19%;
        right: 36%;
    }

    #popup9 {
        top: 52%;
        left: 31%;
    }

    #popup10 {
        top: 46%;
        left: 46%;
    }
}

@media (min-width: 900px) and (max-width: 1000px) {
    #hotspot6 {
        top: 29.5%;
        right: 47.5%;
    }

    #hotspot7 {
        top: 36%;
        left: 31%;
    }

    #hotspot8 {
        top: 16%;
        right: 51%;
    }

    #hotspot9 {
        top: 49.5%;
        left: 48%;
    }

    #hotspot10 {
        top: 43.5%;
        left: 59%;
    }

    #popup6 {
        top: 32.5%;
        right: 35%;
    }

    #popup7 {
        top: 39%;
        left: 19%;
    }

    #popup8 {
        top: 19%;
        right: 38%;
    }

    #popup9 {
        top: 52.5%;
        left: 36%;;
    }

    #popup10 {
        top: 46.5%;
        left: 47%;
    }
}

@media (min-width: 1000px) and (max-width: 1099px) {
    #hotspot6 {
        top: 29.5%;
        right: 47.5%;
    }

    #hotspot7 {
        top: 36%;
        left: 33%;
    }

    #hotspot8 {
        top: 16%;
        right: 52%;
    }

    #hotspot9 {
        top: 49.5%;
        left: 47.5%;
    }

    #hotspot10 {
        top: 43%;
        left: 58%;
    }

    #popup6 {
        top: 32.5%;
        right: 36%;
    }

    #popup7 {
        top: 39%;
        left: 22%;
    }

    #popup8 {
        top: 19%;
        right: 41%;
    }

    #popup9 {
        top: 52.5%;
        left: 37%;
    }

    #popup10 {
        top: 46%;
        left: 47%;
    }
}


/* Mobile and small tablet styles */
@media (max-width: 767.98px) {
    .support-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-content {
        padding: 0;
        order: 1;
    }

    .device-image_f20 {
        width: 64%;
    }

    #hotspot6 {
        top: 29%;
        right: 47%;
    }

    #hotspot7 {
        top: 36%;
        left: 24%;
    }

    #hotspot8 {
        top: 15.5%;
        right: 52%;
    }

    #hotspot9 {
        top: 49%;
        left: 46%;
    }

    #hotspot10 {
        top: 43%;
        left: 63%;
    }

    #popup6 {
        top: 32%;
        right: 31%;
    }

    #popup7 {
        top: 39%;
        left: 9%;
    }

    #popup8 {
        top: 18.5%;
        right: 33%;
    }

    #popup9 {
        top: 51.5%;
        left: 30%;
    }

    #popup10 {
        top: 46%;
        left: 46%;
    }
}

@media (max-width: 620px) {

    .device-image_f20 {
        width: 85%;
    }

    #hotspot6 {
        top: 29%;
        right: 45%;
    }

    #hotspot7 {
        top: 36%;
        left: 16%;
    }

    #hotspot8 {
        top: 15.5%;
        right: 52%;
    }

    #hotspot9 {
        top: 49%;
        left: 44%;
    }

    #hotspot10 {
        top: 43%;
        left: 67%;
    }

    #popup6 {
        top: 31.5%;
        right: 26%;
    }

    #popup7 {
        top: 38.5%;
        left: 0%;
    }

    #popup8 {
        top: 19%;
        right: 27%;
    }

    #popup9 {
        top: 51.5%;
        left: 23%;
    }

    #popup10 {
        top: 45.5%;
        left: 48%;
    }
}

@media (max-width: 580px) {

    #hotspot6 {
        top: 29%;
        right: 45%;
    }

    #hotspot7 {
        top: 36%;
        left: 16%;
    }

    #hotspot8 {
        top: 15.5%;
        right: 52%;
    }

    #hotspot9 {
        top: 49%;
        left: 44%;
    }

    #hotspot10 {
        top: 43%;
        left: 67%;
    }

    #popup6 {
        top: 32.5%;
        right: 21%;
    }

    #popup7 {
        top: 39.5%;
        left: 0%;
    }

    #popup8 {
        top: 19%;
        right: 29%;
    }

    #popup9 {
        top: 52.5%;
        left: 23%;
    }

    #popup10 {
        top: 45.5%;
        left: 41%;
    }
}

@media (max-width: 480px) {

    .device-image_f20 {
        width: 90%;
    }

    #hotspot6 {
        top: 29%;
        right: 44%;
    }

    #hotspot7 {
        top: 36%;
        left: 13%;
    }

    #hotspot8 {
        top: 15.5%;
        right: 50%;
    }

    #hotspot9 {
        top: 49%;
        left: 46%;
    }

    #hotspot10 {
        top: 43%;
        left: 66%;
    }

    #popup6 {
        top: 33%;
        right: 18%;
    }

    #popup7 {
        top: 39.5%;
        left: 0%;
    }

    #popup8 {
        top: 19.5%;
        right: 18%;
    }

    #popup9 {
        top: 53%;
        left: 10%;
    }

    #popup10 {
        top: 46%;
        left: 34%;
    }
}