* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary-color: #4ECDC4;
    --primary-hover: #3bb3ac;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gradient-start: #f5f7fa;
    --gradient-end: #c3cfe2
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px #0000001a
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white)
}

.nav {
    display: flex;
    gap: 2rem
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color .3s ease;
    position: relative
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color)
}

.nav-link:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width .3s ease
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%
}

.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.hero-text {
    padding-right: 2rem
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.2
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6
}

.hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px #0000001a
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .3s ease
}

.hero-image:hover .hero-img {
    transform: scale(1.05)
}

.services {
    padding: 6rem 0;
    background-color: var(--white)
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.services-text {
    opacity: 0;
    transform: translate(-100px);
    transition: all .8s ease
}

.services-text.animate {
    opacity: 1;
    transform: translate(0)
}

.services-header {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem
}

.services-label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.4rem
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 3rem;
    line-height: 1.2
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem
}

.service-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all .3s ease;
    background-color: var(--bg-light)
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px #0000001a;
    background-color: var(--white)
}

.service-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0
}

.service-content {
    flex: 1
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: .5rem
}

.service-description {
    color: var(--text-light);
    font-size: .95rem;
    line-height: 1.5
}

.services-image {
    opacity: 0;
    transform: translate(100px);
    transition: all .8s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px #0000001a
}

.services-image.animate {
    opacity: 1;
    transform: translate(0)
}

.hands-heart-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .3s ease
}

.services-image:hover .hands-heart-img {
    transform: scale(1.05)
}

.contact {
    padding: 4rem 0;
    background-color: var(--bg-light);
    text-align: center
}

.contact-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap
}

.contact-item {
    font-size: 1.1rem;
    color: var(--text-light)
}

.contact-label {
    font-weight: 700;
    color: var(--text-color)
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color .3s ease
}

.contact-link:hover {
    color: var(--primary-hover);
    text-decoration: underline
}

.footer {
    background-color: var(--secondary-color);
    color: #bdc3c7;
    padding: 2rem 0;
    text-align: center
}

.footer-text {
    font-size: .9rem
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color .3s ease
}

.footer-link:hover {
    color: var(--primary-hover)
}

@media(max-width:768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center
    }

    .hero-title {
        font-size: 2.2rem
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .service-card-wide {
        grid-column: 1
    }

    .services-title {
        font-size: 2rem
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem
    }

    .nav {
        gap: 1rem
    }

    .nav-link {
        font-size: .9rem
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 15px
    }

    .hero {
        padding: 2rem 0
    }

    .hero-title {
        font-size: 1.8rem
    }

    .hero-subtitle {
        font-size: 1rem
    }

    .services {
        padding: 4rem 0
    }

    .services-title {
        font-size: 1.6rem
    }

    .service-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center
    }

    .service-icon {
        align-self: center
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0)
}

html {
    scroll-behavior: smooth
}

@media(max-width:1200px) {

    .hero-img,
    .hands-heart-img {
        max-width: 100%;
        height: auto
    }
}

.hero-img {
    object-fit: cover;
    max-height: 500px
}

.hands-heart-img {
    object-fit: cover;
    max-height: 400px
}

.hero-img,
.hands-heart-img {
    opacity: 0;
    transition: opacity .5s ease
}

.hero-img.loaded,
.hands-heart-img.loaded {
    opacity: 1
}

.service-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .1))
}

.services-icon {
    filter: brightness(0) saturate(100%) invert(70%) sepia(98%) saturate(2618%) hue-rotate(158deg) brightness(95%) contrast(86%)
}

@media(max-width:480px) {

    .services-image,
    .hero-image {
        margin-top: 2rem
    }

    .service-card {
        text-align: left;
        flex-direction: row
    }

    .service-icon {
        width: 40px;
        height: 40px
    }
}

.about-hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem
}

.about-hero-image {
    max-width: 600px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px #0000001a
}

.about-hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .3s ease
}

.about-hero-image:hover .about-hero-img {
    transform: scale(1.05)
}

.about-content {
    padding: 6rem 0;
    background-color: var(--white)
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 4rem
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: left
}

.about-paragraph:last-child {
    margin-bottom: 0
}

.about-bottom-image {
    display: flex;
    justify-content: center;
    margin-top: 3rem
}

.charlotte-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px #0000001a;
    transition: transform .3s ease
}

.charlotte-img:hover {
    transform: scale(1.05)
}

