@charset "UTF-8";
/**
 * Main CSS - Combined styles
 * Includes: Reset, Utilities, Typography Patterns, Custom Styles
 */

/* CSS Reset */
h1, h2, h3, h4, h5, h6 {
    margin-block-start: 0.5rem;
    margin-block-end: 1rem;
    font-family: inherit;
    font-weight: 400;
    line-height: 1.2;
    color: inherit;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-block-start: 0;
    margin-block-end: 0.9rem;
}

/* Grouping content */
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
    white-space: pre-wrap;
}

/* Links */
a {
    background-color: transparent;
    text-decoration: none;
    color: #CC3366;
}

a:hover, a:active {
    color: #333366;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}

/* Text elements */
abbr[title] {
    border-block-end: none;
    text-decoration: underline dotted;
}

b, strong {
    font-weight: bolder;
}

code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content */
img {
    border-style: none;
    height: auto;
    max-width: 100%;
    width: auto;
}

/* Interactive */
details {
    display: block;
}

summary {
    display: list-item;
}

figcaption {
    font-size: 16px;
    color: #333333;
    line-height: 1.4;
    font-style: italic;
    font-weight: 400;
}

/* Misc */
template {
    display: none;
}

[hidden] {
    display: none;
}

/* Print styles */
@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a, a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after, a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre, blockquote {
        break-inside: avoid;
        border: 1px solid #cccccc;
    }

    thead {
        display: table-header-group;
    }

    tr, img {
        break-inside: avoid;
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }

    h2, h3 {
        break-after: avoid;
    }
}

