* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.logo-img{
    width: 5%;
    border-radius: 50px;
    margin-right:2%;
    margin-left: 1%;
}
nav.navbar.navbar-expand-lg {
 
    width: 100% !important;
    z-index: 9999 !important;
    background-color: #f8f9fa !important; /* Ова е bg-light бојата */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.about-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #333;
    padding-top: 10%;
}

/* Custom Container to avoid Bootstrap conflicts */
.custom-about-container {
    max-width: 850px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 15px;
    letter-spacing: -1px;
}

.highlight-text {
    color: #68b7de; /* Твојата сина боја */
}

.status-badge {
    background: #e8f4fd;
    color: #68b7de;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #68b7de;
    margin: 15px auto;
    border-radius: 10px;
}

.mission-card {
    background-color: #fcfcfc;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    border-left: 6px solid #68b7de;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.mission-card h3 {
    color: #68b7de;
    font-weight: 700;
    margin-bottom: 15px;
}

.text-block h4 {
    color: #444;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
}

.text-block p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-box {
    margin-top: 50px;
    padding: 25px;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
}

.legal-box h5 {
    color: #68b7de;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.legal-box p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2rem;
    }
}











/* Стил за пагинацијата долу */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination a {
    text-decoration: none;
    color: #777;
    padding: 8px 16px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    transition: 0.3s;
}

.pagination a.active {
    background-color: var(--brand-color);
    color: white;
    border-color: var(--brand-color);
}

.pagination a:hover:not(.active) {
    background-color: #f5f5f5;
}
.container-flex {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 60px 10%;
    background: #f9f9f9;
    gap: 40px;
}

.container-flex.reverse {
    flex-direction: row-reverse; /* Ја менува страната на сликата и текстот */
    background: #fff;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.info-image {
    flex: 1;
    max-width: 500px;
}

.info-image img {
    width: 100%;
    border-radius: 15px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.full-footer {
    width: 100%;
    background-color: #f8f9fa; 
    border-top: 1px solid #ddd;
    padding-top: 50px;
    margin-top: 50px;
    color: #333;

}


.footer-inner {
    max-width: 1200px; 
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px 40px 20px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #68b7de;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #68b7de;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #68b7de;
}

.secure-badge {
    margin-top: 15px;
    background: #e7f3ff;
    padding: 10px;
    border-radius: 5px;
    font-size: 13px;
    color: #68b7de;
    display: inline-block;
}

.footer-copyright {
    width: 100%;
    background-color: #eee;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #777;
}
.logo-img2{
    width: 30%;
    border-radius: 60px;
    margin-bottom: 10px;
    margin-top: -5%;
}



@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .container-flex, .container-flex.reverse {
        flex-direction: column; 
        text-align: center;
    }
}
@media screen and (max-width: 768px) {
.logo-img{
    width: 20%;
}
}
.floating-cart {
    color: rgba(0, 0, 0, 0.55) !important; 
    transition: color 0.3s ease;
    text-decoration: none;
    margin-right: 13%;
}

.floating-cart:hover {
    color: #68b7de !important; 
}


@media (max-width: 991px) {
    .floating-cart {
        position: fixed !important;
        bottom: 25px !important;
        right: 20px !important;
        background-color: #68b7de !important; 
        color: white !important;
        padding: 12px 20px !important;
        border-radius: 50px !important;
        z-index: 10000 !important;
        display: flex !important; 
        align-items: center;
        box-shadow: 0px 6px 20px rgba(0,0,0,0.25) !important;
        margin-right: 0;
    }

   
    .floating-cart svg {
        fill: white !important;
    }
}