@media(max-width:768px) {
    .about-title {
        font-size: 2.2rem
    }

    .about-hero-image {
        max-width: 100%
    }

    .about-paragraph {
        font-size: 1rem;
        text-align: center
    }

    .charlotte-img {
        max-width: 100%
    }
}

@media(max-width:480px) {
    .about-title {
        font-size: 1.8rem
    }

    .about-content {
        padding: 4rem 0
    }

    .about-paragraph {
        font-size: .95rem;
        margin-bottom: 1.5rem
    }
}

.header-input {
    padding: .4rem .6rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: .9rem;
    width: 180px
}

.header-input:focus {
    border-color: var(--primary-color);
    outline: none
}

.header-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: .4rem .8rem;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease
}

.header-submit:hover {
    background-color: #a71f3e
}

@media(max-width:768px) {
    .header-signup {
        display: none
    }
}

.header-signup .formkit-alert {
    margin: 0 0 0 .75rem;
    padding: .25rem .5rem;
    border-radius: 4px;
    font-size: .85rem;
    line-height: 1.2;
    display: inline-block;
    vertical-align: middle
}

@media(max-width:980px) {
    .header-signup .formkit-alert {
        display: none
    }
}

.header-submit[disabled] {
    opacity: .8;
    cursor: not-allowed
}

.header-signup .formkit-powered-by-convertkit-container,
.header-signup .formkit-powered-by,
.formkit-powered-by-convertkit-container,
.formkit-powered-by-convertkit {
    display: none !important
}

.formkit-modal,
.formkit-overlay,
.formkit-backdrop,
.seva-overlay,
.formkit-sticky-bar,
.formkit-slide-in {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important
}

html.formkit-modal-open,
body.formkit-modal-open {
    overflow: auto !important
}

.header-signup {
    display: flex;
    align-items: center;
    gap: .5rem
}

.header-signup.success .header-fields {
    display: none
}

.header-signup .formkit-alert li {
    display: inline-block;
    margin: 0;
    padding: .25rem .5rem;
    border-radius: 4px;
    font-size: .85rem;
    line-height: 1.2
}

.header-signup .formkit-alert-success {
    background: #e6f9f2;
    border: 1px solid #10bf7a;
    color: #0c905c
}

.header-signup .formkit-alert-error {
    background: #fde8e2;
    border: 1px solid #f2643b;
    color: #a83219
}

.header-signup .formkit-alert {
    list-style: none;
    margin: 0;
    padding: 0
}

.header-signup .formkit-alert li {
    display: inline-block;
    margin: 0;
    padding: .35rem .6rem;
    border-radius: 6px;
    font-size: .9rem;
    line-height: 1.2;
    vertical-align: middle;
    border: 0;
    box-shadow: none
}

.header-signup .formkit-alert-success {
    background: transparent;
    color: var(--white)
}

.header-signup .formkit-alert-error {
    background: #c9284d40;
    color: var(--white);
    border: 1px solid rgba(201, 40, 77, .6)
}

.header-signup .formkit-alert {
    list-style-type: none
}

.header-signup .formkit-alert li::marker {
    content: ""
}

.nav .book-now {
    margin-left: 1rem;
    padding: .5rem 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 9999px;
    font-weight: 700
}

.nav .book-now:hover {
    opacity: .9
}

.book-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: .75rem 1.25rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700
}

.book-cta:hover {
    opacity: .9
}

@media(max-width:768px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px #0000001a;
        display: none
    }

    .nav.mobile-open {
        display: flex !important
    }

    .mobile-menu-btn {
        display: block !important
    }
}

.contact-form-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .5s ease-in-out;
    margin-top: 0
}

.contact-form-container.active {
    max-height: 1000px;
    opacity: 1;
    margin-top: 2rem
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px #0000001a
}

.contact-toggle {
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    font-size: inherit
}

.contact-toggle:hover {
    color: var(--primary-hover)
}

.form-group {
    margin-bottom: 1.5rem
}

.form-label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
    color: var(--text-color)
}

.form-input,
.form-textarea {
    width: 100%;
    padding: .8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color .3s ease
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color)
}

.form-textarea {
    min-height: 150px;
    resize: vertical
}

.form-submit {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: .8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .3s ease;
    width: 100%
}

.form-submit:hover {
    background-color: var(--primary-hover)
}

.faq-hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.faq-hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #4ecdc4;
    margin-bottom: 1rem
}

