/* Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;700&display=swap');

/* Fonts */
.text h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    color: #2C6E1F;
    margin-bottom: 20px;
}

.breadcrumb-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.breadcrumb-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.breadcrumb-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.breadcrumb-content h1 {
    font-size: 36px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.breadcrumb-content p {
    font-size: 1rem;
    font-weight: 500;
}

.text p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #555;
}

/* Images */
.img-rounded-shadow {
    border-radius: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Logos custom */
.w-48 {
    max-width: 48%;
    height: auto;
}

/* Gap custom 60px */
.gap-60 {
    gap: 60px;
}

/* Responsive fonts */
@media (max-width: 1024px) {
    .text h2 { font-size: 28px; }
    .text p { font-size: 18px; line-height: 28px; }
}

@media (max-width: 768px) {
    .text h2 { font-size: 24px; }
    .text p { font-size: 16px; line-height: 24px; }
}
