body {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

/* Top Utility Bar */

.utility-bar {
    background: #f4f4f4;
    padding: 9px 0;
    font-size: 14px;
}

.utility-bar a {
    text-decoration: none;
    color: #002856;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
}

.utility-bar i {
    font-size: 15px;
    cursor: pointer;
}

.divider {
    width: 1px;
    height: 17px;
    background: #c3c3c3;
    margin: 0 20px;
    display: inline-block;
}

/* Navbar */

.navbar {
    padding: 12px 0;
    background: #fff;
}

.navbar-brand {
    margin-right: 25px;
}

.navbar-brand img {
    max-height: 45px;
}

/* Nav Links */

.nav-link {
    font-weight: 500;
    color: #0b2545 !important;
    margin: 0 5px;
}

.nav-link:hover {
    color: #0aa3d2 !important;
}

/* Buttons */

.btn-login {
    border: 2px solid #0b2545;
    padding: 15px 35px;
    font-weight: 700;
}

.btn-login:hover {
    background: #0b2545;
    color: white;
}

.btn-listed {
    background: #3e63dd;
    border: 2px solid;
    padding: 15px 35px;
    font-weight: 700;
    color: white;
}

.btn-listed:hover {
    background: #0b5ed7;
    color: white;
}

.btn-listed i {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 6px;
}

.btn-listed:hover i {
    transform: translateX(6px);
}

.search-bar {
    display: none;
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.search-bar.active {
    display: block;
}

/* Hero Section */

.hero-section {
    padding: 50px 0;
}

/* Title */

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #0b2e59;
    margin-bottom: 20px;
}

/* Text */

.hero-text {
    font-size: 26px;
    line-height: 1.4;
    max-width: 750px;
}

.clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;   /* limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-20 {
    display: -webkit-box;
    -webkit-line-clamp: 20;   /* limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Image */

.hero-image {
    max-width: 350px;
}


/* Ebook Section */

.ebook-section{
padding:20px 0;
}

/* Left Text */

.ebook-section p{
font-size:18px;
line-height:1;
margin-bottom:14px;
}

.insight-content ul{
padding-left:20px;
}

.insight-content ul li{
margin-bottom:10px;
font-size:16px;
}

.insight-toc p{
  font-size: 16px;
}

/* Form Card */

.ebook-form-card{
background:#f3f3f3;
padding:35px;
border-radius:3px;
}

.ebook-form-card h3{
font-weight:900;
color:#0b2e59;
margin-bottom:20px;
font-size: 36px;
}

/* Inputs */

.ebook-form-card label{
font-size:13px;
margin-top:12px;
}

.ebook-form-card .form-control{
margin-bottom:10px;
border-radius:2px;
border: 2px solid #d3d3d3;
}

/* Submit Button */

.submit-btn{
background:#ff5a1f;
color:#fff;
border:none;
padding:12px 30px;
margin-top:10px;
font-weight:600;
}

/* Privacy */

.ebook-section .ebook-form-card .privacy-text{
font-size:14px;
margin-top:20px;
}

.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.blur-image {
    max-width: 90%;
    margin:auto;
    display: block;
    filter: blur(5px);
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Apply to anchor */
.unlock-btn {
    background-color: #0b2545;
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none; /* remove underline */
    display: inline-block;
    transition: 0.3s;
}

.unlock-btn:hover {
    background-color: #133a6b;
}

.footer {
    background-color: #0b2545;
    color: #ffffff;
    padding: 20px 0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer .container {
        flex-direction: column;
        gap: 10px;
    }
}