/* General */

html {
    scroll-behavior: smooth;
}

.light-background {
    background-color: #f9f9f9;
}

/* Fix for unwanted list indentation */
ul, ol {
    margin-left: 0 !important;
    padding-left: 1.5em !important;
}

li {
    margin-left: 0 !important;
}

/* Reset indentation for content paragraphs */
p {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
}

/* Remove any container indentation */
.container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

/* Integration Icons */
.integration-icon-large img {
    border-radius: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 80px;
    height: 80px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}
.integration-icon-large img:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Text */

.hero-eyebrow {
    font-weight: 700;
    color: #f8405f;
    font-size: 21px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* App Store Icon */
.app-store-icon {
    display: block;
    width: 25px;
    height: 25px;
    margin-top: 10px;
}

/* Filter Tabs for Blog Categories */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.filter-tab {
    padding: 8px 24px;
    border-radius: 25px;
    border: 1px solid #e0e0e0;
    background-color: #f5f5f5;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab.active {
    background-color: #f8405f; /* Main website tint color */
    color: white;
    border-color: #f8405f;
}

.filter-tab:hover:not(.active) {
    background-color: #f9f9f9;
    border-color: #f8405f;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.blog-grid-item {
    width: 100%;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}

/* Blog Cards */
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 0;
    background: #fff;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-tags {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    max-width: calc(100% - 24px);
    justify-content: flex-end;
}

.blog-card-tag {
    font-weight: 500;
    font-size: 11px;
    padding: 5px 12px !important;
    border-radius: 15px !important;
    background-color: rgba(242, 242, 242, 0.95) !important;
    color: #363636 !important;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    /* Removed text-transform to preserve original casing like iPad, iPhone */
}

.blog-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 54px;
}

.blog-card-title a {
    color: #1D1D1F;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a:hover {
    color: #f8405f;
}

