/* Գոյություն ունեցող ոճեր */
body {
     
    margin: 0;
    padding: 0;
}

/* Նոր ոճեր քարտերի համար */
.section-content {
    display: flex;
    margin: 0 64px 32px;
    background-color: #ffffff;
    border: 1px solid #00DFAA;
    border-radius: 10px;
    overflow: hidden;
}

.image-container, .text-container {
    flex: 1;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-container {
    padding: 52px 42px 50px 50px;
    position: relative; /* Ավելացված */
}

/* Ոճեր զույգ և կենտ քարտերի համար */
.left-image .image-container {
    order: 1;
}

.left-image .text-container {
    order: 2;
}

.right-image .image-container {
    order: 2;
}

.right-image .text-container {
    order: 1;
}

/* Տեքստի ոճավորում */
.text-container h2 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-container p {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
}

.text-container .see-more {
    position: absolute; /* Փոփոխված */
    bottom: 50px; /* Փոփոխված */
    right: 42px; /* Փոփոխված */
    color: #194798;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

/* Էջավորման ոճեր */
.navigation-controls {
    text-align: center;
    margin: 48px 0 54px 0;
}

.nav-button {
    color: #333;
    padding: 8px 12px;
    text-decoration: none;
    cursor: pointer;
    background-color: white;
    border: none;
}

.nav-button.active {
    background-color: black;
    color: white;
    border-radius: 5px;
}

/* Մեդիա հարցումներ */
@media screen and (max-width: 1200px) {
    .section-content {
        margin: 0 32px 32px;
    }

    .text-container {
        padding: 40px 60px 40px 40px;
    }

    .text-container h2 {
        font-size: 40px;
    }

    .text-container p {
        font-size: 16px;
    }

    .text-container .see-more {
        right: 60px; /* Հարմարեցված */
        bottom: 40px; /* Հարմարեցված */
    }
}

@media screen and (max-width: 992px) {
    .section-content {
        flex-direction: column;
        margin: 0 16px 32px;
    }

    .text-container {
        padding: 32px;
    }

    .image-container {
        height: 300px;
    }

    .text-container h2 {
        font-size: 36px;
    }

    .left-image .image-container,
    .right-image .image-container,
    .left-image .text-container,
    .right-image .text-container {
        order: unset;
    }

    .text-container .see-more {
        right: 32px; /* Հարմարեցված */
        bottom: 32px; /* Հարմարեցված */
    }
}

@media screen and (max-width: 768px) {
    .text-container h2 {
        font-size: 32px;
    }

    .text-container p {
        font-size: 14px;
    }

    .navigation-controls {
        margin: 32px 0 40px 0;
    }
}

@media screen and (max-width: 480px) {
    .section-content {
        margin: 0 8px 32px;
    }

    .text-container {
        padding: 24px;
    }

    .text-container h2 {
        font-size: 28px;
    }

    .image-container {
        height: 200px;
    }

    .text-container .see-more {
        right: 24px; /* Հարմարեցված */
        bottom: 24px; /* Հարմարեցված */
    }
}

