:root {
    --ocean-breeze: #dc3545;
    --mint-whisper: #fdf2f2;
    --forest-depth: #a71e2a;
    --sunset-glow: #ff6b6b;
    --pearl-mist: #f8f9fa;
    --charcoal-shadow: #2d3436;
    --cream-comfort: #fff5f5;
    --sage-wisdom: #95a5a6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    line-height: 1.7;
    color: var(--charcoal-shadow);
    background: var(--pearl-mist);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', serif;
    font-weight: 600;
    color: var(--forest-depth);
}

.centralContainer {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Navigation Styles */
.navigationWrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
    box-shadow: 0 3px 28px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.topNavigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.brandLogo img {
    height: 42px;
    width: auto;
}

.hiddenCheckbox {
    display: none;
}

.toggleButton {
    display: none;
}

.menuStripe {
    width: 34px;
    height: 4px;
    background: var(--forest-depth);
    position: relative;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
}

.menuStripe:before,
.menuStripe:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 4px;
    background: var(--forest-depth);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
}

.menuStripe:before {
    top: -9px;
}

.menuStripe:after {
    top: 9px
}

.navigationPanel {
    display: flex;
    align-items: center;
}

.menuCollection {
    display: flex;
    list-style: none;
    gap: 34px;
}

.menuElement {
    margin: 0;
}

.menuLink {
    color: var(--forest-depth);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.28s ease;
    position: relative;
}

.menuLink:hover {
    color: var(--ocean-breeze);
}

.menuLink::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -7px;
    left: 0;
    background: var(--ocean-breeze);
    transition: width 0.28s ease;
}

.menuLink:hover::after {
    width: 100%;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .toggleButton {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .navigationPanel {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--pearl-mist);
        transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .menuCollection {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .menuElement {
        width: 100%;
        text-align: center;
        margin: 21px 0;
    }

    .menuLink {
        display: inline-block;
        padding: 13px 28px;
        font-size: 19px;
        color: var(--forest-depth);
    }

    .hiddenCheckbox:checked ~ .navigationPanel {
        left: 0;
    }

    .hiddenCheckbox:checked ~ .toggleButton .menuStripe {
        background: transparent;
    }

    .hiddenCheckbox:checked ~ .toggleButton .menuStripe:before {
        transform: rotate(45deg);
        top: 0;
    }

    .hiddenCheckbox:checked ~ .toggleButton .menuStripe:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.heroDisplayArea {
    background: linear-gradient(135deg, var(--mint-whisper) 0%, var(--cream-comfort) 100%);
    padding: 144px 0 89px;
    margin-top: 78px;
    position: relative;
    overflow: hidden;
}

.heroDisplayArea::before {
    content: '';
    position: absolute;
    top: -55%;
    right: -21%;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, var(--ocean-breeze) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
}

.contentArrangement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.textualSection {
    z-index: 2;
    position: relative;
}

.heroContent h1 {
    font-size: 3.4rem;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--forest-depth);
}

.heroContent p {
    font-size: 1.2rem;
    margin-bottom: 42px;
    color: var(--sage-wisdom);
    line-height: 1.8
}

.actionButtons {
    display: flex;
    gap: 34px;
    align-items: center;
}

.primaryAction {
    background: linear-gradient(135deg, var(--ocean-breeze) 0%, var(--forest-depth) 100%);
    color: white;
    padding: 17px 34px;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.28s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 34px rgba(6, 214, 160, 0.28);
}

.primaryAction:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 42px rgba(6, 214, 160, 0.35);
}

.secondaryAction {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--forest-depth);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.28s ease;
}

.actionIcon {
    width: 28px;
    height: 28px;
    filter: hue-rotate(145deg);
}

.secondaryAction:hover {
    color: var(--ocean-breeze);
}

.visualSection {
    position: relative;
}

.heroImageContainer {
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.13);
    position: relative;
}