.blog-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6a6a6a;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-card-author-initial {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f8405f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.blog-card-author-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-author-info {
    flex: 1;
}

.blog-card-author-name {
    font-size: 14px;
    font-weight: 600;
    color: #1D1D1F;
    margin-bottom: 2px;
}

.blog-card-date {
    font-size: 13px;
    color: #80888f;
}

a.header-eyebrow:hover {
    color: #f8405f;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.hero-title {
    color: #1D1D1F;
    font-size: 72px;
    line-height: 1.05556;
    font-weight: 700;
    margin-bottom: 40px;
}

.hero-subtitle {
    color: #1D1D1F;
    font-size: 47px;
    line-height: 1.05556;
    font-weight: 700;
    margin-bottom: 40px;
}

.hero-description {
    font-size: 27px;
    font-weight: 500;
    line-height: 1.4;
}

.hero-subdescription {
    font-weight: 500;
    font-size: 16px;
}

img.hero-description-svg {
    width: 40px;
    height: 40px;
}

.hero-review {
    font-size: 23px;
    line-height: 1.21053;
    font-weight: 400;
    color: #1D1D1F;
}

.hero-testimonial {
    font-size: 27px;
    line-height: 1.21053;
    font-weight: 600;
}

.quotation {
    font-size: 30px;
    margin: 0 auto;
    quotes: "\201C""\201D""\2018""\2019";
    padding: 10px 20px;
    line-height: 1.4;
}
  
.quotation:before {
    content: open-quote;
    display: inline;
    height: 0;
    line-height: 0;
    left: -10px;
    position: relative;
    top: 30px;
    color: #ccc;
    font-size: 3em;
    font-family: "Times New Roman", Times, serif;
}

.quotation::after {
    content: close-quote;
    display: inline;
    height: 0;
    line-height: 0;
    left: 10px;
    position: relative;
    top: 35px;
    color: #ccc;
    font-size: 3em;
    font-family: "Times New Roman", Times, serif;
}

/* Header Titles */ 

.header-eyebrow {
    font-weight: 600;
    color: #f8405f;
    font-size: 20px;
    letter-spacing: 1px;
}

.header-title {
    color: #1D1D1F;
    font-size: 40px;
    line-height: 1.05556;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
}

.header-subtitle {
    color: #6a6a6a;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #6a6a6a;
}

.header-description {
    font-size: 21px;
    line-height: 1.8em;
    letter-spacing: .01em;
    font-weight: 500;
    color: #6a6a6a;
}

.header-feature {
    font-size: 20px;
    font-weight: 600;
}

/* BLOG Text */

.post-title  {
    color: #1D1D1F !important;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0;
    margin-top: 50px;
    margin-bottom: 20px;
}

.post-title a {
    color: #f8405f !important;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0;
}

.post-title a:hover {
    color: #c03e54 !important;
}

.post-subtitle  {
    color: rgb(41 41 41 / 86%);
    font-size: 24px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0;
    margin-top: 50px;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

h3.post-subtitle {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
    margin-top: 30px;
}

.post-step-title  {
    color: rgba(41, 41, 41, 1);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0;
    margin-top: 30px;
    margin-bottom: 10px;
}

.post-step-subtitle  {
    font-size: 17px;
    letter-spacing: .01em;
    line-height: 1.8em;
    margin: 10px 0 30px 0;
}

.post-paragraph { 
    font-size: 17px;
    letter-spacing: .01em;
    line-height: 1.6em;
    margin: 10px 0 10px 0;
}

ul.post-paragraph {
    margin-top: -20px !important;
    padding-top: 0px;
    list-style: lower-roman;
    padding-left: 20px;
}

ul.post-list {
    line-height: 1.8em;
    letter-spacing: .01em;
    font-size: 17px;
    margin-top: 10px !important;
    margin-left: 20px;
    padding-left: 0;
    padding-bottom: 1px !important;
    list-style-type: "• " !important;
}

.post-list li {
    margin-bottom: 10px;
    padding-left: 5px;
}

ol.post-list {
    line-height: 1.8em;
    letter-spacing: .01em;
    font-size: 17px;
    margin-top: 10px !important;
    margin-left: 20px;
    padding-left: 0;
    padding-bottom: 10px !important;
    list-style-type: decimal !important;
}

ol.post-list li {
    list-style-type: decimal !important;
    margin-bottom: 10px;
}

.post-date {
    color: #6a6a6a;;
    font-size: 17px;
    font-weight: 600;
}

/* Author Profile Picture */
.author-profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e8e8e8;
    object-fit: cover;
    margin-right: 10px;
    vertical-align: middle;
}
  
.author-info {
    display: flex;
    align-items: center;
}

.read-more-post {
    color: #1D1D1F !important;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0;
    margin-top: 50px;
    margin-bottom: 20px;
}

.read-more-post a {
    color: #1D1D1F !important;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0;
    margin-top: 50px;
    margin-bottom: 20px;
}

.read-more-post a:hover {
    text-decoration: underline;
}

.next-post-title a {
    color: #f8405f !important;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0;
}

.next-post-title a:hover {
    color: #c03e54 !important;
}

img.post {
    display: block;
    margin: auto;
    border-radius: 5px;
    margin-bottom: 15px;
    margin-top: 40px;
}

img.blog-post {
    display: block;
    margin: auto;
    border-radius: 5px;
    margin-bottom: 15px;
    margin-top: 40px;
    max-height: 340px;
    width: 50%;
    object-fit: cover;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.15) !important;
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.15) !important;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.15) !important;
    background-color: #efefef;
}

img.shadow {
    -webkit-box-shadow: 0 0 20px 5px rgba(0,0,0,.1);
    -moz-box-shadow: 0 0 20px 5px rgba(0,0,0,.1);
    box-shadow: 0 0 20px 5px rgba(0,0,0,.1);
}

figcaption {
    margin: 0;
    font-size: 13px;
    text-align: center;
    margin-bottom: 30px;
}

