/*Paragraph Spacing*/
body p {
margin: 0;
padding: 0;
}

/*Headings*/
h1, h2, h3, h4, h5, h6  {
font-family: Poppins;
}

/* == START Horizontal Rule == */

hr {
    border: none !important;
    border-top: 2px solid #65c556 !important;
    border-radius: 2px;
    opacity: 0.6 !important;
}

/* == END Horizontal Rule == */

/* == START Standard Image Style == */
.ll-img {
    display: block;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
/* == END Standard Image Style == */

/*Bullet Marker*/
li::marker { color: #2f993e; }

/*Boxed Div*/
.boxedborder{
    background-color: #fff;
    color: #666;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    padding: 10px;
    display: flex;
    flex-direction: column;
}

/*Button to Div Bottom*/
.boxedborder .buttondiv {
    margin-top: auto;
}


/* == START Banner CTA Buttons == */
.ll-banner-btn {
    background: #ffffff;
    color: #1a2e1a;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid #ffd700;
    letter-spacing: 0.04em;
    display: inline-block;
    text-decoration: none;
}

.ll-banner-btn:hover {
    background: #fff8d6;
    border-color: #e9c500;
    text-decoration: none;
}
/* == END Banner CTA Buttons == */

/* == START Banner Inner Layout == */

.ll_banner-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.ll_btn-primary {
    background: #ffd700;
    color: #1a2e1a;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: 50px;
    letter-spacing: 0.04em;
    display: inline-block;
    text-decoration: none;
}

.ll_btn-primary:hover {
    background: #e9c500;
    text-decoration: none;
}

.ll_btn-outline {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    letter-spacing: 0.04em;
    display: inline-block;
    text-decoration: none;
}

.ll_btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
}
/* == END Banner Inner Layout == */

/* == START LL Card == */
.ll-card {
    background: #f7fdf7;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}
/* == END LL Card == */

/* == START Card Accent Borders == */

.ll-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Top border variants */
.ll-border-top-green-dark    { border-top: 4px solid #2f993e; }
.ll-border-top-green-mid     { border-top: 4px solid #4caf50; }
.ll-border-top-green-light   { border-top: 4px solid #60bf50; }
.ll-border-top-green-muted   { border-top: 4px solid #65c556; }
.ll-border-top-yellow        { border-top: 4px solid #ffd700; }
.ll-border-top-amber         { border-top: 4px solid #e9c500; }
.ll-border-top-sky           { border-top: 4px solid #98d8ef; }
.ll-border-top-brown         { border-top: 4px solid #764d2c; }
.ll-border-top-brown-light   { border-top: 4px solid #8a5e3c; }

/* Left border variants */
.ll-border-left-green-dark   { border-left: 4px solid #2f993e; }
.ll-border-left-green-mid    { border-left: 4px solid #4caf50; }
.ll-border-left-green-light  { border-left: 4px solid #60bf50; }
.ll-border-left-green-muted  { border-left: 4px solid #65c556; }
.ll-border-left-yellow       { border-left: 4px solid #ffd700; }
.ll-border-left-amber        { border-left: 4px solid #e9c500; }
.ll-border-left-sky          { border-left: 4px solid #98d8ef; }
.ll-border-left-brown        { border-left: 4px solid #764d2c; }
.ll-border-left-brown-light  { border-left: 4px solid #8a5e3c; }

/* == END Card Accent Borders == */

/* == START Warning Signs Section == */

.ll-warning-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ll-warning-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.5;
}

.ll-warning-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: #ffd700;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1rem;
    color: #1a1a1a;
    flex-shrink: 0;
    margin-top: 2px;
}

.ll-callout-box {
    background: #2f993e;
    border-radius: 12px;
    padding: 32px 28px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.ll-callout-box p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #ffffff;
}

.ll-btn-callout {
    display: inline-block;
    background: #ffd700;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.ll-btn-callout:hover {
    background: #e9c500;
    transform: translateY(-2px);
}

/* == END Warning Signs Section == */

/* == START Section Label == */
.ll-section-label {
    font-family: 'Chewy', cursive;
    font-size: 1.1rem;
    color: #4caf50;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
}
/* == END Section Label == */

/* == START Resource Card Name == */
.ll-resource-name {
    font-weight: 600;
    color: #2f993e;
}
/* == END Resource Card Name == */

/* == START Contact & Social Icons == */
.ll-contact-icon {
    color: #2f993e;
    margin-right: 8px;
}

.ll-social-icon-badge {
    width: 36px;
    height: 36px;
    background: #2f993e;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 8px;
    transition: background 0.2s;
}

.ll-social-icon-badge:hover {
    background: #4caf50;
}
/* == END Contact & Social Icons == */