.heroImageContainer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, transparent 0%, rgba(6, 214, 160, 0.13) 100%);
}

.heroImageContainer img {
    width: 100%;
    height: auto;
    display: block;
}

/* Benefits Section */
.benefitsShowcase {
    padding: 110px 0;
    background: var(--pearl-mist);
}

.contentGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 76px;
    align-items: center;
}

.featuredVisual {
    position: relative;
}

.backgroundImage {
    width: 100%;
    height: 610px;
    background-size: cover;
    background-position: center;
    border-radius: 21px;
    position: relative;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.11);
}

.backgroundImage::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(6, 214, 160, 0.08) 0%, transparent 60%);
    border-radius: 21px;
}

.textualContent h2 {
    font-size: 2.8rem;
    margin-bottom: 28px;
    color: var(--forest-depth);
}

.textualContent p {
    font-size: 1.1rem;
    color: var(--sage-wisdom);
    margin-bottom: 42px;
    line-height: 1.8;
}

.advantagesList ul {
    list-style: none;
}

.advantagesList li {
    font-size: 1.1rem;
    color: var(--charcoal-shadow);
    margin-bottom: 17px;
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.listIcon {
    width: 24px;
    height: 24px;
    filter: hue-rotate(145deg);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Services Section */
.servicesDisplay {
    padding: 110px 0;
    background: var(--mint-whisper);
}

.headerSection {
    text-align: center;
    margin-bottom: 76px;
}

.underlinedTitle {
    color: var(--forest-depth);
    margin-bottom: 21px;
}

.underlinedTitle span {
    display: inline-block;
    border-bottom: 5px solid var(--ocean-breeze);
    padding-bottom: 8px;
    font-size: 2.6rem;
}

.headerSection p {
    font-size: 1.2rem;
    color: var(--sage-wisdom);
    max-width: 640px;
    margin: 0 auto;
}

.servicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 42px;
}

.serviceCard {
    background: white;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 13px 42px rgba(0, 0, 0, 0.08);
    transition: all 0.28s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

.serviceCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.13);
}

.iconHolder {
    position: relative;
    width: 110px;
    height: 63px;
    margin: 0 auto;
    z-index: 1;
    margin-top: -38px;
    background: var(--ocean-breeze);
    border-radius: 13px;
}

.serviceIcon {
    width: 42px;
    height: 42px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(0) invert(1);
}

.cardContent {
    padding: 55px 28px 28px;
    text-align: center;
}

.cardContent h3 {
    font-size: 1.4rem;
    margin-bottom: 21px;
    color: var(--forest-depth);
}

.cardContent p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--sage-wisdom);
    margin-bottom: 28px;
}

.serviceButton {
    background: var(--ocean-breeze);
    color: white;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.28s ease;
    display: inline-block;
}

.serviceButton:hover {
    background: var(--forest-depth);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonialsArea {
    position: relative;
    padding: 110px 0 0;
    background: var(--charcoal-shadow);
    overflow: hidden;
}

.testimonialBackdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--charcoal-shadow) 0%, #34495e 100%);
    opacity: 0.95;
}

.headerPart {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 76px;
}

.sectionIntro .subtitle {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 13px;
    color: var(--ocean-breeze);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.sectionIntro h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 21px;
}

.sectionIntro p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
}

.fullWidthContainer {
    position: relative;
    z-index: 2;
}

.testimonialsRow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 0;
}

.testimonialCard {
    background: var(--ocean-breeze);
    padding: 42px 34px;
    color: white;
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonialCard.featured {
    background: var(--forest-depth);
    position: relative;
}

.testimonialCard.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.08);
}

.testimonialCard blockquote p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.authorInfo {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: auto;
}

.authorImage {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
}

.authorImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.authorDetails {
    font-weight: 600;
}