/* SVG */

.filter-accent {
    filter: invert(31%) sepia(86%) saturate(2532%) hue-rotate(329deg) brightness(97%) contrast(99%);
}

.button-color {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    height: 50px !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
    font-size: 16px !important;
    font-weight: 500;
    border-width: 0px !important;
    color: white !important;
    background-color: #f8405f !important;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.15) !important;
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.15) !important;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.15) !important;
}

.button-color:hover {
    background-color: #c03e54 !important;
    text-decoration: none !important;
}

.button img {
    margin-right: 10px;
}

/* Testimonials */

.star {
    width: 25px;
    margin: 0px;
  }

.text-gradient {
    color: transparent;
    background-image: -webkit-linear-gradient(
        right,
        #777dff 0px,
        #f154ff 200px,
        #f0357c 400px
      ),
      -webkit-linear-gradient(left, #777dff 0px, #497ce2 200px, #37bdde 400px);
    background-image: linear-gradient(
        to left,
        #777dff 0px,
        #f154ff 200px,
        #f0357c 400px
      ),
      linear-gradient(to right, #777dff 0px, #497ce2 200px, #37bdde 400px);
    background-size: 51% 100%;
    background-position: top left, top right;
    background-repeat: no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    padding-bottom: 6px;
    line-height: 1.14286;
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}
  
small {
    font-weight: 700;
}

.column.review {
    background-color: hsl(0, 0%, 98%);
    margin: 10px;
    border-radius: 20px;
    padding: 25px;
}

/* Columns */ 

.columns {
    margin-top: 0px !important;
}

/* Header */ 

#header {
    background-color: #97D9E1;
    background-image: linear-gradient(0deg, #D9AFD9 0%, #97D9E1 100%);
}

#header-how-it-works {
    background-color: #f9f9f9;
    background-image: linear-gradient(179deg, #D9AFD9 10%, #97D9E1 40%, #97D9E100 90%);
}

/* Footer */ 

.footer {
    background-color: #DAE7F5 !important;
}
.footer a {
    color: #363636;
}

.footer a:hover {
    color: #4a4a4a;
    text-decoration: underline;
}

.footer-top {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.footer-bottom {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
.email {
    min-width: 200px;
    padding: 10px;
    margin-top: 10px;
}

.app-store {
    padding-top: 20px;
}

.company-copyright {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.coffee {
    margin-left: 5px;
    margin-right: 5px;
}

.social {
    height: 50px;
}

.social li {
    color: #fff!important;
    background-color: #f8405f;
    padding-top: 3px;
    padding-left: 7px;
    padding-bottom: 15px;
    border-radius: 30px;
    height: 30px;
    width: 30px;
    font-size: 14px;
    line-height: 30px;
    float: left;
    margin: 5px;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.10) !important;
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.10) !important;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.10) !important;
}

.social li:hover {
    background-color: #c03e54 !important;
}

.social li img {
    height: 16px;
    width: 16px;
    filter: brightness(0) invert(1);
}

/* Sections */ 

.section-enjoy {
    background-color: #dde4e1;
    background-image: linear-gradient(0deg, #dde4e1 0%, #dfe6e3 100%);
    overflow: hidden !important;
    margin-top: 0px !important;
    padding-bottom: 0px !important;
    position: relative;
}

.section-enjoy .decoration {
    display: inline-block;
    height: 300px;
    width: 50%;
    overflow: hidden !important;
}

.section-enjoy .decoration img {
    height: 650px;
    position: absolute;
    bottom: -60px;
    right: 0px;
}

.section-c {
    background-color: #DEE6E3;
    background-image: linear-gradient(0deg, #DEE6E3 0%, #DEE6E3 100%);
}

.section-d {
    background-color: #DEE6E3;
    background-image: linear-gradient(0deg, #DEE6E3 0%, #DEE6E3 100%);
}

.section-e {
    background-color: #DEE6E3;
    background-image: linear-gradient(0deg, #DEE6E3 0%, #DEE6E3 100%);
}

.section-f {
    background-color: #DEE6E3;
    background-image: linear-gradient(0deg, #DEE6E3 0%, #DEE6E3 100%);
}

.section-featured {
    background: hsl(0, 0%, 98%);
}

.section-featured .app-store-featured {
    max-height: 140px;
    width: 100%;
}

.sources {
    max-width: 400px !important;
}

img.sources-svg {
    width: 60px;
    height: 60px;
    box-shadow: 0px 1px 0px 0.5px rgb(187,200,194,0.5);
    -webkit-box-shadow: 0px 1px 0px 0.5px rgb(187,200,194,0.5);
    -moz-box-shadow: 0px 1px 0px 0.5px rgb(187,200,194,0.5);
    border-radius: 15px;
}
/* Navigation Bar */

body {
    padding-top: 85px;
}

@media screen and (max-width: 1023px) {
    body {
        padding-top: 75px;
    }
}

.navbar {
}

/* Navigation Bar */
.navbar {
    min-height: 4.5em !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    margin: 15px auto;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid #e5e7eb;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.10) !important;
    -moz-box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.10) !important;
    box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.10) !important;
}

.navbar.is-fixed-top {
    width: 90%;
    max-width: 1200px;
}

.navbar-brand {
    padding-left: 20px !important;
}

.navbar-brand .navbar-item {
    margin-left: -10px;
}

@media screen and (max-width: 1023px) {
    .navbar-menu.is-active {
        box-shadow: none;
        background-color: transparent;
    }
}

a.navbar-item {
    color: #1D1D1F;
    font-weight: 500;
}

a.navbar-item:hover {
    color: #f8405f !important;
    background-color: transparent !important;
}

a.navbar-item:active {
    color: #f8405f !important;
}

.navbar-item img {
    max-height: 50px !important;
}

.navbar-reviews-stars {
    margin-left: -2px;
    margin-top: -4px;
    vertical-align: middle;
  }

.navbar-reviews {
    font-size: 12px;
    padding: 20px;
}

.navbar-reviews a {
    color: #80888f !important;
    font-weight: 400;
    padding-left: 5px;
}

.navbar-reviews a:hover {
    color: #f8405f !important;
}

/* Horizontal Line */

.is-divider {
    display: block;
    position: relative;
    border-top: .1rem solid #eee;
    height: .1rem;
    margin: 2rem 0;
    text-align: center;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.is-divider-full-width {
    display: block;
    position: relative;
    border-top: .1rem solid #eee;
    height: .1rem;
    margin: 2rem 0;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.is-divider-dots {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 55px;
    height: 20px;
    background-image: radial-gradient(circle, #444, #444 3px, transparent 3px, transparent);
    background-size: 20px 30px;
}

/* Tag */

.tag {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 14px !important;
    font-weight: 500;
    line-height: 1;
    color: #fff !important;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #f8405f !important;
    border-radius: 100px !important;
}

.tag:hover {
    background-color: #c03e54 !important;
    text-decoration: none !important;
}

/* What's New */
.markdown-style {
    background-color: transparent !important;
}

.markdown-style ul, markdown-style ol {
    list-style: disc;
    margin-top: 0px !important;
    margin-bottom: 20px !important;
    padding-left: 2em;
}

.markdown-style h2 {
    font-weight: 700 !important;
    font-size: 28px !important;
    padding-bottom: 5px !important;
    margin-top: 60px !important;
    margin-bottom: 0px !important;
}

.markdown-style h4 {
    font-weight: 700;
    font-size: 1em;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.markdown-style h6 {
    font-weight: 500 !important;
    font-size: 1em !important;
    margin-top: 5px !important;
    margin-bottom: 20px !important;
}

.markdown-style a.anchor {
    display: none;
}

h4[id^="new"] {
    color: white;
    background: #4cd964;
    align-items: center;
    border-radius: 0.375em;
    display: inline-flex;
    font-size: .75rem;
    height: 2em;
    justify-content: center;
    line-height: 1.5;
    padding-left: 0.75em;
    padding-right: 0.75em;
    white-space: nowrap;
}

h4[id^="improved"] {
    color: white;
    background: #007aff;
    align-items: center;
    border-radius: 0.375em;
    display: inline-flex;
    font-size: .75rem;
    height: 2em;
    justify-content: center;
    line-height: 1.5;
    padding-left: 0.75em;
    padding-right: 0.75em;
    white-space: nowrap;
}

h4[id^="removed"] {
    color: white;
    background: #ff3b30;
    align-items: center;
    border-radius: 0.375em;
    display: inline-flex;
    font-size: .75rem;
    height: 2em;
    justify-content: center;
    line-height: 1.5;
    padding-left: 0.75em;
    padding-right: 0.75em;
    white-space: nowrap;
}

/* Animation */

.fade-in {
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
    -moz-animation: fadeIn ease 1s;
    -o-animation: fadeIn ease 1s;
    -ms-animation: fadeIn ease 1s;
  }
  @keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-moz-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-webkit-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-o-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-ms-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
  }
}

/* Accordion */

details {
    border-color: #f8405f;
    border: 1px solid;
    background: #f8405f;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 4px;
    transform-origin: top center;
    transform: rotate(0.1deg);
    transition: all 0.3s;
    margin-top: 8px;
}

details:hover {
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.10) !important;
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.10) !important;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.10) !important;
}

details p {
    border-color: #f8405f;
    line-height: 1.7;
    margin: 10px 0 0;
    padding: 0 20px 15px;
}

details[open] {
    transition: all 0.1s;
    min-height: 100px;
    background: #f7f7f7;
    color: #434343;
    border-color: #f8405f;
}

summary {
    outline: none;
    font-size: 16px;
    padding: 13px;
}

summary:selection {
    background: transparent;
}

summary .open {
    display: inline;
}

summary .close {
    display: none;
}

[open] summary .close {
    display: inline;

}

[open] summary .open {
    display: none;
}

[open] summary {
    display: inline;
}

/* Icon */

/* Share Section */
.share-section {
    margin: 40px 0;
    text-align: left;
    font-size: 16px;
}

.share-link {
    color: #363636;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s ease;
}

.share-link:hover {
    color: #4a4a4a;
    text-decoration: underline;
}

.share-icon {
    width: 14px;
    height: 14px;
}

.share-facebook .share-icon {
    filter: brightness(0.2) sepia(1) hue-rotate(180deg) saturate(5);
}

.share-twitter .share-icon {
    filter: brightness(0.5) sepia(1) hue-rotate(140deg) saturate(6);
    width: 12px;
    height: 12px;
}

.share-separator {
    margin: 0 12px;
    color: #666;
}

/* Read More From Blog Section */
.read-more-section {
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: left;
}

.section-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.section-dots .dot {
    width: 6px;
    height: 6px;
    background-color: #333;
    border-radius: 50%;
}

.read-more-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: left;
}

.read-more-title .blog-link {
    color: #f8405f;
    text-decoration: none;
}

.read-more-title .blog-link:hover {
    text-decoration: underline;
}

.latest-post-preview {
    margin-top: 30px;
    text-align: left;
}

.latest-post-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.latest-post-title a {
    color: #f8405f;
    text-decoration: none;
}

.latest-post-title a:hover {
    text-decoration: underline;
}

.latest-post-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.author-signature {
    color: #666;
    margin-top: 30px;
    font-size: 16px;
}

/* Blog post content links */
section.section .container.is-max-desktop a:not(.share-link):not(.blog-link):not(.tag):not(.header-eyebrow):not(.latest-post-title a):not(.next-post-title a) {
    color: #f8405f;
    text-decoration: none;
}

section.section .container.is-max-desktop a:not(.share-link):not(.blog-link):not(.tag):not(.header-eyebrow):not(.latest-post-title a):not(.next-post-title a):hover {
    text-decoration: underline;
}

/* Contact Form */

input {
    min-height: 40px;
    font-size: 16px;
    padding: 8px;
    border-radius: 4px;
    border-width: 1px;
    border-color: #dedede;
    background-color: #f7f7f7;
    border-style: solid;
}

input#name {
    width: 100%;
}

input#email {
    width: 100%;
}

input#social_link {
    width: 100%;
}