/* Form styling */
label {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

input[type=text], input[type=date], input[type=email], input[type=number],
input[type=password], input[type=search], input[type=tel], input[type=url],
select, textarea {
    width: 100%;
    border: solid 1px #666666;
    border-radius: 3px;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

input[type=text]:focus, input[type=date]:focus, input[type=email]:focus,
input[type=number]:focus, input[type=password]:focus, input[type=search]:focus,
input[type=tel]:focus, input[type=url]:focus, select:focus, textarea:focus {
    border-color: #333333;
}

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
    width: auto;
    -webkit-appearance: button;
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring,
[type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

button, [type=submit], [type=button] {
    display: inline-block;
    font-weight: 400;
    color: #CC3366;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    background-color: transparent;
    border: 1px solid #CC3366;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 3px;
    transition: all 0.3s;
}

button:focus, [type=submit]:focus, [type=button]:focus {
    outline: 5px auto -webkit-focus-ring-color;
}

button:hover, button:focus, [type=submit]:hover, [type=submit]:focus,
[type=button]:hover, [type=button]:focus {
    color: #ffffff;
    background-color: #CC3366;
    text-decoration: none;
}

button:not(:disabled), [type=submit]:not(:disabled), [type=button]:not(:disabled) {
    cursor: pointer;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
    resize: vertical;
}

[type=checkbox], [type=radio] {
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

select {
    display: block;
}

/* Table styling */
table {
    background-color: transparent;
    width: 100%;
    margin-block-end: 15px;
    font-size: 0.9em;
    border-spacing: 0;
    border-collapse: collapse;
}

table th, table td {
    padding: 15px;
    line-height: 1.5;
    vertical-align: top;
    border: 1px solid rgba(128, 128, 128, 0.5);
}

table th {
    font-weight: bold;
}

table thead th, table tfoot th {
    font-size: 1em;
}

table caption + thead tr:first-child th,
table caption + thead tr:first-child td,
table colgroup + thead tr:first-child th,
table colgroup + thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
    border-block-start: 1px solid rgba(128, 128, 128, 0.5);
}

table tbody > tr:nth-child(odd) > td,
table tbody > tr:nth-child(odd) > th {
    background-color: rgba(128, 128, 128, 0.07);
}

table tbody tr:hover > td,
table tbody tr:hover > th {
    background-color: rgba(128, 128, 128, 0.1);
}

table tbody + tbody {
    border-block-start: 2px solid rgba(128, 128, 128, 0.5);
}

/* Nested tables - mobile first */
table table {
    font-size: 0.8em;
}

table table th, table table td {
    padding: 7px;
    line-height: 1.3;
}

table table th {
    font-weight: 400;
}

@media (min-width: 768px) {
    table table {
        font-size: 1em;
    }

    table table th, table table td {
        padding: 15px;
        line-height: 1.5;
    }

    table table th {
        font-weight: bold;
    }
}

/* List styling */
dl, dt, dd, ol, ul, li {
    margin-block-start: 0;
    margin-block-end: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* Utilities */
.alignright {
    float: right;
    margin-left: 1rem
}

.alignleft {
    float: left;
    margin-right: 1rem
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.alignwide {
    margin-left: auto;
    margin-right: auto
}

.alignfull {
    max-width: 100%
}

/* Container */
.container-large {
    max-width: 1400px;
}

/* Section Modifiers */
.section-default {
    background: #fff;
}

.section-small {
    padding-top: 30px;
    padding-bottom: 30px;
}

.no-padding-bottom {
    padding-bottom: 0;
}

.no-padding-top {
    padding-top: 0;
}

/* Flexbox */
.flex {
    display: flex;
}

.flex-inline {
    display: inline-flex;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-middle {
    align-items: center;
}

.flex-top {
    align-items: flex-start;
}

.flex-bottom {
    align-items: flex-end;
}

.flex-between {
    justify-content: space-between;
}

.flex-around {
    justify-content: space-around;
}

.flex-start {
    justify-content: flex-start;
}

.flex-end {
    justify-content: flex-end;
}

.flex-1 {
    flex: 1;
}

/* Grid */
.grid {
    display: grid;
    gap: 20px;
}

.grid-large {
    display: grid;
    gap: 30px;
}

@media (min-width: 768px) {
    .grid {
        gap: 30px;
    }

    .grid-large {
        gap: 50px;
    }
}

.grid-match > * {
    height: 100%;
}

/* Child widths */
.child-width-1-2-l > * {
    width: 100%;
}

.child-width-1-4-l > * {
    width: 100%;
}

.child-width-1-2-s > * {
    width: 100%;
}

@media (min-width: 640px) {
    .child-width-1-2-s > * {
        width: calc(50% - 15px);
    }

    .grid.child-width-1-2-s {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (min-width: 1024px) {
    .child-width-1-2-l > * {
        width: calc(50% - 25px);
    }

    .child-width-1-4-l > * {
        width: calc(25% - 23px);
    }

    .grid.child-width-1-2-l, .grid.child-width-1-4-l {
        display: flex;
        flex-wrap: wrap;
    }
}

/* Hero Grid - mimics UIKit uk-grid behavior */
.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.hero-grid.flex-middle {
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        flex-direction: row;
        gap: 50px;
    }

    .hero-grid.child-width-1-2-l > * {
        flex: 1;
        width: 50%;
    }
}

/* Spacing - Margin */
.margin-top {
    margin-top: 20px;
}

.margin-bottom {
    margin-bottom: 20px;
}

.margin-left {
    margin-left: 20px;
}

.margin-right {
    margin-right: 20px;
}

.margin-small-top {
    margin-top: 10px;
}

.margin-small-bottom {
    margin-bottom: 10px;
}

.margin-small-left {
    margin-left: 10px;
}

.margin-small-right {
    margin-right: 10px;
}

.margin-medium-top {
    margin-top: 30px;
}

.margin-medium-bottom {
    margin-bottom: 30px;
}

.margin-large-top {
    margin-top: 50px;
}

.margin-large-bottom {
    margin-bottom: 50px;
}

.margin-remove {
    margin: 0 !important;
}

.margin-remove-top {
    margin-top: 0 !important;
}

.margin-remove-bottom {
    margin-bottom: 0 !important;
}

/* Spacing - Padding */
.padding {
    padding: 20px;
}

.padding-small {
    padding: 10px;
}

.padding-large {
    padding: 40px;
}

.padding-remove {
    padding: 0 !important;
}

.padding-remove-bottom {
    padding-bottom: 0 !important;
}

.padding-remove-top {
    padding-top: 0 !important;
}

/* Text */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-bold {
    font-weight: 700;
}

.text-small {
    font-size: 0.875rem;
}

.text-large {
    font-size: 1.25rem;
}

.text-muted {
    color: #999;
}

/* Width */
.w-full {
    width: 100%;
}

.w-auto {
    width: auto;
}

.h-full {
    height: 100%;
}

/* Card */
.card {
    background: #fff;
    border-radius: 8px;
}

.card-default {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-body {
    padding: 30px;
}

/* Shadow */
.shadow-small {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.shadow-medium {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.shadow-large {
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}

/* Border */
.rounded {
    border-radius: 4px;
}

.rounded-large {
    border-radius: 8px;
}

.rounded-full {
    border-radius: 9999px;
}

/* Background */
.bg-muted {
    background: var(--color-background-card, #f8f8f8);
}

.bg-primary-light {
    background: var(--color-background-section, #f6f4fc);
}

.bg-dark {
    background: var(--color-background-dark, #1a1a2e);
    color: #fff;
}

.bg-secondary {
    background: var(--color-background-secondary, #2d2d44);
    color: #fff;
}

/* List */
.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Typography Patterns */
.section-title-large {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: var(--fw-700);
    font-size: var(--fs-32);
    line-height: var(--lh-110);
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 8px;
}

@media (min-width: 621px) {
    .section-title-large {
        font-size: var(--fs-42);
    }
}

.card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: var(--fw-700);
    font-size: var(--fs-16);
    color: var(--color-primary);
    margin: 0;
    line-height: 1.1;
}

.card-category {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: var(--fw-500);
    font-size: var(--fs-16);
    color: var(--color-text-dark);
    margin-bottom: 0;
}

.card-excerpt {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: var(--fw-400);
    font-size: var(--fs-14);
    color: var(--color-text-dark);
    margin-top: 4px;
}

.card-meta {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: var(--fw-400);
    font-size: var(--fs-12);
    color: var(--color-text-dark);
    margin-top: 8px;
}

.partners-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: var(--fw-600);
    font-size: var(--fs-15);
    color: var(--color-border);
    text-transform: uppercase;
    letter-spacing: 0.11em;
    text-align: center;
}

/* Custom Styles */
body {
    margin: 0;
    color: #28272F;
}

.col {
    padding: 0;
}

@media (min-width: 769px) {
    .col {
        padding: 0;
    }
}

p {
    font-size: 18px;
    line-height: 1.3;
}

/* Button Styles */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    border-radius: 10px;
    height: 54px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.btn.btn-orange {
    background-color: #F07F72;
    transition: all 0.3s ease;
}

.btn.btn-orange:hover {
    color: white;
    background-color: #e86b5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 127, 114, 0.4);
}

.btn.btn-gradient {
    background: linear-gradient(268deg, #ff5c6e 0%, #00a9ff 100%);
    transition: all 0.3s ease;
}

.btn.btn-gradient:hover {
    color: white;
    background: linear-gradient(268deg, #ff5c6e 0%, rgb(171, 117, 158) 57%, #00a9ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(41, 156, 231, 0.25);
}

.btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2%;
}

.btns .btn-wrap {
    text-align: center;
}

.btns .btn-wrap p {
    font-size: 14px;
    font-style: italic;
}

.btns .btns-text {
    text-align: center;
}

.btns .btns-text p {
    font-size: 14px;
    font-style: italic;
}

/* Unified Button System */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-height: 48px;
}

/* Primary Filled Button */
.btn-primary,
.btn.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    border: none;
}

.btn-primary:hover,
.btn.btn-primary:hover {
    background: var(--color-primary-hover);
    color: #ffffff;
}

/* Secondary/Outline Button */
.btn-secondary,
.btn.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn.btn-outline:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(41, 156, 231, 0.25);
}

/* Button sizes - for tablet (768px+) */
@media (min-width: 768px) {
    .btn-primary,
    .btn-secondary {
        padding: 16px 32px;
        font-size: 18px;
        min-height: 56px;
    }
}

/* Button sizes - for large desktop (1280px+) */
@media (min-width: 1280px) {
    .btn-primary,
    .btn-secondary {
        min-width: 248px;
        min-height: 60px;
    }
}

/* Form Button - for ebook, subscribe, etc - Mobile First */
.btn-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 40px;
    padding: 0 12px;
    background: var(--gradient-secondary);
    border-radius: 6px;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.35px;
    cursor: pointer;
    text-decoration: none;
    transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.btn-form:hover {
    filter: brightness(1.05);
    box-shadow: 0 4px 16px rgba(171, 139, 226, 0.12);
    color: #ffffff;
}

.btn-form:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.btn-form .button-icon {
    width: 18px;
    height: 18px;
}

@media (min-width: 768px) {
    .btn-form {
        height: 54px;
        font-size: 16px;
        padding: 0 22px;
    }
}

/* Elementor Header - Mobile First */
.elementor-location-header .e-con-inner {
    justify-content: space-between !important;
    flex-direction: row !important;
}

.elementor-location-header .e-con-inner .elementor-element {
    width: 50% !important;
    max-width: 50% !important;
}

.elementor-location-header .e-con-inner .elementor-element:first-of-type {
    text-align: left;
}

.elementor-location-header .e-con-inner .elementor-element:nth-of-type(2) {
    text-align: right;
}

.elementor-location-header .e-con-inner .elementor-element:nth-of-type(2) .elementor-menu-toggle {
    margin: 0 !important;
    justify-content: flex-end !important;
}

.elementor-location-header .e-con-inner .elementor-element:nth-of-type(3) {
    display: none !important;
}

.elementor-location-header .e-con-inner .nav-signup {
    display: block;
    text-align: left;
    padding: 10px 20px;
}

@media (min-width: 993px) {
    .elementor-location-header .e-con-inner {
        flex-direction: row !important;
    }

    .elementor-location-header .e-con-inner .elementor-element {
        width: auto !important;
        max-width: none !important;
    }

    .elementor-location-header .e-con-inner .elementor-element:nth-of-type(3) {
        display: flex !important;
    }

    .elementor-location-header .e-con-inner .nav-signup {
        display: none;
    }
}

.elementor-location-header .e-con-inner .nav-signup a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    border-radius: 10px;
    height: 39px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: linear-gradient(268deg, #ff5c6e 0%, #00a9ff 100%);
}

.elementor-location-header .e-con-inner .nav-signup a:hover {
    color: white;
    background: linear-gradient(268deg, #ff5c6e 0%, rgb(171, 117, 158) 57%, #00a9ff 100%);
}

/* Cookie Notice */
#cookie-notice {
    background-color: white !important;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
}

#cookie-notice .cookie-notice-container {
    width: 100%;
    max-width: 1027px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 8px;
    color: black;
}

#cookie-notice .cookie-notice-container .cn-text-container {
    margin: 0;
    color: #333;
    font-size: 14px;
}

#cookie-notice .cookie-notice-container .cn-buttons-container {
    display: inline-flex;
    gap: 1rem;
}

#cookie-notice .cookie-notice-container .cn-buttons-container .cn-set-cookie {
    border-radius: 8px;
    margin: 0;
    font-size: 11px;
}

#cookie-notice .cookie-notice-container .cn-buttons-container .cn-set-cookie#cn-accept-cookie {
    background: linear-gradient(268deg, #ff5c6e 0%, #00a9ff 100%);
    color: #fff;
}

#cookie-notice .cookie-notice-container .cn-buttons-container .cn-set-cookie#cn-refuse-cookie {
    background-color: #edf2f7 !important;
    color: #333333;
}

#cookie-notice .cookie-notice-container .cn-close-icon {
    display: none;
}

/* Error Page - Mobile First */
.error-page {
    padding: 80px 0 50px 0;
}

.error-page .flex {
    align-items: center;
    margin-bottom: 30px;
    flex-direction: column;
}

.error-page .flex .col {
    width: 100%;
    max-width: 100%;
}

.error-page .flex .col .text h1 {
    width: 100%;
    max-width: 420px;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3em;
}

.error-page .flex .col .text h1 b, .error-page .flex .col .text h1 strong {
    color: #00A9FF;
    font-weight: 600;
}

.error-page .flex .col .text p {
    width: 100%;
    max-width: 420px;
    margin-bottom: 30px;
}

.error-page .flex .col .image img {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 769px) {
    .error-page .flex {
        flex-direction: row;
    }

    .error-page .flex .col {
        max-width: 50%;
    }

    .error-page .flex .col .text h1 {
        font-size: 45px;
    }
}

/* Single Page - Mobile First */
.single-page {
    padding: 80px 0 50px 0;
}

.single-page h1 {
    font-size: 32px;
    line-height: 1.3em;
}

@media (min-width: 769px) {
    .single-page h1 {
        font-size: 45px;
    }
}

.single-page h1, .single-page h2, .single-page h3, .single-page h4, .single-page h5, .single-page h6 {
    margin: 30px 0;
    font-weight: 600;
}

.single-page p {
    margin-bottom: 16px;
}

.single-page ul, .single-page ol {
    margin-bottom: 16px;
}

.single-page ul li, .single-page ol li {
    margin-bottom: 8px;
}

.single-page iframe {
    width: 100%;
}

.single-page .custom-post-info {
    margin: 20px 0;
}

.single-page .custom-post-info .custom-inline-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.single-page .custom-post-info .custom-inline-items .custom-icon-list-item {
    display: flex;
}

.single-page .custom-post-info .custom-inline-items .custom-icon-list-item a {
    display: flex;
    color: #333;
}

.single-page .custom-post-info .custom-inline-items .custom-icon-list-item .custom-icon {
    margin-right: 8px;
}

.single-page .custom-post-info .custom-inline-items .custom-icon-list-item .custom-icon svg {
    width: 20px;
    height: 20px;
}

.single-page .custom-post-info .custom-inline-items .custom-icon-list-item .custom-icon svg path {
    fill: #6ec1e4;
}

.single-page .custom-post-info .custom-inline-items .custom-icon-list-item .custom-post-info-text {
    display: flex;
    font-size: 14px;
}

.single-page .custom-post-info .custom-inline-items .custom-icon-list-item .custom-post-info-text a {
    color: #333;
}

/* Footer */
.footer {
    background-color: #1a1a2e;
    background-image: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
    padding: 60px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 169, 255, 0.3), rgba(255, 92, 110, 0.3), transparent);
}

.footer .logo {
    margin-bottom: 40px;
}

.footer .logo img {
    height: 40px;
    transition: opacity 0.3s ease;
}

.footer .logo a:hover img {
    opacity: 0.8;
}

.footer .flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 50px;
    gap: 24px 16px;
}

.footer .flex span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.footer .flex .col {
    width: 100%;
}

.footer .flex .col:last-of-type li {
    margin-bottom: 0;
}

.footer .flex .col:last-of-type li a {
    font-size: 13px;
}

.footer .flex ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer .flex ul li {
    margin-bottom: 8px;
}

.footer .flex ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer .flex ul li a:hover {
    color: #00a9ff;
    padding-left: 4px;
}

/* Trusted section */
.footer .trusted {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-bottom: 40px;
}

.footer .trusted span {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer .trusted ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 24px;
}

.footer .trusted ul li {
    margin-bottom: 16px;
    text-align: center;
}

.footer .trusted ul li img {
    height: 55px;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: brightness(1.1);
    max-width: 200px;
    width: auto;
}

.footer .trusted ul li img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Terms section */
.footer .terms {
    text-align: center;
}

.footer .terms ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-direction: column;
    gap: 8px;
}