.position {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Contact Section */
.contactSection {
    padding: 110px 0;
    background: var(--mint-whisper);
}

.headerRow {
    text-align: center;
    margin-bottom: 55px;
}

.sectionTitle {
    font-size: 2.8rem;
    color: var(--forest-depth);
    margin-bottom: 21px;
}

.contactInfoRow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
    margin-bottom: 76px;
}

.infoColumn {
    text-align: center;
}

.contactItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    margin-bottom: 0;
}

.contactIcon {
    width: 42px;
    height: 42px;
    filter: hue-rotate(145deg);
}

.contactItem span,
.contactItem a {
    font-size: 1.1rem;
    color: var(--charcoal-shadow);
    text-decoration: none;
    font-weight: 500;
}

.contactItem a:hover {
    color: var(--ocean-breeze);
}

.formContainer {
    max-width: 780px;
    margin: 0 auto;
    background: white;
    padding: 55px 42px;
    border-radius: 17px;
    box-shadow: 0 13px 42px rgba(0, 0, 0, 0.08);
}

.formTitle {
    font-size: 1.8rem;
    color: var(--forest-depth);
    margin-bottom: 34px;
    text-align: center;
}

.inputRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

.fullWidth {
    grid-column: 1 / -1;
}

.inputLabel {
    display: block;
    margin-bottom: 8px;
    color: var(--charcoal-shadow);
    font-weight: 500;
}

.formInput {
    width: 100%;
    padding: 13px 17px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.28s ease;
    font-family: inherit;
}

.formInput:focus {
    outline: none;
    border-color: var(--ocean-breeze);
    box-shadow: 0 0 0 3px rgba(6, 214, 160, 0.13);
}

textarea.formInput {
    resize: vertical;
    min-height: 140px;
}

.submitButton {
    background: var(--ocean-breeze);
    color: white;
    padding: 17px 42px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.23, 1, 0.320, 1);
    width: 100%;
}

.submitButton:hover {
    background: var(--forest-depth);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(6, 214, 160, 0.28);
}

/* Footer */
.websiteFooter {
    background: var(--charcoal-shadow);
    color: white;
    padding: 76px 0 34px;
}

.footerGrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 55px;
    margin-bottom: 42px;
}

.footerLogo img {
    filter: brightness(0) invert(1);
    height: 38px;
    margin-bottom: 21px;
}

.footerBlock p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 28px;
}

.footerTitle {
    font-size: 1.3rem;
    margin-bottom: 28px;
    color: var(--ocean-breeze);
}

.footerContent p {
    margin-bottom: 13px;
}

.footerContent a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.28s ease;
}

.footerContent a:hover {
    color: var(--ocean-breeze);
}

.contactDetails p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.copyrightText p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.disclaimerSection {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
    text-align: center;
}