.faq-intro {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 1.1rem
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 20px
}

.faq-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: .5rem;
    color: #333
}

.faq-content p {
    margin-bottom: 1rem;
    line-height: 1.5
}

.faq-content strong {
    display: block;
    font-weight: 600;
    margin-bottom: .3rem
}

.privacy-hero-section {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.privacy-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #4ecdc4;
    margin-bottom: 1rem
}

.privacy-hero-image {
    max-width: 600px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px #0000001a
}

.privacy-hero-image img {
    width: 100%;
    height: auto;
    display: block
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 20px;
    text-align: left;
    margin-bottom: 2rem
}

.privacy-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-top: 1.8rem;
    margin-bottom: .5rem
}

.privacy-content p,
.privacy-content ul {
    margin-bottom: 1rem
}

@media(max-width:768px) {

    html,
    body {
        overflow-x: hidden;
        max-width: 100vw
    }

    .services-text,
    .services-image {
        transform: none !important;
        opacity: 1 !important
    }

    .hero,
    .hero-content,
    .hero-image,
    .hero-text {
        max-width: 100% !important
    }

    img {
        max-width: 100% !important
    }

    .logo {
        font-size: 1rem;
        text-decoration: none
    }

    .logo h1 {
        font-size: 1rem;
        margin: 0
    }
}

.privacy-content ul,
.faq-content ul {
    padding-left: 1.5rem;
    list-style-position: outside;
    margin-left: 1rem
}

.privacy-content li,
.faq-content li {
    margin-bottom: 0.5rem
}

/* Resources page */
.service-card-link {
    color: inherit;
    text-decoration: none
}

.service-card-link:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px
}

.service-card-wide {
    grid-column: 1 / -1
}

.service-cta {
    display: inline-block;
    margin-top: .7rem;
    color: var(--primary-color);
    font-weight: 700
}

.service-card-link:hover .service-cta {
    text-decoration: underline
}

.resources-hero {
    margin-top: 80px;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%)
}

.resources-hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 3rem;
    align-items: center
}

.resources-label,
.resource-kicker {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: .75rem
}

.resources-hero h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--text-color)
}

.resources-hero p {
    max-width: 760px;
    font-size: 1.2rem;
    color: var(--text-light)
}

.resources-hero-icon-wrap {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,.72);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px #0000001a
}

.resources-hero-icon {
    width: 140px;
    height: 140px;
    object-fit: contain
}

.resources-content {
    padding: 5rem 0;
    background: var(--white)
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 4rem
}

.resource-panel {
    padding: 2.25rem;
    border-radius: 15px;
    background: var(--bg-light);
    box-shadow: 0 10px 30px #0000000d
}

.resource-panel h2,
.resources-uses h2,
.resources-support-cta h2 {
    color: var(--text-color);
    line-height: 1.25;
    margin-bottom: 1rem
}

.resource-panel p,
.resource-use-card p,
.resources-support-cta p {
    color: var(--text-light);
    margin-bottom: 1rem
}

.resource-feature {
    border-top: 4px solid var(--primary-color)
}

.resource-etsy-cta {
    margin-top: .5rem
}

.resource-note {
    font-size: .9rem;
    margin-top: .85rem;
    margin-bottom: 0 !important
}

.resources-uses {
    margin: 0 auto 4rem;
    text-align: center
}

.resource-use-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem
}

.resource-use-card {
    padding: 1.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: left
}

.resource-use-card h3 {
    margin-bottom: .5rem;
    color: var(--text-color)
}

.resources-support-cta {
    max-width: 820px;
    margin: 0 auto;
    padding: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 15px
}

@media(max-width: 768px) {
    .resources-hero-content,
    .resources-grid,
    .resource-use-grid {
        grid-template-columns: 1fr
    }

    .resources-hero-content {
        text-align: center
    }

    .resources-hero h1 {
        font-size: 2.2rem
    }

    .resources-hero-icon-wrap {
        width: 180px;
        height: 180px;
        margin: 0 auto
    }

    .resources-hero-icon {
        width: 115px;
        height: 115px
    }
}

@media(max-width: 480px) {
    .resources-hero {
        padding: 3.5rem 0
    }

    .resources-hero h1 {
        font-size: 1.9rem
    }

    .resources-content {
        padding: 3.5rem 0
    }

    .resource-panel,
    .resources-support-cta {
        padding: 1.5rem
    }
}