textarea {
    width: 100%;
    min-height: 40px;
    padding: 8px !important;
    font-size: 16px;
    background-color: #f7f7f7;
    border-color: #dedede;
    border-radius: 4px;
}

input.btn {
    border-radius: 40px;
    color: #fff;
    background-color: #f8405f;
    border-width: 0px;
    font-weight: 500;
    cursor: pointer;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    height: 50px !important;
    padding-right: 20px !important;
    padding-left: 20px !important;
    font-size: 16px !important;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.10) !important;
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.10) !important;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.10) !important;
}

input.btn:hover {
    background-color: #f8405f !important;
}

/* Notifications */

.hero-notification {
    margin-right: 5.0rem;
}

/* Tooltips */

.tooltip {
    position: relative;
    display: inline-block;
}
  
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    left: 50%;
    margin-left: -60px;
}
  
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}
  
.tooltip:hover .tooltiptext {
    visibility: visible;
}

.continue-reading {
    margin-left: auto;
}

.continue-reading a {
    color: #f8405f;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
    padding: 6px 14px;
    background-color: #fff5f7;
    border-radius: 20px;
    white-space: nowrap;
}

.continue-reading a:hover {
    background-color: #f8405f;
    color: white;
}

.continue-reading a::after {
    content: '→';
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.continue-reading a:hover::after {
    transform: translateX(3px);
}

/* Social Proof */
.social-proof {
    font-size: 16px;
    font-weight: 500;
    color: #4a4a4a;
}

.social-proof .ratings {
    display: flex;
    align-items: center;
}

.social-proof .ratings .star {
    width: 20px;
    height: 20px;
}

.social-proof .ratings a {
    color: #4a4a4a;
    margin-left: 5px;
}

.social-proof .ratings a:hover {
    text-decoration: underline;
}

.social-proof .featured-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.social-proof .featured-badge .apple-badge {
    margin-right: 0;
    filter: brightness(0);
}

/* Improve mobile navigation */
.navbar-burger {
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease;
    height: 65px !important;
}

.navbar-burger:hover {
    background-color: transparent !important;
}

.navbar-burger.is-active {
    background-color: transparent !important;
}

@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: #fff;
        padding: 10px;
    }
    
    .navbar-item {
        padding: 15px;
    }
    
    .navbar-start {
        margin-bottom: 10px;
    }
    
    .navbar-reviews {
        padding: 10px 15px;
    }
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: auto;
    overflow: hidden;
}