.footer .terms ul li {
    margin: 0;
}

.footer .terms ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer .terms ul li a:hover {
    color: #fff;
}

/* Desktop styles */
@media (min-width: 768px) {
    .footer .trusted ul li {
        margin-bottom: 0;
    }
}

@media (min-width: 993px) {
    .footer {
        padding: 80px 0 50px;
    }

    .footer .flex {
        display: flex;
        flex-direction: row;
        gap: 0;
    }

    .footer .flex .col {
        flex: 1;
    }

    .footer .flex span {
        font-size: 14px;
    }

    .footer .flex ul li a {
        font-size: 14px;
    }

    .footer .flex .col:last-of-type li a {
        font-size: 14px;
    }

    .footer .flex ul {
        margin-bottom: 0;
    }

    .footer .trusted ul {
        justify-content: space-between;
        gap: 32px;
    }

    .footer .trusted ul li {
        text-align: left;
    }

    .footer .terms ul {
        flex-direction: row;
        gap: 0;
    }

    .footer .terms ul li {
        margin: 0 20px;
    }

    .footer .terms ul li::after {
        content: '•';
        margin-left: 40px;
        color: rgba(255, 255, 255, 0.3);
    }

    .footer .terms ul li:last-child::after {
        display: none;
    }
}

/* Forms */
.usercom-email-form-container {
    background: linear-gradient(268deg, #00a9ff 0%, #ff5c6e 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    outline: none;
    padding: 30px;
    border-radius: 15px;
}

.usercom-email-form-container h2, .single-post .modern-blog-content .article-body .usercom-email-form-container h2 {
    margin: 0 0 30px 0;

}

.usercom-email-form-container form {
    display: flex;
    gap: 20px;
}

@media (max-width: 576px){
    .single-post  .post-subscription .usercom-email-form-container form{
        flex-direction: column;
    }
}


.usercom-email-form-container form input[type=submit] {
    background-color: white;
}

.usercom-email-form-container form input[type=submit]:hover {
    background-color: #c36;
}

/* Headings with strong */
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
    color: #00a9ff;
}