.disclaimerSection p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1280px) {
    .contentArrangement {
        gap: 42px
    }

    .heroContent h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 890px) {
    .contentArrangement {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .textualSection {
        order: 2;
    }

    .visualSection {
        order: 1;
    }

    .heroContent {
        text-align: center;
    }

    .actionButtons {
        justify-content: center;
        gap: 21px;
    }

    .contentGrid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .servicesGrid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .testimonialsRow {
        grid-template-columns: 1fr;
    }

    .footerGrid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .inputRow {
        grid-template-columns: 1fr;
        gap: 21px;
    }
}

@media (max-width: 640px) {
    .centralContainer {
        padding: 0 17px;
    }

    .heroDisplayArea {
        padding: 89px 0 55px;
    }

    .heroContent h1 {
        font-size: 2.2rem;
    }

    .actionButtons {
        flex-direction: column;
        gap: 21px;
    }

    .primaryAction,
    .secondaryAction {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .benefitsShowcase,
    .servicesDisplay,
    .testimonialsArea,
    .contactSection {
        padding: 76px 0;
    }

    .formContainer {
        padding: 34px 21px;
    }
}

/* Subtle human imperfections */
.menuLink:nth-child(2) {
    letter-spacing: 0.5px
}

/* TODO: add more hover animations later */
.serviceCard:nth-child(2) {
    transform: rotate(0.2deg);
}

/* trying different approach for testimonials spacing */
.testimonialCard:first-child {
    margin-top: 1px;
}

:root {
    --ocean-breeze: #06d6a0;
    --mint-whisper: #e6faf5;
    --forest-depth: #048a65;
    --sunset-glow: #f4a261;
    --pearl-mist: #f8f9fa;
    --charcoal-shadow: #2d3436;
    --cream-comfort: #fdfcdc;
    --sage-wisdom: #95a5a6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    line-height: 1.7;
    color: var(--charcoal-shadow);
    background: var(--pearl-mist);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', serif;
    font-weight: 600;
    color: var(--forest-depth);
}

.centralContainer {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Navigation Styles */
.navigationWrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
    box-shadow: 0 3px 28px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.topNavigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.brandLogo img {
    height: 42px;
    width: auto;
}

.hiddenCheckbox {
    display: none;
}

.toggleButton {
    display: none;
}

.menuStripe {
    width: 34px;
    height: 4px;
    background: var(--forest-depth);
    position: relative;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
}

.menuStripe:before,
.menuStripe:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 4px;
    background: var(--forest-depth);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
}

.menuStripe:before {
    top: -9px;
}

.menuStripe:after {
    top: 9px
}

.navigationPanel {
    display: flex;
    align-items: center;
}

.menuCollection {
    display: flex;
    list-style: none;
    gap: 34px;
}

.menuElement {
    margin: 0;
}

.menuLink {
    color: var(--forest-depth);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.28s ease;
    position: relative;
}

.menuLink:hover {
    color: var(--ocean-breeze);
}

.menuLink::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -7px;
    left: 0;
    background: var(--ocean-breeze);
    transition: width 0.28s ease;
}

.menuLink:hover::after {
    width: 100%;
}

/* Thank You Hero Section */
.gratitudeHeroArea {
    background: linear-gradient(135deg, var(--mint-whisper) 0%, var(--cream-comfort) 100%);
    padding: 144px 0 89px;
    margin-top: 78px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.gratitudeHeroArea::before {
    content: '';
    position: absolute;
    top: -35%;
    left: 50%;
    transform: translateX(-50%);
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, var(--ocean-breeze) 0%, transparent 70%);
    opacity: 0.12;
    border-radius: 50%;
}

.thankYouContent {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.successIcon {
    width: 89px;
    height: 89px;
    background: var(--ocean-breeze);
    border-radius: 50%;
    margin: 0 auto 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 13px 42px rgba(6, 214, 160, 0.28);
}

.successIcon img {
    width: 42px;
    height: 42px;
    filter: brightness(0) invert(1);
}

.gratitudeTitle {
    font-size: 3.2rem;
    margin-bottom: 28px;
    color: var(--forest-depth);
}

.gratitudeMessage {
    font-size: 1.3rem;
    color: var(--sage-wisdom);
    margin-bottom: 42px;
    line-height: 1.8;
}

.nextStepsInfo {
    background: white;
    padding: 42px;
    border-radius: 17px;
    box-shadow: 0 13px 42px rgba(0, 0, 0, 0.08);
    margin-bottom: 55px;
    text-align: left;
}

.nextStepsTitle {
    font-size: 1.6rem;
    margin-bottom: 28px;
    color: var(--forest-depth);
    text-align: center;
}

.stepsList {
    list-style: none;
    margin-bottom: 28px;
}

.stepItem {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    margin-bottom: 21px;
    padding: 17px;
    background: var(--mint-whisper);
    border-radius: 13px;
}

.stepNumber {
    background: var(--ocean-breeze);
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.stepContent h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--forest-depth);
}

.stepContent p {
    color: var(--sage-wisdom);
    font-size: 1rem;
    line-height: 1.6;
}

.returnActions {
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: center;
}

.primaryReturn {
    background: linear-gradient(135deg, var(--ocean-breeze) 0%, var(--forest-depth) 100%);
    color: white;
    padding: 17px 34px;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.28s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 34px rgba(6, 214, 160, 0.28);
}

.primaryReturn:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 42px rgba(6, 214, 160, 0.35);
}

