 .grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-mt {
    margin-top: 80px;
}

 .page-h2 {
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    color: rgb(43, 65, 157, 1);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
	font-family: 'Jost Medium', 'Arial', sans-serif;
}

.page-h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgb(43, 65, 157, 1);
}
#aiPrintText {  line-height: 2.2; } 

.default-text { 
    font-size: 16px;
    line-height: 1.6;
    color: #2F3E46;
}
#aiPrintText { font-size: 1.2rem; } 

 .link-text-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: rgb(43, 65, 157, 1);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.link-text-btn:hover {
    gap: 12px;
}

 .investment-wrapper {
    display: flex;
    gap: 50px;
   border: 1px solid rgba(43, 65, 157,0.3);
    padding: 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.investment-wrapper:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.investment-content {
    flex: 1;
}

 .investment-icons-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.investment-icons-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.investment-icons-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.investment-icons-item-label {
    font-size: 13px;
    color: #8d8fa6;
    margin-bottom: 10px;
}

.investment-icons-item-value {
    font-size: 28px;
    font-weight: 700;
    color: rgb(43, 65, 157, 1);
}

 @keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

 @media (max-width: 992px) {
    .page-h2 {
        font-size: 36px;
    }
    
    .investment-icons-item-value {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .page-h2 { font-size: 20px; }
    .iconvs { display: none;}
    .investment-wrapper {
        flex-direction: column;
        padding: 25px;
    }
     #aiPrintText {  line-height: 22px; }   
	 #aiPrintText { font-size: 18px; }  
    .investment-icons-grid {
        grid-template-columns: 1fr 1fr;
    }
    
     
    .section-mt { margin-top: 60px;   }
}

@media (max-width: 480px) {
    .investment-icons-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-wrapper {
        padding: 20px;
    }
    
    .investment-icons-item-value {
        font-size: 22px;
    }
    
    .page-h2::after {
        width: 50px;
    }
}

 .custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
 
}

.custom-modal.active {
    display: flex;
    opacity: 1;
}

.custom-modal__content {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.custom-modal.active .custom-modal__content {
    transform: scale(1);
}

.custom-modal__close {
    float: right;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.3s ease;
}

.custom-modal__close:hover {
    transform: rotate(90deg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: rgb(43, 65, 157, 1);
    outline: none;
}

.form-btn {
    width: 100%;
    padding: 12px;
    background: rgb(43, 65, 157, 1);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-btn:hover {
    background: #1F6777;
    transform: translateY(-2px);
}