.grey-box{
    width: 100%;
    background-color: #757575;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}
.grey-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grey-box p{
    font-size: 23px;
    color: #fff;
    font-weight: 600;
}

.promotion-section{
    padding: 50px 0 ;
}

.promotion-container{
    padding: 0 5%;
    margin: 0 auto;
    width: 100%;
}
.pro-title{
    font-size: 23px;
    font-weight: 600;
    color: #162d56;
    margin-bottom: 20px;
}
.pro-sec-title{
    position: relative;
    padding: 15px 25px 16px 60px;
    background: #f9f1e5;
    margin-bottom: 20px;
    border-left: 2px solid #162d56;
}
.pro-sec-title p{
    font-size: 18px;
    display: block;
    font-style: italic;
    font-weight: 500;
    color: #162d56;
}
.pro-sec-title::before{
    position: absolute;
    content: "〝";
    left: 20px;
    top: 30%;
    font-weight: 800;
    font-size: 35px;
    color: #abccd8;
}





.pro-banner{
    display: flex;
    align-items: center;
    justify-content: center;
}
.pro-banner a{
    display: inline-block;
    overflow: hidden;
    width: 100%;
}
.pro-banner a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .5s, transform 2s cubic-bezier(0, 0, .44, 1.18), -webkit-transform 2s cubic-bezier(0, 0, .44, 1.18);
    max-height: 600px;
}
.pro-banner a:hover img{
    transform: scale(1.09);
}
.pro-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.pro-btn .qodef-html--link{
    padding: 10px 30px 10px 40px;
    border-radius: 30px;
    font-size: 17px;
}
.pro-tips{
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-weight: 500;
}



/* new-pro-box */

  .promo-card {
    position: relative;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f5f9ff 0%, #e1f0ff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(22, 45, 86, 0.1);
    margin: 30px 0;
    border: 1px solid rgba(22, 45, 86, 0.1);
    overflow: hidden;
  }
  
  .promo-card::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 516 516" fill="%23162d56" opacity="0.08"><path d="M256 224c-79.41 0-192 122.72-192 200.25 0 34.9 26.81 55.75 71.74 55.75 48.84 0 81.09-25.08 120.26-25.08 39.51 0 71.85 25.08 120.26 25.08 44.93 0 71.74-20.85 71.74-55.75C448 346.72 335.41 224 256 224zm-147.28-12.61c-10.4-34.65-42.44-57.09-71.56-50.13-29.12 6.96-44.29 40.69-33.89 75.34 10.4 34.65 42.44 57.09 71.56 50.13 29.12-6.96 44.29-40.69 33.89-75.34zm84.72-20.78c30.94-8.14 46.42-49.94 34.58-93.28s-46.52-72.01-77.46-63.87-46.42 49.94-34.58 93.28 46.52 72.01 77.46 63.87zm281.39-29.34c-29.12-6.96-61.15 15.48-71.56 50.13-10.4 34.65 4.77 68.38 33.89 75.34 29.12 6.96 61.15-15.48 71.56-50.13 10.4-34.65-4.77-68.38-33.89-75.34zm-156.27 29.34c30.94 8.14 77.46-21.4 77.46-63.87s-15.65-85.13-46.59-93.27-77.46 21.4-77.46 63.87 15.64 85.14 46.59 93.27z"/></svg>') no-repeat; 
    background-size: contain;
    opacity: 0.8;
  }

  
  .promo-content {
    position: relative;
    z-index: 1;
  }
  
  .promo-content p {
    font-size: 18px;
    color: #162d56;
    margin: 0 0 8px 0;
    line-height: 1.5;
    font-weight: 500;
  }
  
  .highlight {
    margin-left: 5px;
    color: #ff6149;
    font-weight: 700;
    font-size: 20px;
  }
  
  .promo-code {
    display: inline-block;
    background: #162d56;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 700;
    margin-left: 5px;
    font-size: 16px;
  }
  
  .promo-content small {
    display: block;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
  }

  #qodef-page-inner{
    padding: 0 !important;
  }

@media screen and (max-width:768px) {
    #qodef-page-outer{
        margin-top: 110px;
    }
    .grey-box{
        height: 260px;
    }

    .promo-card{
        padding: 20px 20px;
        margin: 20px 0;
    }
    .promo-content p{
        font-size: 15px;
        margin: 0 !important;
    }
    .promo-code{
        font-size: 15px;
        padding: 2px 8px;
    }
    .promo-card::after{
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 10px;
    }
    .highlight{
        font-size: 18px;
    }
    .promo-content small{
        margin-top: 5px;
    }

    .promotion-section{
        padding: 50px 0 0 0;
    }
    .elementor-23 .elementor-element.elementor-element-0218868>.elementor-widget-container{
        padding: 0;
    }
    .promotion-container{
        margin-bottom: 50px;
    }
}