.wp-block-image{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* WordPress Image Block */
.wp-block-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

/* Author Box - Mobile First */
.custom-author-box {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    flex-direction: column;
    text-align: center;
}

.custom-author-box:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.author-avatar {
    flex-shrink: 0;
    margin-right: 0;
    margin-bottom: 15px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
}

.author-info {
    display: block;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    justify-content: center;
}

.author-name a {
    text-decoration: none;
    color: inherit;
}

.author-name a:hover {
    color: #0073aa;
}

.linkedin-icon {
    display: inline-block;
    margin-left: 10px;
    margin-top: 10px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.linkedin-icon:hover {
    transform: scale(1.2);
}

.linkedin-icon svg {
    fill: #0077b5;
    width: 20px;
    height: 20px;
}

.author-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 601px) {
    .custom-author-box {
        flex-direction: row;
        padding: 25px;
        text-align: left;
    }

    .author-avatar {
        margin-right: 20px;
        margin-bottom: 0;
    }

    .author-avatar img {
        width: auto;
        height: auto;
    }

    .author-name {
        font-size: 20px;
        margin-bottom: 8px;
        justify-content: flex-start;
    }

    .author-bio {
        font-size: 16px;
        line-height: 1.75;
    }

    .linkedin-icon {
        margin-top: 0;
    }
}

/* Comparison Table */
.comparison-table .default tbody tr td:nth-of-type(2) {
    background-color: initial;
}

.comparison-table .default tbody tr:nth-of-type(2) td:nth-of-type(2),
.comparison-table .default tbody tr:nth-of-type(2) td:nth-of-type(3) {
    color: initial;
    font-weight: normal;
}

.comparison-table .default tbody tr:nth-of-type(3) td:not(:first-child) {
    font-weight: normal;
}

/* Table of Contents - Mobile First */
#ez-toc-container {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5em;
    padding: 15px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#ez-toc-container .ez-toc-title {
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 0.75em;
    color: #333;
}

