h1,h2,h3,h4,h5,h6{
    font-family: 'poppins', sans-serif;
}

p,a,input,label,textarea,span,ul,li{
    font-family: 'poppins', sans-serif;
}

body {
    font-family: 'poppins', sans-serif;
}

.promo-banner-section {
    padding-bottom: 40px;
}

.promo-row {
    padding-top: 40px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

.promo-row h1 {
    font-family: 'Yantramanav', sans-serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.promo-banner {
    position: relative;
    max-width: 1200px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,85,135,0.7) 0%, rgba(0,85,135,0.4) 50%, rgba(0,85,135,0.1) 100%);
}

.promo-bg {
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='400' viewBox='0 0 1200 400'%3E%3Crect width='1200' height='400' fill='%23336699'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.promo-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.promo-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-text {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 30px;
    line-height: 1.4;
}

.promo-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #233b55;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.promo-button:hover {
    background-color: #005587;
}

@media (max-width: 768px) {
    .promo-banner {
        height: 300px;
    }

    .promo-content {
        left: 30px;
        max-width: 80%;
    }

    .promo-title {
        font-size: 32px;
    }

    .promo-text {
        font-size: 16px;
    }
}