.faqContainer {
    width: 100%;
    max-width: 1024px;
    margin: 120px auto 0 auto;
    padding: 20px;
    border-radius: 10px;
}

.titleFaq {
    text-align: center;
    font-size: 58px;
    font-weight: bold;
    margin-bottom: 60px;

}

.faqList {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faqItem {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.question {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    color: #000;
    border-radius: 8px;
    transition: all 0.3s ease;

}

.question:hover {
    background-color: #007bff;
    color: #fff;
    transition: all 0.3s ease;
}

.icon {
    font-size: 20px;
}

.answerWrapper {
    overflow: hidden;
}

.answer {
    padding: 10px 15px;
    font-size: 16px;
    background: white;
    color: #333;
    border-top: 1px solid #dddddd62;
}



@media (max-width: 1024px) {
    .faqContainer {
        padding: 0;
        margin-top: 80px;
    }

    .titleFaq {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .question {
        font-size: 16px;
        padding: 12px;
    }

    .answer {
        font-size: 15px;
        padding: 10px 12px;
    }

    .icon {
        font-size: 18px;
    }
}



@media (max-width: 576px) {
    .faqContainer {
        padding: 0;
        margin-top: 60px;
    }

    .titleFaq {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .question {
        font-size: 15px;
        padding: 10px;
    }

    .answer {
        font-size: 14px;
        padding: 8px 10px;
    }

    .icon {
        font-size: 16px;
    }
}


.filterContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.filterContainer h1 {
    font-size: 58px;
    line-height: 1;
    margin-bottom: 20px;
}

.filterContainer p {
    font-size: 21px;
    line-height: 1;
    margin-bottom: 60px;
    max-width: 800px;
    text-align: center;
}

.filters {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 15px;
    margin: 0 auto 60px auto;
    width: 100%;
    max-width: fit-content;
}


.tabs {
    display: flex;
    gap: 10px;
}

.tabs button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f0f0f0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.tabs button:hover,
.tabs button.active {
    background: #000;
    color: #fff;
    transition: all 0.3s ease;
}


.searchInput {
    padding: 10px;
    border: 1px solid #020202;
    border-radius: 20px;
    width: 300px;
    outline: none;
    transition: border 0.3s ease-in-out;
}

.searchInput:focus {
    border: 1px solid #007bff;
}


.tabsContainer {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}



.modeContainer,
.tabsContainer,
.searchContainer {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}
.modes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.modesLabel,
.tabsLabel,
.searchLabel {
    font-size: 14px;
    font-weight: bold;
    color: #00000096;
    margin: 5px 0 0 5px;
}

.modeButton {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f0f0f0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.modeButton:hover,
.modeButton.active {
    background: #000;
    color: #fff;
    transition: all 0.3s ease;
}

.modeButton .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}


.modeButton[data-mode="Օֆլայն"] .dot,
.modeButton[data-mode="Offline"] .dot {
    background: #ff5722;
}

.modeButton[data-mode="Օնլայն"] .dot,
.modeButton[data-mode="Online"] .dot {
    background: #07c500;
}

.modeButton[data-mode="Internship"] .dot,
.modeButton[data-mode="Պրակտիկա"] .dot {
    background: transparent;
    border: 2px solid #007bff;
}

.modeButton[data-mode="Remote"] .dot,
.modeButton[data-mode="Հեռակա"] .dot {
    background: #4caf50;
}

.modeButton[data-mode="Հիբրիդ"] .dot,
.modeButton[data-mode="Hybrid"] .dot {
    background: #ffc107;
}

.modeButton[data-mode="Գրասենյակում"] .dot,
.modeButton[data-mode="On-site"] .dot {
    background: #5236f4;
}

@media (max-width: 1024px) {
    .filterContainer h1 {
        font-size: 42px;
        text-align: center;
    }

    .filterContainer p {
        font-size: 18px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .filters {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .searchContainer {
        width: 100%;
        max-width: 350px;
    }

    .searchInput {
        width: 100%;
        max-width: 100%;
    }

    .tabs,
    .modes {
        flex-wrap: wrap;
        justify-content: center;
    }
}


@media (max-width: 576px) {
    .filterContainer h1 {
        font-size: 32px;
    }

    .filterContainer p {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .filters {
        gap: 20px;
    }

    .tabs button,
    .modeButton {
        font-size: 13px;
        padding: 8px 12px;
        border-radius: 16px;
    }

    .searchContainer {
        width: 100%;
        max-width: 350px;
    }

    .searchInput {
        width: 100%;
        font-size: 14px;
        padding: 8px 12px;
    }

    .modesLabel,
    .tabsLabel,
    .searchLabel {
        font-size: 13px;
        margin-left: 0;
        text-align: left;
        width: 100%;
    }

    .modes,
    .tabs {
        gap: 5px;
        width: 100%;
    }
}


.containerSep {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 60px;
}

.containerSep h1 {
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    text-align: left;
}



@media (max-width: 1250px) and (min-width: 1081px) {
    .containerSep h1 {
        font-size: 36px;
    }
}

@media (max-width: 1080px) and (min-width: 801px) {
    .containerSep h1 {
        font-size: 34px;
    }
}

@media (max-width: 800px) and (min-width: 500px) {
    .containerSep h1 {
        font-size: 28px;
    }

    #absurd {
        width: 77px !important;
        right: 0% !important;
        top: 153px !important;
    }
}

@media (max-width: 500px) {
    .containerSep h1 {
        font-size: 30px;
    }
    .containerSep{
        gap: 40px;
    }

    #absurd {
        width: 77px !important;
        right: 0% !important;
        top: 153px !important;
    }
}




.description {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

.description p {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    text-align: left;
}

.description_tags {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.description_tags .tag {
    background-color: #e0e0e0;
    border-radius: 0.5em;
    padding: 0.5em 0.75em;

    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    text-align: left;
}

@media (max-width: 1250px) and (min-width: 1081px) {
    .description {
        gap: 20px;
    }

    .description p {
        font-size: 24px;
    }

    .description_tags .tag {
        font-size: 16px;
    }
}

@media (max-width: 800px) and (min-width: 500px) {
    .description {
        gap: 20px;
    }

    .description p {
        font-size: 20px;
    }

    .description_tags .tag {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .description {
        gap: 20px;
    }

    .description p {
        font-size: 24px;
    }

    .description_tags .tag {
        font-size: 16px;
    }
}



.info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.info .price,
.info .duration {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;

    padding: 3%;
    border: none;
    border-radius: 28px;
    background-color: #202020;
    color: white;

    width: 45%;
    position: relative;
}

.price_svg,
.duration_svg {
    position: absolute;
    top: 30px;
    right: 30px;

    max-height: 40px;
    max-width: 40px;
}

.price_svg svg,
.duration_svg svg {
    width: 100%;
    height: 100%;
}

.info .price p,
.info .duration p {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    text-align: left;
}

.info .price .price_text,
.info .duration .duration_text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.info .price .price_text p,
.info .duration .duration_text p {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    text-align: left;
}


.info .price span,
.info .duration span {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    text-align: left;

    color: #949494;
}

@media (max-width: 1250px) and (min-width: 1081px) {
    .info .price p, .info .duration p{
        font-size: 22px;
    }

    .price_svg, .duration_svg {
        max-height: 30px;
        max-width: 30px;
    }

    .info .price .price_text p, .info .duration .duration_text p{
        font-size: 16px;
    }

    .info .price span, .info .duration span{
        font-size: 14px;
    }
}

@media (max-width: 1080px) and (min-width: 801px) {

    .info {
        flex-direction: column;
        gap: 30px;
    }

    .info .price, .info .duration{
        width: 100%;
        padding: 5%;
    }

    .info .price p, .info .duration p{
        font-size: 22px;
    }

    .price_svg, .duration_svg {
        max-height: 30px;
        max-width: 30px;
    }

    .info .price .price_text p, .info .duration .duration_text p{
        font-size: 16px;
    }

    .info .price span, .info .duration span{
        font-size: 14px;
    }
}

@media (max-width: 800px) and (min-width: 500px) {
    .info {
        flex-direction: column;
        gap: 30px;
    }

    .info .price, .info .duration{
        width: 100%;
        padding: 7%;
    }

    .info .price p, .info .duration p{
        font-size: 22px;
    }

    .price_svg, .duration_svg {
        max-height: 30px;
        max-width: 30px;
    }

    .info .price .price_text p, .info .duration .duration_text p{
        font-size: 16px;
    }

    .info .price span, .info .duration span{
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .info {
        flex-direction: column;
        gap: 30px;
    }

    .info .price .price_text, .info .duration .duration_text {
        flex-wrap: wrap;
    }

    .info .price, .info .duration{
        width: 100%;
        padding: 10%;
    }

    .info .price p, .info .duration p{
        font-size: 22px;
    }

    .price_svg, .duration_svg {
        max-height: 30px;
        max-width: 30px;
    }

    .info .price .price_text p, .info .duration .duration_text p{
        font-size: 14px;
    }

    .info .price span, .info .duration span{
        font-size: 14px;
    }
}



.brief {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

.brief h3 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    text-align: left;
}

.brief p {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
}

.brief ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    list-style-type: none;
}

.brief ul li {
    padding: 20px;
    background-color: #f3f3f3;
    border-radius: 0.5em;
    border: none;

    width: 30%;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    height: 80px;
}

.brief ul li svg {
    max-width: 40px;
    max-height: 40px;
}

.brief ul li strong {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    text-align: left;
}

.brief ul li {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
}

.brief ul li svg{
    width: 40px;
    height: 40px;
}

@media (max-width: 1250px) and (min-width: 1081px) {
    .brief p{
        font-size: 16px;
    }

    .brief ul li{
        width: 47%;
    }
}

@media (max-width: 1080px) and (min-width: 801px) {
    .brief p{
        font-size: 16px;
    }

    .brief ul li{
        width: 47%;
    }

    .brief ul li strong{
        font-size: 14px;
    }
}

@media (max-width: 800px) and (min-width: 500px) {
    .brief p{
        font-size: 16px;
    }

    .brief ul li{
        width: 47%;
    }

    .brief ul li strong{
        font-size: 14px;
    }
}

@media (max-width: 500px) {

    .brief ul{
        flex-direction: column;
        width: 100%;
    }

    .brief p{
        font-size: 16px;
    }

    .brief ul li{
        width: 100%;
    }

    .brief ul li strong{
        font-size: 14px;
    }
}



.heroContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 40%;
}

.heroImage {
    display: block;
    width: 50%;
}

.heroImage {
    display: block;
    width: 50%;
    pointer-events: none;
    user-select: none;
}



.heroImage img {
    display: block;
    object-fit: contain;
    width: 100%;
    height: auto;
    border: none;
    border-radius: 15px;
}

.heroTitle {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.highlight {
    color: #007bff;
}

.heroSubtitle {
    font-size: 18px;
    max-width: 80%;
}

.ctaButtons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.btnPrimary,
.btnSecondary {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btnPrimary {
    background: #007bff;
    color: #fff;
}

.btnPrimary:hover {
    background: #0056b3;
}

.btnSecondary {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    cursor: pointer;
}

.btnSecondary:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btnPrimary {
    border: 2px solid #007bff;
}

.btnSecondary:hover {
    background: rgba(0, 123, 255, 0.2);
}

@media (max-width: 1024px) {
    .heroContainer {
        flex-direction: column;
        align-items: center;
        text-align: left;
        margin-bottom: 0;
    }

    .hero,
    .heroImage {
        width: 100%;
    }

    .heroTitle {
        font-size: 42px;
        margin-bottom: 20px;
        max-width: 60%;
    }

    .heroSubtitle {
        font-size: 18px;
        max-width: 50%;
    }

    .ctaButtons {
        margin: 40px 0;
        display: flex;
        gap: 15px;
    }
}

@media (max-width: 576px) {

    .heroContainer {
        margin-bottom: 0;
    }

    .heroTitle {
        font-size: 32px;
        max-width: 100%;
    }

    .heroSubtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .btnPrimary,
    .btnSecondary {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .ctaButtons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 20px 0;
    }

    .btnPrimary,
    .btnSecondary {
        padding: 8px 10px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
}




.container {
    background-color: #111;
    border-radius: 20px;
    margin-top: 120px;
    padding: 60px 40px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.title {
    color: #fff;
    font-size: 58px;
    font-weight: 500;
    margin-bottom: 40px;
}


.form {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}


.input {
    background-color: transparent;
    border: 1px solid #555;
    padding: 12px 15px;
    border-radius: 5px;
    color: #f7f7f7 !important;
    font-size: 16px;
    width: 250px !important;
    height: 50px;
    text-align: left;
}

.input::placeholder {
    color: #afafaf;
}

.input:focus {
    border-color: #888;
    outline: none;
    color: #fff;
}


.buttonContact {
    display: inline-block;
    padding: 12px 20px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 1px solid #828282;
    border-radius: 10px;
    font-size: 21px;
    line-height: 1;
    transition: background 0.3s ease;
    cursor: pointer;
}

.buttonContact:hover {
    background-color: #666;
}


.checkboxGroup {
    margin-top: 35px;
    color: #bbb;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    cursor: pointer;
}


.checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #888;
    border-radius: 4px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}


.checkbox:checked {
    background-color: #444;
    border-color: #fff;
    position: relative;
}


.checkbox:checked::after {
    content: "✔";
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 1px;
    left: 4px;
}


.checkbox:hover {
    border-color: #fff;
}


.link {
    color: #fff;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}


.error {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    text-align: left;
}


@media (max-width: 1024px) {
    .container {
        padding: 40px 30px;
    }

    .title {
        font-size: 42px;
    }

    .form {
        gap: 10px;
        flex-direction: column;
    }
    .form div {
        width: 100%;
    }
    .input {
        width: 100% !important;
    }

    .buttonContact {
        font-size: 18px;
        padding: 10px 16px;
        width: 100%;
    }
}


@media (max-width: 610px) {
    .container {
        padding: 30px 20px;
        margin-top: 60px;
    }

    .title {
        font-size: 32px;
    }

    .form {
        flex-direction: column;
        gap: 8px;
    }

    .form div {
        width: 100%;
    }

    .input {
        width: 100% !important;
        max-width: 100%;
    }

    .buttonContact {
        width: 100%;
        font-size: 16px;
        padding: 10px;
    }

    .checkboxGroup {
        gap: 8px;
        font-size: 14px;
    }

    .checkboxGroup label {
        text-align: left;
    }

    .checkboxGroup input {
        min-width: 20px;
        width: 20px;
        height: 20px;
    }
}



input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: black;
    transition: all 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus {
    border: 1px solid #007bff;
}


.error {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    text-align: left;
}


@media (max-width: 1024px) {
    input[type="text"],
    input[type="email"] {
        font-size: 16px;
    }
}


@media (max-width: 576px) {
    input[type="text"],
    input[type="email"] {
        font-size: 13px;
        padding: 8px;
    }
}