.secondaryReturn {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--forest-depth);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.28s ease;
}

.returnIcon {
    width: 24px;
    height: 24px;
    filter: hue-rotate(145deg);
}

.secondaryReturn:hover {
    color: var(--ocean-breeze);
}

/* Contact Info Section */
.contactReminder {
    background: var(--forest-depth);
    color: white;
    padding: 76px 0;
}

.reminderContent {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.reminderTitle {
    font-size: 2.4rem;
    margin-bottom: 21px;
    color: white;
}

.reminderText {
    font-size: 1.2rem;
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.contactDetailsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
    margin-top: 55px;
}

.contactDetailCard {
    background: rgba(255, 255, 255, 0.1);
    padding: 34px 28px;
    border-radius: 13px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.contactDetailIcon {
    width: 42px;
    height: 42px;
    margin: 0 auto 17px;
    filter: brightness(0) invert(1);
}

.contactDetailCard h4 {
    font-size: 1.2rem;
    margin-bottom: 13px;
    color: var(--ocean-breeze);
}

.contactDetailCard p,
.contactDetailCard a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
}

.contactDetailCard a:hover {
    color: var(--ocean-breeze);
}

/* Footer */
.websiteFooter {
    background: var(--charcoal-shadow);
    color: white;
    padding: 76px 0 34px;
}

.footerGrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 55px;
    margin-bottom: 42px;
}

.footerLogo img {
    height: 38px;
    margin-bottom: 21px;
}

.footerBlock p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 28px;
}

.footerTitle {
    font-size: 1.3rem;
    margin-bottom: 28px;
    color: var(--ocean-breeze);
}

.footerContent p {
    margin-bottom: 13px;
}

.footerContent a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.28s ease;
}

.footerContent a:hover {
    color: var(--ocean-breeze);
}

.contactDetails p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.copyrightText p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.disclaimerSection {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
    text-align: center;
}

.disclaimerSection p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .toggleButton {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .navigationPanel {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--pearl-mist);
        transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .menuCollection {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .menuElement {
        width: 100%;
        text-align: center;
        margin: 21px 0;
    }

    .menuLink {
        display: inline-block;
        padding: 13px 28px;
        font-size: 19px;
        color: var(--forest-depth);
    }

    .hiddenCheckbox:checked ~ .navigationPanel {
        left: 0;
    }

    .hiddenCheckbox:checked ~ .toggleButton .menuStripe {
        background: transparent;
    }

    .hiddenCheckbox:checked ~ .toggleButton .menuStripe:before {
        transform: rotate(45deg);
        top: 0;
    }

    .hiddenCheckbox:checked ~ .toggleButton .menuStripe:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Responsive Design */
@media (max-width: 890px) {
    .gratitudeTitle {
        font-size: 2.6rem;
    }

    .returnActions {
        flex-direction: column;
        gap: 21px;
    }

    .primaryReturn,
    .secondaryReturn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .footerGrid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .contactDetailsGrid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .centralContainer {
        padding: 0 17px;
    }

    .gratitudeHeroArea {
        padding: 89px 0 55px;
    }

    .gratitudeTitle {
        font-size: 2.2rem;
    }

    .nextStepsInfo {
        padding: 28px 21px;
    }

    .contactReminder {
        padding: 55px 0;
    }
}

/* Human imperfections */
.stepItem:nth-child(2) {
    margin-left: 2px;
}

/* TODO: optimize animations later */
.successIcon {
    animation: pulse 2.1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* trying different spacing approach */
.stepContent h4 {
    letter-spacing: 0.3px
}