/* Ensure slideshow column is vertically centered */
.columns.is-vcentered .column.is-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.75s ease-in-out;
    pointer-events: none;
}

.slideshow-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Initial page load animation for hero section */
@keyframes pageLoadFade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.hero-body {
    animation: pageLoadFade 0.5s ease-out;
}

/* Social Media Channel Icons */
.social-media-channel {
    height: 24px;
    object-fit: cover;
    filter: sepia(100%) saturate(100%) brightness(0%) hue-rotate(180deg);
}

.example-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.example-card-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.example-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(50, 50, 50, 0.7);
    padding: 12px;
    color: white;
}

.g-recaptcha {
    width: 100%;
}

/* Steps Section Styles */
.section-steps {
    background-color: #f9f9f9;
}

.step-box {
    display: flex;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.step-number {
    font-size: 40px;
    font-weight: 700;
    color: #f8405f;
    margin-right: 20px;
    line-height: 1;
    opacity: 0.8;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #363636;
}

.step-description {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.6;
}

.step-image {
    text-align: center;
    margin-top: 20px;
    height: 300px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center top;
}

@media screen and (max-width: 768px) {
    .step-box {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.feature-card-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-card-image {
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    margin-top: auto;
    background: linear-gradient(45deg, #e9f5ff 0%, #c7e0ff 50%, #d3e4f8 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 20px 20px;
    background-image: 
        linear-gradient(45deg, rgba(0,0,0,0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0,0,0,0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.05) 75%);
    opacity: 0.5;
}

.feature-card-image img {
    height: 80%;
    position: relative;
    opacity: 0.8;
    z-index: 1;
}

.feature-card:nth-child(1) .feature-card-image {
    background: linear-gradient(45deg, #e9f5ff 0%, #b2d7ff 30%, #c7e0ff 60%, #d3e4f8 100%);
}

.feature-card:nth-child(2) .feature-card-image {
    background: linear-gradient(45deg, #e0f9eb 0%, #c5f0dc 40%, #b8e8d0 70%, #d5f2e3 100%);
}

.feature-card:nth-child(3) .feature-card-image {
    background: linear-gradient(45deg, #fdf0f4 0%, #ffcad6 35%, #ffd6e0 65%, #fde2e9 100%);
}

.feature-card:nth-child(4) .feature-card-image {
    background: linear-gradient(135deg, #e4edff 0%, #d0d9fc 40%, #b0c0fa 70%, #e2e9fd 100%);
}

.feature-card:nth-child(5) .feature-card-image {
    background: linear-gradient(60deg, #fff7e9 0%, #ffebd0 30%, #ffe8c2 60%, #ffefd3 100%);
}

.feature-card:nth-child(6) .feature-card-image {
    background: linear-gradient(120deg, #f2f2fd 0%, #dedcff 35%, #d3d0ff 65%, #e5e5fa 100%);
}

.feature-card:nth-child(7) .feature-card-image {
    background: linear-gradient(45deg, #e0f5f7 0%, #c2f0f4 40%, #afeaef 65%, #d5f0f2 100%);
}

.feature-card:nth-child(8) .feature-card-image {
    background: linear-gradient(135deg, #fdf7e9 0%, #f8e3bc 35%, #f5d6a3 65%, #f5edd5 100%);
}

.feature-card:nth-child(9) .feature-card-image {
    background: linear-gradient(60deg, #f9ecfa 0%, #f0c8f4 35%, #e8b6f0 65%, #f0d5f2 100%);
}

.feature-card:nth-child(10) .feature-card-image {
    background: linear-gradient(120deg, #e9fdf0 0%, #c4f5d7 40%, #aff0c4 65%, #d5f5e2 100%);
}

.feature-card:nth-child(11) .feature-card-image {
    background: linear-gradient(45deg, #fdecec 0%, #ffc2c2 30%, #ffb0b0 65%, #f5d5d5 100%);
}

.feature-card:nth-child(12) .feature-card-image {
    background: linear-gradient(135deg, #ecfdfd 0%, #c2f5f5 35%, #a8f0f0 65%, #d5f5f5 100%);
}

.feature-card:nth-child(13) .feature-card-image {
    background: linear-gradient(60deg, #f9f9e9 0%, #f0f0c2 40%, #e6e68e 65%, #f0f0d5 100%);
}

.feature-card:nth-child(14) .feature-card-image {
    background: linear-gradient(120deg, #f0ecfd 0%, #d9c2f5 35%, #cba6f0 65%, #e2d5f5 100%);
}

.feature-card:nth-child(15) .feature-card-image {
    background: linear-gradient(45deg, #ecf0fd 0%, #c2d5f5 40%, #abc6f0 65%, #d5e2f5 100%);
}

/* Creative multicolor gradients with mixed patterns */
.feature-card:nth-child(1) .feature-card-image {
    background: linear-gradient(135deg, #e0efff 0%, #b2d7ff 35%, #84c1ff 65%, #c9e0f7 100%);
}

.feature-card:nth-child(2) .feature-card-image {
    background: radial-gradient(circle at bottom left, #e0f9eb 0%, #b5ebd1 40%, #a5e0c3 70%, #d5f2e3 100%);
}

.feature-card:nth-child(3) .feature-card-image {
    background: linear-gradient(to right, #fdf0f4 0%, #ffcad6 35%, #ffadbf 65%, #fde2e9 100%);
}

.feature-card:nth-child(4) .feature-card-image {
    background: radial-gradient(circle at top right, #e4edff 0%, #d0d9fc 40%, #b0c0fa 70%, #e2e9fd 100%);
}

.feature-card:nth-child(5) .feature-card-image {
    background: linear-gradient(to bottom right, #fff7e9 0%, #ffe0b0 35%, #ffd494 65%, #ffefd3 100%);
}

.feature-card:nth-child(6) .feature-card-image {
    background: radial-gradient(ellipse at center, #f2f2fd 0%, #dedcff 40%, #c4c0fa 70%, #e5e5fa 100%);
}

.feature-card:nth-child(7) .feature-card-image {
    background: linear-gradient(to top left, #e0f5f7 0%, #c2f0f4 40%, #a0e6ec 65%, #d5f0f2 100%);
}

.feature-card:nth-child(8) .feature-card-image {
    background: radial-gradient(circle at bottom right, #fdf7e9 0%, #f8e3bc 35%, #f5d089 65%, #f5edd5 100%);
}

.feature-card:nth-child(9) .feature-card-image {
    background: linear-gradient(to right, #f9ecfa 0%, #f0c8f4 30%, #e68eec 65%, #f0d5f2 100%);
}

.feature-card:nth-child(10) .feature-card-image {
    background: radial-gradient(ellipse at top left, #e9fdf0 0%, #c4f5d7 40%, #97eab5 65%, #d5f5e2 100%);
}

.feature-card:nth-child(11) .feature-card-image {
    background: linear-gradient(to top right, #fdecec 0%, #ffc2c2 30%, #ff9e9e 65%, #f5d5d5 100%);
}

.feature-card:nth-child(12) .feature-card-image {
    background: radial-gradient(circle at center, #ecfdfd 0%, #c2f5f5 40%, #97ebeb 65%, #d5f5f5 100%);
}

.feature-card:nth-child(13) .feature-card-image {
    background: linear-gradient(to bottom left, #f9f9e9 0%, #f0f0c2 35%, #e6e68e 65%, #f0f0d5 100%);
}

.feature-card:nth-child(14) .feature-card-image {
    background: radial-gradient(ellipse at bottom, #f0ecfd 0%, #d9c2f5 35%, #bf97e9 65%, #e2d5f5 100%);
}

.feature-card:nth-child(15) .feature-card-image {
    background: linear-gradient(to left, #ecf0fd 0%, #c2d5f5 35%, #9cbaee 65%, #d5e2f5 100%);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Updated feature-tag to fix vertical alignment */
.feature-tag {
    display: inline-block;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 30px;
    margin-left: 10px;
    font-weight: 600;
    vertical-align: middle;
    position: relative;
    top: -2px;
    border-style: solid;
    border-color: #f9f9f9;
    border-width: 1px;
}

/* Feature Arrows - Only keeping the one that's still in use */
.features-arrow-symbol {
    font-size: 1.3em;
    margin-left: 8px;
    vertical-align: middle;
}

/* Fix for feature tag vertical alignment */
.feature-card-title .feature-tag {
    vertical-align: middle;
    position: relative;
    top: -2px;
}

/* Feature Title */
.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #363636;
}

.feature-description {
    font-size: 16px;
    line-height: 1.5;
    color: #6a6a6a;
}

/* Hero Image */
.hero-image {
    width: 60%;
    margin: 0 auto;
    display: block;
}