
.hero-new-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 0 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 60px;
    position: relative;
    z-index: 2;

    background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4) 35%, rgba(255, 255, 255, 0) 70%);
}

.hero-new-logo {
    margin-bottom: 20px;
}
.hero-logo-img {
    max-width: 130px;
    width: 100%;
    height: auto;
}

.hero-new-title {
    font-size: 82px;
    font-weight: 700;
    color: #0f3966;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
/*
    text-transform: uppercase;
*/
    line-height: 1.1;
}

.hero-new-subtitle {
    font-size: 24px;
    color: #5c6c84;
    max-width: 580px;
    line-height: 1.4;
    margin: 0 0 45px 0;
    font-weight: 400;
}

.hero-new-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 80px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero .arrow {
    margin-left: 8px;
    font-size: 18px;
    line-height: 1;
}

.btn-primary {
    background-color: #0f3966 !important;
    color: #ffffff !important;
    border: 2px solid #0f3966 !important;
}
.btn-primary:hover {
    background-color: #0b2b4d !important;
    border-color: #0b2b4d !important;
    transform: translateY(-2px) !important;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.7);
    color: #1a2c4d;
    border: 1px solid #d2d9e5;
}
.btn-secondary:hover {
    background-color: #ffffff;
    border-color: #0f3966;
    transform: translateY(-2px);
}

.hero-features-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 40px 35px;
    box-shadow: 0 20px 40px rgba(26, 44, 77, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: left;
}

.panel-item {
    display: flex;
    flex-direction: column;
}

.panel-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}
.panel-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.panel-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2c4d;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.panel-item p {
    font-size: 14px;
    color: #62728d;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .hero-features-panel {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 30px;
    }
    .hero-new-title {
        font-size: 50px;
    }
}

@media (max-width: 576px) {
    .hero-new-content {
        background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 80%);
        padding-top: 40px;
    }
    .hero-logo-img {
        max-width: 100px;
    }
    .hero-new-title {
        font-size: 30px;
    }
    .hero-new-subtitle {
        font-size: 18px;
        max-width: 100%;
    }
    .hero-new-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 0 20px;
        margin-bottom: 50px;
    }
    .btn-hero {
        width: 100%;
    }
    .hero-features-panel {
        grid-template-columns: 1fr;
        gap: 30px;
        border-radius: 20px;
        padding: 25px 20px;
    }
}

@media (max-width: 344px) {
  .hero-new-title {
      font-size: 26px;
  }
}
