/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #d67d33;
    background-color: #fdf5ef;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    color: #d67d33;
    margin-bottom: 0.75rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

img {
    max-width: 100%;
    height: auto;
    border-radius: 11px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Color Variables */
:root {
    --baseColor: #f4a261;
    --lightBackground: #fdf5ef;
    --textEmphasis: #d67d33;
    --containerMaxWidth: 1400px;
    --sectionSpacing: 89px;
    --cardPadding: 34px;
}

/* Container and Layout */
.containerFluid {
    max-width: var(--containerMaxWidth);
    margin: 0 auto;
    padding: 0 21px;
}

/* Header Styles */
.headerMain {
    background: rgba(253, 245, 239, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(13px);
    border-bottom: 1px solid rgba(212, 125, 51, 0.1);
}

.navigationBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 0;
    position: relative;
}

.brandLogo img {
    height: 55px;
    width: auto;
}

.navToggle {
    display: none;
}

.navToggleLabel {
    display: none;
}

.hamburgerIcon {
    width: 34px;
    height: 3px;
    background: var(--textEmphasis);
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburgerIcon:before,
.hamburgerIcon:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 3px;
    background: var(--textEmphasis);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburgerIcon:before {
    top: -11px;
}

.hamburgerIcon:after {
    top: 11px;
}

.navigationWrapper {
    display: flex;
    align-items: center;
    gap: 34px;
}

.navigationItem {
    list-style: none;
}

.navigationLink {
    color: var(--textEmphasis);
    font-size: 17px;
    font-weight: 500;
    padding: 13px 8px;
    position: relative;
    transition: all 0.3s ease;
}

.navigationLink:hover {
    color: var(--baseColor);
    transform: translateY(-2px);
}

.navigationLink::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--baseColor);
    transition: width 0.3s ease;
}

.navigationLink:hover::after {
    width: 100%;
}

/* Mobile Navigation Styles */
@media screen and (max-width: 890px) {
    .navToggleLabel {
        display: block;
        cursor: pointer;
        padding: 21px;
        z-index: 2;
    }

    .navigationWrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--lightBackground);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 120px;
        flex-direction: column;
        align-items: center;
    }

    .navigationItem {
        width: 100%;
        text-align: center;
        margin: 21px 0;
    }

    .navigationLink {
        display: inline-block;
        padding: 13px 34px;
        font-size: 21px;
        color: var(--textEmphasis);
    }

    .navToggle:checked ~ .navigationWrapper {
        left: 0;
    }

    .navToggle:checked ~ .navToggleLabel .hamburgerIcon {
        background: transparent;
    }

    .navToggle:checked ~ .navToggleLabel .hamburgerIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .navToggle:checked ~ .navToggleLabel .hamburgerIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.heroArea {
    padding-top: 150px;
    padding-bottom: var(--sectionSpacing);
    background: linear-gradient(135deg, #fdf5ef 0%, #f9ede1 100%);
}

.heroContentGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.heroMainTitle {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 34px;
    color: var(--textEmphasis);
}

.heroDescription {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 42px;
    color: rgba(212, 125, 51, 0.8);
}

.heroActionButtons {
    display: flex;
    gap: 21px;
    align-items: center;
}

.primaryActionBtn, .secondaryActionBtn {
    padding: 17px 34px;
    border-radius: 11px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 2px solid transparent;
}

.primaryActionBtn {
    background: var(--baseColor);
    color: white;
    border-color: var(--baseColor);
}

.primaryActionBtn:hover {
    background: var(--textEmphasis);
    border-color: var(--textEmphasis);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 125, 51, 0.3);
}

.secondaryActionBtn {
    background: transparent;
    color: var(--textEmphasis);
    border-color: var(--textEmphasis);
}

.secondaryActionBtn:hover {
    background: var(--textEmphasis);
    color: white;
    transform: translateY(-3px);
}

.heroMainImage {
    width: 100%;
    border-radius: 21px;
    box-shadow: 0 13px 42px rgba(212, 125, 51, 0.15);
}

/* Social Mission Section */
.socialMissionArea {
    padding: var(--sectionSpacing) 0;
    background: white;
}

.sectionHeaderBlock {
    text-align: center;
    margin-bottom: 68px;
}

.sectionMainTitle {
    font-size: 2.8rem;
    margin-bottom: 21px;
    color: var(--textEmphasis);
}

.sectionIntroText {
    font-size: 19px;
    color: rgba(212, 125, 51, 0.7);
    max-width: 680px;
    margin: 0 auto;
}

.missionContentGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: center;
}

.missionSubtitle {
    font-size: 1.8rem;
    margin-bottom: 26px;
    color: var(--textEmphasis);
}

