/* Հիմնական ոճեր */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9fafb;
    color: #374151;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Նավիգացիոն շերտի ընդհանուր ոճը */
.navbar {
    background-color:white; /* Ձեր մուգ կապույտ գույնը */
    padding: 10px 0;
    display: flex;
    align-items: center;
    height: 80px; /* Ֆիքսված բարձրություն */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Լոգոյի նկարի կարգավորումը */
.nav-logo {
    height: 250px; /* Ինչպես նշել էիք index-ի համար */
    width: auto;
    display: block;
    margin-top: 40px; /* Իջեցնում ենք նկարը ներքև՝ ձեր նախորդ հարցի նման */
}

/* Գլխավոր կոճակի ոճը */
.nav-home-btn {
     background-color: #2563eb;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-home-btn:hover {
    color: #f97316; /* Նարնջագույն hover-ի ժամանակ */
}
/* "Մեր մասին" Ամբողջական Բաժին */
.about-section-full {
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    padding: 40px 0;
}

.flex-row-full {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Կենտրոնացնում է նկարն ու տեքստը ըստ բարձրության */
    width: 100%;
}

.content-col-full {
    flex: 1;
    padding: 60px 8%; 
    min-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Գլխավոր վերնագիրը */
.main-title {
    font-size: 3.8rem; 
    color: #1e3a8a; /* Մուգ կապույտ */
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.title-underline {
    width: 60px;
    height: 5px;
    background-color: #ff8c00; /* Նարնջագույն գիծ վերնագրի տակ */
    margin-bottom: 30px;
    border-radius: 2px;
}

/* Հիմնական նկարագրությունը */
.description {
    font-size: 1.4rem; 
    margin-bottom: 30px;
    color: #4b5563;
    line-height: 1.7;
    font-weight: 400;
    max-width: 650px;
}

.brand-name {
    color: #ff8c00;
    font-weight: 700;
}

/* Կոճակ */
.about-btn {
    display: inline-block;
    width: fit-content;
    padding: 12px 30px;
    background-color: #1e3a8a;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    background-color: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* Նկարի հատվածը */
.image-col-full {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: #f8fafc; /* Թեթև ֆոն նկարի հետևում */
}

.about-img-full {
    max-width: 550px;
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Ադապտացիա հեռախոսների համար */
@media (max-width: 992px) {
    .main-title {
        font-size: 2.8rem;
    }
    .flex-row-full {
        flex-direction: column;
    }
    .content-col-full {
        padding: 40px 20px;
        order: 2;
        text-align: center;
        align-items: center;
    }
    .image-col-full {
        order: 1;
        padding: 20px;
    }
    .about-img-full {
        max-width: 90%;
    }
}

/* Առավելությունների բաժին */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-top: 5px solid #1e3a8a;
    transition: 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 2.5rem;
    color: #f97316;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: #f3f4f6;
    border-top: 1px solid #e5e7eb;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #d1d5db;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    height: 250px;
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #1e3a8a;
}

.footer-bottom {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}