#ez-toc-container ul.ez-toc-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

#ez-toc-container ul.ez-toc-list li {
    margin-bottom: 0.5em;
}

#ez-toc-container ul.ez-toc-list li a {
    color: #0073aa;
    text-decoration: none;
    font-size: 0.95em;
    line-height: 1.6;
    display: block;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

#ez-toc-container ul.ez-toc-list li a:hover {
    background-color: #f0f8ff;
    color: #005780;
}

#ez-toc-container ul.ez-toc-list ul {
    margin-left: 1em;
    border-left: 2px solid #eee;
    padding-left: 1em;
}

#ez-toc-container ul.ez-toc-list ul li {
    margin-bottom: 0.5em;
}

.ez-toc-widget-container li.active > a {
    font-weight: bold;
    color: #005780;
}

@media (min-width: 601px) {
    #ez-toc-container {
        padding: 15px 20px;
    }

    #ez-toc-container .ez-toc-title {
        font-size: 1.5em;
    }

    #ez-toc-container ul.ez-toc-list li a {
        font-size: 1em;
    }
}

.ez-toc-toggle {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.ez-toc-toggle button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s;
}

.ez-toc-toggle button:hover {
    background-color: #005780;
}

/* Free Tools */
.page-template-free-tools-template .chakra-text {
    margin-bottom: 0 !important;
}

.page-template-free-tools-template .chakra-button:hover {
    color: initial;
}

/* Related Posts - Mobile First */
.related-posts {
    margin-top: 50px;
    padding: 20px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.related-posts h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-post-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.related-post-item:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.related-post-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 0;
    margin-bottom: 15px;
}

.related-post-content {
    flex-grow: 1;
    width: 100%;
}

.related-post-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title:hover {
    color: #0073aa;
}