.missionParagraph {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 21px;
    color: rgba(212, 125, 51, 0.85);
}

.missionFeaturesList {
    margin-top: 34px;
}

.featureItem {
    padding: 13px 0;
    padding-left: 26px;
    position: relative;
    font-size: 16px;
    color: var(--textEmphasis);
    font-weight: 500;
}

.featureItem::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 13px;
    color: var(--baseColor);
    font-weight: bold;
}

.missionImage {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 11px 34px rgba(212, 125, 51, 0.12);
}

/* Impact Measurement Section */
.impactMeasurementArea {
    padding: var(--sectionSpacing) 0;
    background: #faf7f2;
}

.measurementHeaderBlock {
    text-align: center;
    margin-bottom: 76px;
}

.measurementTitle {
    font-size: 2.6rem;
    margin-bottom: 18px;
    color: var(--textEmphasis);
}

.measurementSubtext {
    font-size: 18px;
    color: rgba(212, 125, 51, 0.7);
    max-width: 720px;
    margin: 0 auto;
}

.measurementContentLayout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 63px;
    align-items: flex-start;
}

.measurementPhoto {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 9px 28px rgba(212, 125, 51, 0.14);
}

.measurementSubheading {
    font-size: 1.7rem;
    margin-bottom: 24px;
    color: var(--textEmphasis);
}

.measurementDescription {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 42px;
    color: rgba(212, 125, 51, 0.8);
}

.measurementMethodsList {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.methodologyCard {
    background: white;
    padding: 28px;
    border-radius: 13px;
    box-shadow: 0 5px 18px rgba(212, 125, 51, 0.08);
    transition: all 0.3s ease;
}

.methodologyCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 125, 51, 0.15);
}

.methodTitle {
    font-size: 1.3rem;
    margin-bottom: 13px;
    color: var(--textEmphasis);
}

.methodText {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(212, 125, 51, 0.8);
}

/* Change Makers Section */
.changeMakersArea {
    padding: var(--sectionSpacing) 0;
    background: white;
}

.changeMakersHeader {
    text-align: center;
    margin-bottom: 71px;
}

.changeMakersTitle {
    font-size: 2.7rem;
    margin-bottom: 19px;
    color: var(--textEmphasis);
}

.changeMakersIntro {
    font-size: 18px;
    color: rgba(212, 125, 51, 0.7);
    max-width: 650px;
    margin: 0 auto;
}

.changeMakersGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 47px;
}

.changeMakerCard {
    background: #faf8f4;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 7px 23px rgba(212, 125, 51, 0.1);
}

.changeMakerCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 42px rgba(212, 125, 51, 0.18);
}

.changeMakerImage {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
}

.changeMakerContent {
    padding: var(--cardPadding);
}

.changeMakerName {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--textEmphasis);
}

.changeMakerDescription {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(212, 125, 51, 0.8);
}

/* CTA Section */
.ctaArea {
    padding: var(--sectionSpacing) 0;
    background: linear-gradient(135deg, var(--baseColor) 0%, #e89447 100%);
    color: white;
}

.ctaContentBlock {
    text-align: center;
    max-width: 890px;
    margin: 0 auto;
}

.ctaMainHeading {
    font-size: 2.9rem;
    margin-bottom: 26px;
    color: white;
}

.ctaDescriptionText {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.9);
}

.ctaButtonsWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 21px;
}

.ctaPrimaryButton {
    background: white;
    color: var(--textEmphasis);
    padding: 19px 42px;
    border-radius: 11px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.ctaPrimaryButton:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.ctaPhoneNumber {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

/* Contact Form Section */
.contactFormArea {
    padding: var(--sectionSpacing) 0;
    background: #f8f4ed;
}

.contactHeaderSection {
    text-align: center;
    margin-bottom: 68px;
}

.contactMainTitle {
    font-size: 2.6rem;
    margin-bottom: 18px;
    color: var(--textEmphasis);
}

.contactSubtitle {
    font-size: 18px;
    color: rgba(212, 125, 51, 0.7);
}

.contactContentLayout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 68px;
}

.contactFormWrapper {
    background: white;
    padding: 47px;
    border-radius: 21px;
    box-shadow: 0 13px 42px rgba(212, 125, 51, 0.12);
}

.formFieldGroup {
    margin-bottom: 26px;
}

.fieldLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--textEmphasis);
    font-size: 15px;
}

.formInputField, .formSelectField, .formTextareaField {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid rgba(212, 125, 51, 0.2);
    border-radius: 9px;
    font-size: 16px;
    font-family: inherit;
    color: var(--textEmphasis);
    background: #fefcfa;
    transition: all 0.3s ease;
}

