html {
    overflow-y: scroll;
}
body {
  line-height: 1.5;
}
/* ---------------------- */
/* ---------------------- */

.blogMain-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: "Inter", Arial, sans-serif;
    color: #1a1f2b;
}

/* ---------------------- */
/* ---------------------- */

.blogMain-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    align-items: center;
}

.blogMain-logo {
    font-size: 24px;
    font-weight: 700;
    color: #0a3d62;
    letter-spacing: 0.5px;
}

.blogMain-nav div {
    display: inline-block;
    margin-left: 20px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 15px;
    color: #1a1f2b;
}

.blogMain-nav div:hover {
    color: #0a3d62;
    opacity: 0.7;
}

/* ---------------------- */
/* Hero */
/* ---------------------- */

.blogMain-hero {
    text-align: center;
    padding: 50px 0;
}

.blogMain-heroTitle {
    font-size: 36px;
    font-weight: 800;
    color: #0a3d62;
}

.blogMain-heroSub {
    margin-top: 10px;
    font-size: 17px;
    color: #5a6a7a;
}

/* ---------------------- */
/* Post */
/* ---------------------- */
a {
    text-decoration: none;
    color: #00bfa5;  
}

a:hover {
    color: #009e87;  
}

.img_left {float:left; border: 0; margin:2px 8px 8px 0; padding: 0 5px 0 0;}
.blogMain-posts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 20px;
}

.blogMain-postCard {
    background: #ffffff;
    padding: 10px 25px;
    border-radius: 14px;
    transition: 0.25s;
    cursor: pointer;
    border: 1px solid rgba(10, 61, 98, 0.08);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.blogMain-postCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(10, 61, 98, 0.15);
}

.blogMain-postTitle {
    font-size: 20px;
    font-weight: 700;
    color: #0a3d62;
}

.blogMain-postExcerpt {
    margin-top: 8px;
    color: #5a6a7a;
    font-size: 15px;
}

/* ---------------------- */
/* User  */
/* ---------------------- */
.userblok {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-family: "Inter", sans-serif;
    color: #1a1f2b;
}

/* Left */
.userpic {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #cfcac4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    text-align: center;
}

/* Main info */
.userinfo {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    text-align: justify;
}

/*  */
.userabout {
    margin-top: 15px;
    padding: 12px;
    background: #f7f9fc;
    border-radius: 10px;
    font-size: 14px;
    color: #4a5568;

}

