* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.3;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F5F3EE;
    color: #252824;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 13vh;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 2%;
    padding-right: 2%;
    background-color: #FAF9F6;
    cursor: pointer;
    color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header div {
    display: flex;
}

.h_img {
    width: 14%;
}

.h_img img {
    width: 150px;
    height: auto;
}

.h_div1 {
    width: 40%;
    align-items: center;
    justify-content: space-evenly;
    font-size: 17px;
}

.h_div1 a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.h_div1 a:hover {
    color: #7E0A1F;
}

.h_div2 {
    width: 22%;
    align-items: center;
}

.h_div2 div {
    width: 50%;
    align-items: center;
    justify-content: space-around;
}

.h_div2 svg {
    padding: 5%;
    width: 18%;
    height: 18%;
    justify-content: center;
    background-color: #1C5627;
    border-radius: 8px;
}

.h_div2 a {
    padding-top: 1%;
    color: #000;
    font-weight: bold;
    font-size: 14.5px;
    align-items: center;
    text-decoration: none;
}

.h_div2 a:hover {
    color: #7E0A1F;
}

main {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 17vh 40px 80px;
}

main > section {
    width: 100%;
    margin-bottom: 0;
}

.navigation {
    margin-bottom: 55px;
}

.navigation > div {
    display: flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.navigation span {
    display: flex;
    align-items: center;
}

.navigation svg {
    opacity: 0.45;
}

.navigation a {
    text-decoration: none;
}

.a1 {
    color: #77736D;
    transition: 0.2s ease;
}

.a1:hover {
    color: #1C5627;
}

.a2 {
    color: #1C5627;
}

.text {
    width: 78%;
    margin: 0 auto 65px;
    text-align: center;
}

.text h1 {
    margin: 0 0 20px;
    color: #7E0A1F;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.1;
}

.text p {
    max-width: 780px;
    margin: 0 auto;
    color: #5D625E;
    font-size: 18px;
    line-height: 1.75;
}

main > hr {
    width: 100%;
    height: 1px;
    margin: 0 0 55px;
    border: 0;
    background-color: #D9D5CC;
}

.info {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 25px;
    width: 100%;
}

.card1 {
    width: 100%;
    padding: 30px;
    background-color: #FAF9F6;
    border: 1px solid #E1DDD4;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(28,86,39,0.06);
}

.card1::before {
    content: "ԿԱՊ ՄԵԶ ՀԵՏ";
    display: block;
    margin-bottom: 22px;
    color: #1C5627;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.infoText {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 82px;
    margin: 0 0 14px;
    padding: 18px;
    background-color: #F5F3EE;
    border: 1px solid #E2DED5;
    border-radius: 12px;
    transition: all 0.25s ease;
    cursor: default;
}

.infoText:last-child {
    margin-bottom: 0;
}

.infoText:hover {
    transform: translateY(-3px);
    background-color: #FFFFFF;
    border-color: #C9D5CC;
    box-shadow: 0 8px 18px rgba(28,86,39,0.08);
}

.infoText svg {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    padding: 10px;
    color: #FFFFFF;
    background-color: #1C5627;
    border-radius: 9px;
}

.infoText div {
    width: auto;
    margin-left: 16px;
    color: #294632;
}

.infoText p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.card2 {
    width: 100%;
    padding: 10px;
    background-color: #FAF9F6;
    border: 1px solid #E1DDD4;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(28,86,39,0.06);
}

.card2 iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 445px;
    border: 0;
    border-radius: 11px;
    filter: saturate(0.75);
}

.footer {
    width: 100%;
    background-color: #24332B;
    color: #FAF9F6;
}

.footer-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 60px 40px 45px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 70px;
}

.footer-brand {
    max-width: 380px;
}

.footer-brand img {
    width: 150px;
    height: auto;
    margin-bottom: 22px;
}

.footer-brand p {
    color: rgba(250,249,246,0.75);
    font-size: 15px;
    line-height: 1.7;
}