.formInputField:focus, .formSelectField:focus, .formTextareaField:focus {
    outline: none;
    border-color: var(--baseColor);
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.formTextareaField {
    resize: vertical;
    min-height: 120px;
}

.formSubmitButton {
    width: 100%;
    background: var(--baseColor);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 9px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.formSubmitButton:hover {
    background: var(--textEmphasis);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 125, 51, 0.3);
}

.contactInfoWrapper {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.companyAddressBlock, .businessHoursBlock {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 7px 23px rgba(212, 125, 51, 0.1);
}

.addressTitle, .hoursTitle {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--textEmphasis);
}

.addressText, .hoursText {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(212, 125, 51, 0.8);
}

/* Footer Styles */
.footerMainArea {
    background: #2c1810;
    color: #e8dbc7;
    padding: 63px 0 26px;
}

.footerContentGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
    margin-bottom: 47px;
}

.footerLogo {
    filter: brightness(0) invert(1);
    height: 97px;
    margin-bottom: 21px;
}

.footerBrandText {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(232, 219, 199, 0.8);
}

.footerLinksTitle, .footerLegalTitle, .footerContactTitle {
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: #f4a261;
}

.footerLinksList, .footerLegalList {
    list-style: none;
}

.footerLinksList li, .footerLegalList li {
    margin-bottom: 11px;
}

.footerLink {
    color: rgba(232, 219, 199, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footerLink:hover {
    color: #f4a261;
}

.footerContactText {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(232, 219, 199, 0.8);
}

.footerBottomBar {
    border-top: 1px solid rgba(232, 219, 199, 0.2);
    padding-top: 26px;
    text-align: center;
}

.copyrightText {
    font-size: 13px;
    color: rgba(232, 219, 199, 0.6);
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .containerFluid {
        padding: 0 34px;
    }

    .heroMainTitle {
        font-size: 2.8rem;
    }

    .sectionMainTitle {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 890px) {
    .heroContentGrid, .missionContentGrid, .measurementContentLayout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .heroMainTitle {
        font-size: 2.3rem;
    }

    .heroActionButtons {
        flex-direction: column;
        align-items: stretch;
    }

    .changeMakersGrid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .contactContentLayout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footerContentGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px;
    }

    .ctaMainHeading {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 640px) {
    :root {
        --sectionSpacing: 55px;
    }

    .containerFluid {
        padding: 0 21px;
    }

    .heroArea {
        padding-top: 120px;
    }

    .heroMainTitle {
        font-size: 1.9rem;
    }

    .sectionMainTitle {
        font-size: 1.8rem;
    }

    .contactFormWrapper {
        padding: 28px;
    }

    .footerContentGrid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ctaMainHeading {
        font-size: 1.8rem;
    }

    .measurementMethodsList {
        gap: 18px;
    }

    .methodologyCard {
        padding: 21px;
    }
}

/* Services Page Specific Styles */
.servicesHeroArea {
    padding-top: 150px;
    padding-bottom: 68px;
    background: linear-gradient(135deg, #fdf5ef 0%, #f9ede1 100%);
    text-align: center;
}

.servicesMainTitle {
    font-size: 3rem;
    margin-bottom: 26px;
    color: var(--textEmphasis);
}

.servicesHeroDescription {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(212, 125, 51, 0.8);
    max-width: 780px;
    margin: 0 auto;
}

.servicesGridArea {
    padding: var(--sectionSpacing) 0;
    background: white;
}

.servicesLayoutGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 47px;
}

.serviceItemCard {
    background: #faf8f4;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 26px rgba(212, 125, 51, 0.12);
}

.serviceItemCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(212, 125, 51, 0.2);
}

.serviceImageWrapper {
    height: 240px;
    overflow: hidden;
}

.serviceCardImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.4s ease;
}

.serviceItemCard:hover .serviceCardImage {
    transform: scale(1.05);
}

.serviceContentArea {
    padding: var(--cardPadding);
}

.serviceCardTitle {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--textEmphasis);
}

.serviceCardDescription {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 26px;
    color: rgba(212, 125, 51, 0.8);
}

.servicePriceBlock {
    margin-bottom: 28px;
    text-align: center;
    padding: 21px;
    background: white;
    border-radius: 11px;
    border: 2px solid rgba(244, 162, 97, 0.2);
}

.servicePriceAmount {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--baseColor);
    margin-bottom: 5px;
}