.related-post-date {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.related-post-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

@media (min-width: 769px) {
    .related-post-item {
        flex-direction: row;
        align-items: center;
    }

    .related-post-link {
        flex-direction: row;
        align-items: center;
    }

    .related-post-thumbnail img {
        width: 100px;
        height: 100px;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .related-post-title {
        font-size: 18px;
    }

    .related-post-date {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .author-container, .blog-container {
        width: 100%;
        margin: 0 auto;
    }
}

.separator-line {
    border-top: 1px solid #dcdbdb;
    margin: 20px 0 40px;
    width: 100%;
}

.author-header {
    text-align: center;
    margin-bottom: 40px;
}

.author-avatar {
    margin-bottom: 20px;
}

.author-avatar img {
    border-radius: 50%;
    width: 10%;
}

.author-info {
    margin-bottom: 20px;
}

.author-name {
    font-size: 24px;
    margin-bottom: 20px;
}

.author-linkedin {
    display: block;
    margin-bottom: 10px;
    color: #e91e63;
    font-size: 24px;
}

.author-linkedin:hover {
    color: #c2185b;
}

.author-bio {
    color: #555;
    margin-bottom: 20px;
}

.articles-by-author {
    margin-bottom: 40px;
}

.article-list {
    list-style: none;
    padding: 0;
}

.article-item {
    margin-bottom: 20px;
}

.article-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: transparent;
    cursor: pointer;
    text-decoration: none;
    border-color: currentColor;
    color: #02838d;
    margin-bottom: 0;
    margin-top: 20px;
}

.role {
    margin-bottom: 10px;
}

.article-thumbnail {
    flex: 0 0 auto;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.article-thumbnail img {
    max-width: 100%;
    height: auto;
}

.article-content {
    flex: 1;
}

.article-title {
    margin: 0 0 10px 0;
    font-weight: 600;
}

.article-excerpt {
    color: #555;
    margin-bottom: 10px;
    font-weight: 600;
}

.read-more {
    color: #0073b1;
}

@media (min-width: 769px) {
    .article-wrapper {
        flex-direction: row;
    }

    .article-thumbnail {
        flex: 0 0 150px;
        max-width: 150px;
        margin-right: 20px;
        margin-bottom: 0;
    }
}

/* Hero/Newsletter Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    width: 100%;
}

.follow-us {
    margin-top: 10px;
    text-align: center;
}

.follow-us p {
    font-size: var(--wp--preset--font-size--small);
    color: #333;
}

.social-icons a {
    margin-right: 10px;
    font-size: var(--wp--preset--font-size--large);
    color: #32A4F7;
    text-decoration: none;
}

.small-icon {
    font-size: 1.5rem;
}

.hero-right {
    width: 35%;
    background-color: #fefff6;
    color: #000000;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--wp--preset--shadow--natural);
}

.hero-right p {
    font-size: var(--wp--preset--font-size--medium);
    margin-bottom: 20px;
}

.subscribe-button {
    background-color: #CC3266;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: var(--wp--preset--font-size--medium);
    cursor: pointer;
}

.subscribe-button:hover {
    background-color: #B12455;
}

.hero-left {
    width: 60%;
}

.subscribe-box img {
    width: 25%;
    margin-bottom: 10px;
}

/* Newsletter page - post subscription spacing */
.post-subscription {
    margin-bottom: 30px;
}

.follow-us .small-icon {
    font-size: 16px;
    margin: 0 5px;
}

/* Categories Section */
.categories-section {
    padding: 20px 20px;
}

.categories-section h2 {
    margin-bottom: 20px;
}

.categories-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}

.category-block {
    box-sizing: border-box;
    display: flex;
    width: 32%;
    border-radius: 15px;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 3px 4px rgba(136, 136, 136, 0.28);
    margin-bottom: 20px;
    transition: border 0.3s ease;
}

.category-block a {
    color: #384257;
    text-decoration: none;
    opacity: 1;
    transition: all 0.4s ease;
    display: flex;
    width: 100%;
}

.category-content {
    padding: 20px;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.category-content i {
    font-size: 1.4rem;
    color: #6857FF;
}

/* Mobile-first: base styles for mobile */
.categories-container {
    flex-direction: column;
    gap: 0;
}

.category-block {
    width: 100%;
}

@media (min-width: 769px) {
    .categories-container {
        flex-direction: row;
        gap: 20px;
    }

    .category-block {
        width: auto;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.pagination a, .pagination .page-numbers {
    color: #0073e6;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.pagination a:hover, .pagination .page-numbers:hover {
    background-color: #0073e6;
    color: #fff;
}

.pagination .current {
    background-color: #0073e6;
    color: #fff;
    border: 1px solid #0073e6;
}

.active-category {
    background-color: #0073e6;
    color: #fff;
    border: 1px solid #0073e6;
}

.active-category a {
    color: #fff;
}

.active-category .category-content i {
    color: #fff;
}

/* Pros and Cons - Mobile-first */
.pros-cons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    padding: 10px;
}

.pros-section {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #e8f5e9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cons-section {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #ffebee;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pros-section h3, .cons-section h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.pros-section ul, .cons-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pros-section li, .cons-section li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}

.pros-section li .icon {
    color: #4CAF50;
    font-size: 20px;
    margin-right: 10px;
}

.cons-section li .icon {
    color: #F44336;
    font-size: 20px;
    margin-right: 10px;
}

@media (min-width: 601px) {
    .pros-cons-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0;
    }

    .pros-section, .cons-section {
        width: 48%;
        padding: 20px;
        margin-bottom: 0;
    }

    .pros-section li, .cons-section li {
        font-size: 16px;
    }

    .pros-section h3, .cons-section h3 {
        font-size: 22px;
        padding-bottom: 10px;
    }
}


:where(.wp-block-group.has-background) {
    padding: 10px 0;
}

/* WordPress Button Block - Mobile-first */
.wp-block-button {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.wp-block-buttons.is-layout-flex.wp-block-buttons-is-layout-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp-block-button__link {
    border-radius: 99px;
    color: white;
    font-size: 14px;
    text-align: center;
    background: linear-gradient(268deg, #ff5c6e 0%, #00a9ff 100%);
    text-decoration: none;
    display: inline-block;
    padding: 8px 16px;
    margin: 0 auto;
}

.wp-block-button__link:hover, .wp-block-button__link:focus {
    background: linear-gradient(268deg, #00a9ff 0%, #ff5c6e 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    outline: none;
}

@media (min-width: 481px) {
    .wp-block-button {
        margin: 15px 0;
    }

    .wp-block-button__link {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (min-width: 769px) {
    .wp-block-button {
        margin: 20px 0;
    }

    .wp-block-button__link {
        font-size: 18px;
        padding: 15px 30px;
    }
}

.single-page ul, .single-page ol {
    font-size: 17px;
}

.wp-block-list {
    margin: 2rem 0;
}

.single-page p {
    margin-bottom: 1.5rem;
    font-size: 17px;
    line-height: 24px;
}

.single-page h1, .single-page h2, .single-page h3, .single-page h4, .single-page h5, .single-page h6 {
    margin: 35px auto 25px;
    font-weight: 600;
}

.single-page h1 {
    font-size: 34px;
}

.single-page h2 {
    font-size: 24px;
}

.single-page h3 {
    font-size: 21px;
}

.single-page h4 {
    font-size: 18px;
}

/* Container with responsive horizontal padding */
.container {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 16px;
}

@media (min-width: 768px) {
    .container {
        padding-inline: 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-inline: 32px;
    }
}

/* Flexbox Layout - Mobile-first */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.main-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.sidebar {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    top: 20px;
}

@media (min-width: 769px) {
    .main-content {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }

    .sidebar {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

/* Rating Section - Mobile-first */
.rating-section {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rating-section h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.rating-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.pld-like-dislike-wrap {
    display: flex;
}

.pld-like-dislike-wrap .pld-common-wrap {
    display: flex;
    flex-direction: column;
    margin-right: 10px;
}

.rating-icons a {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
}

.rating-icons a svg, .rating-icons a img {
    width: 60px;
    height: 60px;
}

.rating-icons a:hover svg, .rating-icons a:hover img {
    transform: scale(1.1);
}

.rating-icons .pld-count-wrap {
    margin-top: 10px;
    font-size: 18px;
    color: #666;
}

@media (min-width: 601px) {
    .rating-section {
        padding: 30px;
    }

    .rating-icons a svg, .rating-icons a img {
        width: 80px;
        height: 80px;
    }

    .rating-icons {
        gap: 40px;
    }
}

/* Registration Box styles moved to cold-email.css */

/* Tip Section - Mobile-first */
.tip-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.lightbulb-icon {
    margin-bottom: 15px;
    flex-shrink: 0;
}

.lightbulb-icon svg {
    width: 40px;
    height: 40px;
}

.tip-content {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

@media (min-width: 601px) {
    .tip-section {
        flex-direction: row;
        text-align: left;
    }

    .lightbulb-icon {
        margin-bottom: 0;
        margin-right: 15px;
    }
}

.home-image {
    text-align: right;
}

/* WP Block Table responsive - scrollable on all screens */
.wp-block-table {
    overflow-x: auto;
    display: block;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

/* Only show grab cursor when table is scrollable */
.wp-block-table.is-scrollable {
    cursor: grab;
}

.wp-block-table.is-scrollable:active,
.wp-block-table.is-dragging {
    cursor: grabbing;
}

.wp-block-table.is-dragging {
    user-select: none;
}

.wp-block-table table.has-fixed-layout {
    table-layout: auto !important;
    width: max-content !important;
    min-width: 100%;
}

.wp-block-table table {
    width: max-content;
    min-width: 100%;
    margin-bottom: 1em;
}

.wp-block-table td,
.wp-block-table th {
    min-width: 100px;
    white-space: nowrap;
    padding: 8px;
}

/* Allow text wrap for longer content cells */
.wp-block-table td p,
.wp-block-table td strong {
    white-space: normal;
}

/* White Button */
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 15px;
    border-radius: 4px;
    background-color: white;
    height: 72px;
    color: rgba(51, 51, 51, 1);
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
}

.btn-white:hover {
    color: rgba(51, 51, 51, 1);
    opacity: 0.8;
    text-decoration: none;
}

/* Key Takeaway Box */
.key-takeaway-box {
    background-color: #f4f8fb;
    border-left: 5px solid #00a9ff;
    padding: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    font-size: 1.05em;
}

.key-takeaway-box h3 {
    margin-top: 0;
    color: #2D3748;
}

/* Tool Content Wrapper - Mobile-first */
.tool-content-wrapper {
    max-width: 900px;
    margin: 2rem auto;
    color: #4a5568;
    line-height: 1.7;
}

.tool-content-wrapper h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #2d3748;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.tool-content-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 2.5rem;
}

.tool-content-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.tool-content-wrapper p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.tool-content-wrapper strong {
    color: #2d3748;
}

.tool-content-wrapper .slt-intro-p, .tool-content-wrapper .spf-intro-p, .tool-content-wrapper .intro-p {
    font-size: 1.15rem;
    text-align: center;
    color: #667085;
    max-width: 750px;
    margin: 0 auto 3rem auto;
}

/* Stat Highlight - Mobile-first */
.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f8f9fa;
    border-left: 5px solid #00a9ff;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.stat-highlight.red-accent {
    border-left-color: #ff5c6e;
}

.stat-highlight .stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #00a9ff;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-highlight.red-accent .stat-number {
    color: #ff5c6e;
}

.stat-highlight .stat-text {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 400px;
}

/* Grids & Cards - Mobile-first */
.factors-grid, .tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.factor-card, .tip-card, .benefit-card, .metric-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.metric-card {
    padding: 1.5rem;
}

.factor-card .factor-icon, .tip-card .tip-icon, .benefit-card .benefit-icon {
    background-color: #e7f5ff;
    color: #00a9ff;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-card .benefit-icon {
    margin: 0 auto 1rem auto;
    border-radius: 50%;
}

.factor-card .factor-icon svg, .tip-card .tip-icon svg, .benefit-card .benefit-icon svg {
    width: 28px;
    height: 28px;
}

.factor-card ul {
    list-style-type: '✓ ';
    padding-left: 1.2rem;
    color: #4a5568;
}

/* Numbered Lists */
.how-it-works-steps {
    list-style: none;
    padding: 0;
    counter-reset: steps-counter;
    max-width: 910px;
    margin: 0 auto;
}

.how-it-works-steps li {
    counter-increment: steps-counter;
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.how-it-works-steps li::before {
    content: counter(steps-counter);
    font-size: 1.5rem;
    font-weight: 700;
    color: #00a9ff;
    background-color: #e7f5ff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.steps-list {
    list-style: none;
    padding-left: 0;
    counter-reset: steps-counter;
    display: grid;
    gap: 2rem;
}

.steps-list li {
    position: relative;
    padding-left: 50px;
}

.steps-list li::before {
    content: counter(steps-counter);
    counter-increment: steps-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(268deg, #ff5c6e 0%, #00a9ff 100%);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.practices-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 1.5rem;
}

.practices-list li {
    display: flex;
    align-items: flex-start;
}

.practices-list .icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    color: #00a9ff;
}

/* CTA Section */
.slt-cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.slt-cta-section h2 {
    margin-top: 0;
}

.slt-cta-button {
    display: inline-block;
    background: linear-gradient(268deg, #ff5c6e 0%, #00a9ff 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slt-cta-button:hover {
    box-shadow: 0 12px 28px rgba(0, 169, 255, 0.35);
}

/* How To Steps */
.how-to-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.how-to-steps .step {
    margin-bottom: 1rem;
}

.how-to-steps .step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00a9ff;
    border: 2px solid #e7f5ff;
    background-color: #f8f9fa;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.metric-analogy-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.metric-analogy-box .metric-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: #1a202c;
}

@media (min-width: 769px) {
    .tool-content-wrapper h1, .spf-content-container h1 {
        font-size: 2.5rem;
    }

    .tool-content-wrapper h2, .spf-content-container h2 {
        font-size: 2.2rem;
    }

    .stat-highlight {
        flex-direction: row;
        text-align: left;
    }

    .stat-highlight .stat-number {
        margin-bottom: 0;
        margin-right: 1.5rem;
    }

    .factors-grid, .tips-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metric-analogy-box {
        grid-template-columns: 1fr 1fr;
    }
}

/* Next Steps */
section.next-steps-section .text > p {
    text-align: center;
}

.cta-button {
    background: linear-gradient(268deg, #ff5c6e 0%, #00a9ff 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    transition: opacity 0.3s, transform 0.2s, box-shadow 0.2s, color 0.2s;
}

.cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile-first: next-steps-grid */
.next-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.next-step-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.next-step-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.next-step-card .cta-button {
    width: auto;
    display: inline-block;
}

@media (min-width: 769px) {
    .next-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .next-step-card {
        padding: 2rem;
    }

    .next-step-card .cta-button {
        width: 100%;
    }
}

.next-step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.next-step-card .next-step-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0;
}

.next-step-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 500;
}

.single-page .post-thumbnail img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.breadcrumbs {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .breadcrumbs {
        margin-bottom: 40px;
    }
}

/* Global Table Styles */
.wp-block-table table {
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
    border: none;
    background: #fff;
    border-radius: 8px;
}

.wp-block-table table th,
.wp-block-table table td {
    text-align: left;
    padding: 16px 20px;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
    white-space: nowrap;
}

.wp-block-table table th {
    background: #f8fafc;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a2e;
    border-bottom: 3px solid var(--color-primary, #299CE7);
}

.wp-block-table table td {
    color: #4b5563;
    line-height: 1.5;
}

.wp-block-table table tbody tr {
    background: #fff;
    transition: background-color 0.15s ease;
}

.wp-block-table table tbody tr:hover {
    background: #f0f9ff;
}

.wp-block-table table tr:last-child td {
    border-bottom: none;
}

.wp-block-table table td:first-child {
    font-weight: 600;
    color: #1a1a2e;
}

.wp-block-table table td img {
    max-height: 24px;
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
}