/* Mobile */
@media (max-width: 768px) {
    .userblok {
        flex-direction: column;
        gap: 15px;
    }

    .userpic {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 10px;
    }

    .userinfo {
        text-align: left;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .userpic {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .userblok {
        padding: 10px;
    }
}


/* ---------------------- */
/* Footer */
/* ---------------------- */

.blogMain-footer {
    margin-top: 80px;
    padding: 50px 0;
    background: #f5f7fa;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.blogMain-footerInner {
    max-width: 900px;
    margin: 0 auto;
    font-family: "Inter", Arial, sans-serif;
    color: #1a1f2b;
}

.blogMain-footerTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.blogMain-footerBrand {
    font-size: 18px;
    font-weight: 700;
    color: #0a3d62;
}

.blogMain-footerLinks div {
    display: inline-block;
    margin-left: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
    color: #1a1f2b;
}

.blogMain-footerLinks div:hover {
    opacity: 0.6;
}

.blogMain-footerBottom {
    margin-top: 30px;
    text-align: left;
}

.blogMain-footerCopy {
    font-size: 13px;
    color: #6b7b8c;
}


/* ---------------------- */
/* Question Block */
/* ---------------------- */

.question-block {
    background: #ffffff;
    padding: 5px 25px;
    border-radius: 14px;
    border: 1px solid rgba(10, 61, 98, 0.08);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    margin: 5px 0 10px 0;
    font-family: "Inter", Arial, sans-serif;
    color: #1a1f2b;
}

.q-title {
    font-size: 22px;
    font-weight: 700;
    color: #0a3d62;
    margin-bottom: 10px;
}

.q-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #5a6a7a;
    margin-bottom: 15px;
}

.q-author span {
    font-weight: 600;
    color: #0a3d62;
}

.q-body {
    font-size: 15px;
    color: #1a1f2b;
    margin-bottom: 20px;
    text-align: justify;
}

.q-actions button {
    background: #0a3d62;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.25s;
    margin-right: 10px;
}

.q-actions button:hover {
    background: #062c47;
    transform: translateY(-2px);
}

/* ---------------------- */
/* Mobile  */
/* ---------------------- */

@media (max-width: 768px) {

    .blogMain-header {
        flex-direction: column;
        gap: 15px;
    }

    .blogMain-nav div {
        margin-left: 12px;
        font-size: 14px;
    }

    .blogMain-heroTitle {
        font-size: 28px;
    }

    .blogMain-heroSub {
        font-size: 15px;
    }

    .blogMain-postCard {
        padding: 20px;
    }

    .blogMain-postTitle {
        font-size: 18px;
    }

    .blogMain-footerTop {
        flex-direction: column;
        align-items: flex-start;
    }

    .blogMain-footerLinks div {
        margin-left: 0;
        margin-right: 15px;
        display: inline-block;
    }
}

@media (max-width: 480px) {

    .blogMain-logo {
        font-size: 20px;
    }

    .blogMain-nav div {
        font-size: 13px;
    }

    .blogMain-heroTitle {
        font-size: 24px;
    }

    .blogMain-postExcerpt {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .q-title {
        font-size: 18px;
    }

    .q-meta {
        flex-direction: column;
        gap: 5px;
    }

    .q-actions button {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .q-title {
        font-size: 16px;
    }

    .q-body {
        font-size: 14px;
    }
}
 
/* share buttons */
#share-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.share-btn {
    position: relative;
    display: inline-block;
    padding: 5px 10px;
    background-color: #0077ff;  
    color: white;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.share-btn:hover {
    background-color: #0059b3;
}

#share-pinterest {
    background-color: #E60023;  
}

#share-pinterest:hover {
    background-color: #b0001b;  
}

.share-tooltip {
    position: absolute;
    visibility: hidden;
    width: 150px;
    background-color: gray;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    z-index: 1;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.share-btn:hover .share-tooltip {
    visibility: visible;
    opacity: 1;
}

#cookieBanner {
    font-size: 16px;  
    font-family: Georgia, Arial, Helvetica, sans-serif;    
    position: fixed;                        
    bottom: 20px;                           
    right: 20px;                            
    background-color: rgba(0, 0, 0, 0.7);  
    color: white;                           
    padding: 10px;                          
    border-radius: 5px;                     
    max-width: 400px;                       
    z-index: 9999;                          
}

#cookieBanner button {
    background-color: #fff;                 
    color: black;                           
    border-radius: 5px;                     
    cursor: pointer;                        
    padding: 5px 10px;                      
}

/* Contact form container */
#contact-form {
  max-width: 600px;          /* Limit width on desktop */
  margin: 0 auto;            /* Center the form */
  padding: 15px;
}

/* Form field group */
.form-group {
  display: flex;
  flex-direction: column;    /* Vertical layout */
  margin-bottom: 15px;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  color: #1f2a33;            /* Dark corporate graphite */
}

input, textarea {
  width: 100%;               /* Full width fields */
  padding: 8px;
  box-sizing: border-box;    /* Include padding in width */
  font-size: 14px;
  border: 1px solid #c9d1d8; /* Light financial gray */
  border-radius: 4px;
  background-color: #ffffff;
  color: #2a333a;
}

input:focus, textarea:focus {
  border-color: #4a6fa5;     /* Steel blue accent */
  outline: none;
  box-shadow: 0 0 4px rgba(74, 111, 165, 0.4);
}

/* Submit button — financial corporate style */
.submit-button {
    display: inline-block;
    padding: 10px