.servicePriceUnit {
    font-size: 14px;
    color: rgba(212, 125, 51, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.serviceBookingButton {
    display: block;
    width: 100%;
    background: var(--baseColor);
    color: white;
    padding: 16px;
    border-radius: 9px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--baseColor);
}

.serviceBookingButton:hover {
    background: var(--textEmphasis);
    border-color: var(--textEmphasis);
    transform: translateY(-2px);
}

.servicesBenefitsArea {
    padding: var(--sectionSpacing) 0;
    background: #f8f4ed;
}

.benefitsHeaderSection {
    text-align: center;
    margin-bottom: 68px;
}

.benefitsMainTitle {
    font-size: 2.4rem;
    margin-bottom: 18px;
    color: var(--textEmphasis);
}

.benefitsSubtitle {
    font-size: 17px;
    color: rgba(212, 125, 51, 0.7);
}

.benefitsContentGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.benefitFeatureCard {
    background: white;
    padding: 32px;
    border-radius: 15px;
    box-shadow: 0 6px 21px rgba(212, 125, 51, 0.1);
    transition: all 0.3s ease;
}

.benefitFeatureCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 125, 51, 0.15);
}

.benefitCardTitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--textEmphasis);
}

.benefitCardText {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(212, 125, 51, 0.8);
}

/* Thank You Page Specific Styles */
.thankYouHeroArea {
    padding-top: 150px;
    padding-bottom: var(--sectionSpacing);
    background: linear-gradient(135deg, #fdf5ef 0%, #f9ede1 100%);
}

.thankYouContentBlock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 63px;
    align-items: center;
}

.thankYouMainTitle {
    font-size: 2.8rem;
    margin-bottom: 28px;
    color: var(--textEmphasis);
}

.thankYouDescription {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 42px;
    color: rgba(212, 125, 51, 0.8);
}

.thankYouInfoGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 42px;
}

.infoStepCard {
    background: white;
    padding: 28px;
    border-radius: 13px;
    box-shadow: 0 5px 18px rgba(212, 125, 51, 0.08);
}

.stepCardTitle {
    font-size: 1.2rem;
    margin-bottom: 13px;
    color: var(--textEmphasis);
}

.stepCardText {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(212, 125, 51, 0.8);
}

.thankYouActionButtons {
    display: flex;
    gap: 21px;
    align-items: center;
}

.thankYouPrimaryBtn, .thankYouSecondaryBtn {
    padding: 17px 32px;
    border-radius: 9px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thankYouPrimaryBtn {
    background: var(--baseColor);
    color: white;
    border-color: var(--baseColor);
}

.thankYouPrimaryBtn:hover {
    background: var(--textEmphasis);
    border-color: var(--textEmphasis);
    transform: translateY(-2px);
}

.thankYouSecondaryBtn {
    background: transparent;
    color: var(--textEmphasis);
    border-color: var(--textEmphasis);
}

.thankYouSecondaryBtn:hover {
    background: var(--textEmphasis);
    color: white;
    transform: translateY(-2px);
}

.thankYouMainImage {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 38px rgba(212, 125, 51, 0.15);
}

.contactReminderArea {
    padding: var(--sectionSpacing) 0;
    background: white;
}

.contactReminderContent {
    text-align: center;
    max-width: 890px;
    margin: 0 auto;
}

.reminderTitle {
    font-size: 2.3rem;
    margin-bottom: 21px;
    color: var(--textEmphasis);
}

.reminderDescription {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 47px;
    color: rgba(212, 125, 51, 0.8);
}

.quickContactInfo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
}

.quickContactItem {
    background: #faf8f4;
    padding: 34px;
    border-radius: 16px;
    box-shadow: 0 7px 23px rgba(212, 125, 51, 0.1);
}

.quickContactTitle {
    font-size: 1.3rem;
    margin-bottom: 13px;
    color: var(--textEmphasis);
}

.quickContactText {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: rgba(212, 125, 51, 0.9);
}

.contactHours {
    font-size: 13px;
    color: rgba(212, 125, 51, 0.6);
    font-style: italic;
}

/* Responsive Design for Services and Thank You Pages */
@media screen and (max-width: 1280px) {
    .servicesLayoutGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px;
    }
}

@media screen and (max-width: 890px) {
    .servicesLayoutGrid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .thankYouContentBlock {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .thankYouActionButtons {
        flex-direction: column;
        align-items: stretch;
    }

    .benefitsContentGrid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .quickContactInfo {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media screen and (max-width: 640px) {
    .servicesMainTitle {
        font-size: 2.2rem;
    }

    .thankYouMainTitle {
        font-size: 2.1rem;
    }

    .serviceContentArea {
        padding: 24px;
    }

    .servicePriceAmount {
        font-size: 1.9rem;
    }
}