.footer h3 {
    margin: 0 0 22px;
    color: #FAF9F6;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links a,
.footer-contact a {
    width: fit-content;
    margin-bottom: 12px;
    color: rgba(250,249,246,0.75);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.footer-contact p {
    max-width: 250px;
    margin-top: 8px;
    color: rgba(250,249,246,0.75);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(250,249,246,0.15);
}

.footer-bottom p {
    margin: 0;
    color: rgba(250,249,246,0.55);
    font-size: 12px;
}

@media (max-width: 1200px) {

    header {
        height: 105px;
        padding: 10px 20px;
    }

    .h_img {
        width: 18%;
    }

    .h_img img {
        width: 120px;
        height: auto;
    }

    .h_div1 {
        width: 42%;
        font-size: 15px;
        gap: 15px;
    }

    .h_div2 {
        width: 32%;
    }

    .h_div2 div {
        width: 50%;
    }

    .h_div2 a {
        font-size: 12px;
    }

    .h_div2 svg {
        width: 22px;
        height: 22px;
        padding: 4px;
    }

    main {
        padding-top: 135px;
    }

    .footer-container {
        gap: 45px;
    }
}

@media (max-width: 870px) {

    header {
        position: fixed;
        width: 100%;
        height: auto;
        min-height: 105px;
        padding: 8px 15px;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: 48px 35px;
        align-items: center;
        gap: 3px 10px;
    }

    .h_img {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .h_img img {
        width: 100px;
        height: auto;
    }

    .h_div2 {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    .h_div2 div {
        width: auto;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .h_div2 svg {
        width: 19px;
        height: 19px;
        padding: 3px;
        flex-shrink: 0;
        background-color: #1C5627;
        border-radius: 6px;
    }

    .h_div2 a {
        font-size: 10px;
        white-space: nowrap;
    }

    .h_div1 {
        grid-column: 1 / 3;
        grid-row: 2;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 25px;
        font-size: 13px;
    }

    .h_div1 a {
        white-space: nowrap;
    }

    main {
        width: 100%;
        padding: 145px 25px 60px;
    }

    .navigation {
        margin-bottom: 40px;
    }

    .navigation > div {
        gap: 9px;
        font-size: 14px;
    }

    .text {
        width: 90%;
        margin-bottom: 45px;
    }

    .text h1 {
        font-size: clamp(34px, 6vw, 50px);
    }

    .text p {
        font-size: 17px;
        line-height: 1.7;
    }

    .info {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card1 {
        padding: 25px;
    }

    .card2 {
        min-height: 420px;
    }

    .card2 iframe {
        min-height: 400px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
        padding: 50px 25px 40px;
    }

    .footer-brand {
        max-width: 100%;
        grid-column: 1 / -1;
    }

    .footer-bottom {
        margin: 0 25px;
    }
}

@media (max-width: 600px) {

    header {
        min-height: 100px;
        padding: 7px 10px;
        grid-template-columns: 1fr auto;
        grid-template-rows: 43px 36px;
        gap: 3px 5px;
    }

    .h_img img {
        width: 85px;
    }

    .h_div2 {
        gap: 6px;
    }

    .h_div2 div {
        gap: 3px;
    }

    .h_div2 svg {
        width: 17px;
        height: 17px;
        padding: 3px;
        border-radius: 5px;
    }

    .h_div2 a {
        font-size: 8px;
    }

    .h_div1 {
        gap: 16px;
        font-size: 11px;
    }

    main {
        padding: 125px 16px 45px;
    }

    .navigation {
        margin-bottom: 30px;
    }

    .navigation > div {
        font-size: 13px;
        gap: 7px;
    }

    .navigation svg {
        width: 9px;
        height: 9px;
    }

    .text {
        width: 100%;
        margin-bottom: 35px;
    }

    .text h1 {
        margin-bottom: 15px;
        font-size: 32px;
        line-height: 1.15;
    }

    .text p {
        font-size: 15px;
        line-height: 1.65;
    }

    main > hr {
        margin-bottom: 30px;
    }

    .info {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .card1 {
        padding: 16px;
        border-radius: 15px;
    }

    .card1::before {
        margin-bottom: 17px;
        font-size: 12px;
        letter-spacing: 1.2px;
    }

    .infoText {
        min-height: 70px;
        margin-bottom: 10px;
        padding: 12px;
        border-radius: 10px;
    }

    .infoText svg {
        width: 36px;
        height: 36px;
        padding: 8px;
        border-radius: 8px;
    }

    .infoText div {
        margin-left: 10px;
        min-width: 0;
    }

    .infoText p {
        font-size: 13px;
        line-height: 1.4;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .card2 {
        padding: 6px;
        border-radius: 15px;
    }

    .card2 iframe {
        width: 100%;
        height: 350px;
        min-height: 350px;
        border-radius: 10px;
    }

    .footer {
        margin-top: 35px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 20px 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand img {
        width: 135px;
        margin-bottom: 17px;
    }

    .footer-brand p {
        font-size: 14px;
        line-height: 1.65;
    }

    .footer h3 {
        margin-bottom: 17px;
        font-size: 14px;
    }

    .footer-links a,
    .footer-contact a {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .footer-bottom {
        width: calc(100% - 40px);
        margin: 0 auto;
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {

    header {
        min-height: 100px;
        padding: 7px 10px;
        grid-template-columns: 1fr auto;
        grid-template-rows: 43px 36px;
        gap: 3px 5px;
    }

    .h_img img {
        width: 82px;
    }

    .h_div2 {
        gap: 5px;
    }

    .h_div2 div {
        gap: 2px;
    }

    .h_div2 svg {
        width: 16px;
        height: 16px;
        padding: 3px;
        border-radius: 5px;
    }

    .h_div2 a {
        font-size: 8px;
    }

    .h_div1 {
        gap: 17px;
        font-size: 11px;
    }

    main {
        padding: 122px 12px 40px;
    }

    .navigation {
        margin-bottom: 27px;
    }

    .navigation > div {
        font-size: 12px;
        gap: 6px;
    }

    .text h1 {
        font-size: 29px;
        line-height: 1.15;
    }

    .text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .card1 {
        padding: 13px;
    }

    .card1::before {
        font-size: 11px;
        margin-bottom: 14px;
    }

    .infoText {
        min-height: 65px;
        padding: 10px;
    }

    .infoText svg {
        width: 34px;
        height: 34px;
        padding: 8px;
    }

    .infoText div {
        margin-left: 9px;
    }

    .infoText p {
        font-size: 12px;
    }

    .card2 {
        padding: 5px;
    }

    .card2 iframe {
        height: 300px;
        min-height: 300px;
    }
}

@media (max-width: 360px) {

    header {
        min-height: 98px;
        padding: 6px 8px;
    }

    .h_img img {
        width: 75px;
    }

    .h_div2 {
        gap: 4px;
    }

    .h_div2 a {
        font-size: 7px;
    }

    .h_div2 svg {
        width: 15px;
        height: 15px;
        padding: 2px;
    }

    .h_div1 {
        gap: 12px;
        font-size: 10px;
    }

    main {
        padding: 120px 9px 35px;
    }

    .navigation {
        margin-bottom: 23px;
    }

    .navigation > div {
        font-size: 11px;
        gap: 6px;
    }

    .text h1 {
        font-size: 26px;
    }

    .text p {
        font-size: 13px;
    }

    .card1 {
        padding: 10px;
    }

    .infoText {
        padding: 9px;
        min-height: 60px;
    }

    .infoText svg {
        width: 30px;
        height: 30px;
        padding: 7px;
    }

    .infoText div {
        margin-left: 7px;
    }

    .infoText p {
        font-size: 11px;
    }

    .card2 iframe {
        height: 270px;
        min-height: 270px;
    }
}