/* =========================================
   BASIC RESET
   ========================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}


/* =========================================
   HEADER
   ========================================= */

.site-header {
    height: 71px;
    background: #e8e3dd;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    padding: 0 20px;
}


/* Logo in the navigation */

.logo {
    display: block;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
}


/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
justify-content: center;
    gap: 38px;

    margin: 0;
}

.main-nav a {
    color: #6d6b67;
    text-decoration: none;
    font-size: 14px;

    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #333;
}

.main-nav a.active {
    color: #333;
    border-bottom: 1px solid #8a7967;
    padding-bottom: 3px;
}


/* =========================================
   HERO
   ========================================= */

.hero {
    min-height: 438px;

    background-image: url("images/index-hero-bg.png");
    background-size: cover;
    background-position: 80%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.hero-content {
    width: min(650px, 90%);
    margin-top: -5px;
}


/* Circular logo */

.hero-logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: contain;

    margin-bottom: 18px;
}


/* Main heading */

.hero h1 {
    color: #557276;

    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    font-size: 29px;
    line-height: 1.15;

    margin-bottom: 12px;
}


/* Hero paragraph */

.hero p {
    max-width: 800px;
    margin: 0 auto 20px;

    color: #667174;

    font-size: 10px;
    line-height: 1.35;
}


/* =========================================
   BUTTONS
   ========================================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 9px;
}

.button {
    display: inline-block;

    min-width: 103px;
    padding: 9px 16px;

    background: #aa9783;
    color: white;

    border-radius: 3px;

    text-decoration: none;

    font-size: 10px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    background: #917d69;
    transform: translateY(-1px);
}


/* =========================================
   INTRODUCTION
   ========================================= */

.intro {
    background: #e8e3dd;

    text-align: center;

    padding: 36px 20px 30px;

    min-height: 139px;
}

.intro h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    color: #383838;

    font-size: 23px;

    margin-bottom: 9px;
}

.intro p {
    max-width: 800px;
    margin: 0 auto;

    color: #555;

    font-size: 10px;
    line-height: 1.45;
}


/* =========================================
   SERVICES PREVIEW
   ========================================= */

.services-preview {
    background: #e8e3dd;

    text-align: center;

    padding: 4px 15px 50px;
}

.eyebrow {
    color: #333;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    letter-spacing: 2px;

    text-transform: uppercase;
}

.services-preview > .eyebrow {
    margin-bottom: 6px;
}

.services-preview h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    color: #333;

    font-size: 23px;

    margin-bottom: 18px;
}


.service-cards {
    max-width: 1100px;

    margin: 0 auto 44px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 10px;
}


.service-card {
    min-height: 96px;

    background: #a59685;

    border-radius: 12px;

    padding: 30px 18px 20px;

    color: white;
    text-decoration: none;

    display: flex;
    flex-direction: column;
    align-items: center;

    justify-content: flex-start;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.service-card:hover {
    background: #917d69;

    transform: translateY(-3px);
}


.service-card h3 {
    font-size: 14px;

    font-weight: bold;

    margin-bottom: 10px;
}


.service-card p {
    max-width: 280px;

    font-size: 9px;

    line-height: 1.35;
}


.different-service {
    width: min(510px);
    border-radius: 12px;
    margin: 0 auto;

    padding: 18px 25px 16px;

    border: 1px solid #b8ad9f;
}


.different-service .eyebrow {
    margin-bottom: 10px;
}


.different-service > p:nth-child(2) {
    color: #555;

    font-size: 9px;

    margin-bottom: 12px;
}


.different-service .button {
    min-width: 92px;

    padding: 8px 15px;

    font-size: 9px;
}


/* =========================================
   MY STORY
   ========================================= */

.my-story {
    min-height: 350px;

    background-image: url("images/index-my-story-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.story-image {
    display: none;
}

.story-content {
    width: 38%;
    
    margin-right: 14%;

    padding: 30px 35px;

    background: rgba(232, 227, 221, 0.82);

    border-radius: 12px;

    position: relative;
}


.story-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    color: #333;

    font-size: 22px;

    margin-bottom: 12px;
}


.story-content p {
    color: #555;

    font-size: 9px;

    line-height: 1.45;

    margin-bottom: 8px;
}


.story-button {
    margin-top: 5px;

    background: #fff;
    color: #333;

    min-width: 70px;

    padding: 7px 15px;

    font-size: 9px;
}


.story-button:hover {
    background: #f0ece7;
}


/* =========================================
   LATEST TIPS
   ========================================= */

.latest-tips {
    background: #e8e3dd;

    padding: 38px 15px 30px;
}


.tips-heading {
    max-width: 1100px;

    font-size: 22px;

    margin: 0 auto 20px;
}


.tips-heading .eyebrow {
    text-transform: none;

    letter-spacing: 0;

    font-size: 22px;

    margin-bottom: 12px;
}

.tips-heading .eyebrow a {
    color: inherit;
    text-decoration: none;
}


.tips-intro {
    max-width: 500px;

    color: #555;

    font-size: 9px;

    line-height: 1.5;
}


.blog-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;
}


.blog-card {
    min-height: 255px;

    background: #e9e5df;

    border: 1px solid #d0c9c0;

    display: flex;
    flex-direction: column;

    color: #333;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.blog-card h3 {
    color: #333;
    text-decoration: none;
}


.blog-card p {
    color: #666;
    text-decoration: none;
}


.blog-card .blog-meta {
    color: #999;
    text-decoration: none;
}


.blog-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


.blog-image {
    width: 100%;

    height: 112px;

    object-fit: cover;
}


.blog-content {
    padding: 10px 14px 8px;

    flex-grow: 1;
}


.blog-meta {
    display: flex;

    align-items: center;

    gap: 5px;

    color: #999;

    font-size: 7px;

    margin-bottom: 12px;
}


.blog-content h3 {
    color: #333;

    font-size: 11px;

    font-weight: normal;

    line-height: 1.3;

    margin-bottom: 9px;
}


.blog-content p {
    color: #666;

    font-size: 8px;

    line-height: 1.5;
}


.blog-footer {
    min-height: 25px;

    border-top: 1px solid #d6cfc6;

    margin: 0 14px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.blog-stats {
    display: flex;

    gap: 10px;
}


.blog-stats span,
.blog-likes {
    display: block;

    width: 11px;
    height: 2px;

    background: #c7c1b8;
}


.blog-likes {
    width: 12px;
}


/* =========================================
   FINAL CALL TO ACTION
   ========================================= */

.final-cta {
    min-height: 500px;

    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Background image */
.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("images/index-cta.jpg");
    background-size: cover;
    background-position: 50% 75%;
    background-repeat: no-repeat;

    opacity: 0.8;

    z-index: 0;
}

/*text box*/
.final-cta-content {
    width: min(700px, 90%);
    
    padding: 30px 70px 10px;

    background: rgba(232, 227, 221, 0.82);
    border-radius: 12px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    position: relative;
}

/* Heading */
.final-cta-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

/* Paragraph */
.final-cta-content p {
    margin: 0 auto 30px;
    max-width: 580px;
}

/* Button */
.final-cta > .button {
     margin-top: 30px;
     z-index: 1;
}

/* =========================================
   ABOUT ME PAGE
   ========================================= */

.about-me-page {
    width: 100%;
    background: rgba(232, 227, 221, 0.78);
}

/* =========================================
   ABOUT ME - MY JOURNEY
   ========================================= */

.about-journey {
    max-width: 1500px;

    margin: 0 auto;

    padding: 70px 40px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}


.journey-content h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    color: #333;

    font-size: 29px;

    margin-bottom: 20px;
}


.journey-content p {
    color: #555;

    font-size: 10px;
    line-height: 1.5;

    margin-bottom: 15px;
}


.journey-image {
    width: 100%;
}


.journey-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;

    border-radius: 10px;

}


/* =========================================
   ABOUT ME - MY APPROACH
   ========================================= */

.about-approach {
    background: #e8e3dd;

    padding: 60px 40px 70px;

    text-align: center;
}


.approach-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    color: #333;

    font-size: 23px;
}


.approach-divider {
    width: 80px;
    height: 1px;

    background: #b8ad9f;

    margin: 18px auto 45px;
}


.approach-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 0;
}


.approach-item {
    padding: 0 35px;
}


.approach-item:not(:last-child) {
    border-right: 1px solid #b8ad9f;
}


.approach-item h3 {
    color: #557276;

    font-size: 12px;

    font-weight: bold;

    margin-bottom: 12px;
}


.approach-item p {
    color: #555;

    font-size: 9px;
    line-height: 1.5;

    margin: 0 auto;

    max-width: 210px;
}


/* =========================================
   HOW IT WORKS - THE PROCESS
   ========================================= */

.process-section {
    min-height: 500px;

    position: relative;
    overflow: hidden;

    background-image: url("images/how-it-works-bg.png");
    background-size: cover;
    background-position: center;

    padding: 38px 40px 50px;
}


/* Light overlay */

.process-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.72);

    z-index: 0;
}


/* Keep everything above the overlay */

.process-section .section-heading,
.process-container {
    position: relative;
    z-index: 1;
}


/* Heading */

.process-section .section-heading {
    width: fit-content;
    max-width: 650px;

    margin: 0 auto 35px;

    padding: 18px 40px 16px;

    background: rgba(232, 227, 221, 0.88);

    border-radius: 12px;

    text-align: center;
}


.process-section .section-heading h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    color: #333;

    font-size: 29px;

    margin-bottom: 12px;
}


.process-section .section-heading p {
    color: #555;

    font-size: 10px;
    line-height: 1.5;
}


/* Process list */

.process-container {
    width: 70%;
    max-width: 850px;

    margin: 0 auto;
}


/* Individual steps */

.process-step {

    width: fit-content;
    max-width: 700px;
    padding: 16px 20px;

    margin-bottom: 16px;

    background: rgba(232, 227, 221, 0.78);

    border-radius: 10px;
}


/* Step heading */

.step-content h2 {
    color: #557276;

    font-size: 12px;
    font-weight: normal;

    margin-bottom: 8px;
}


/* Step text */

.step-content p {
    max-width: 600px;

    color: #555;

    font-size: 9px;
    line-height: 1.45;
}

/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-page {
    width: 100%;
    background: rgba(232, 227, 221, 0.78);
}


/* =========================================
   CONTACT SECTION
   ========================================= */

.contact-section {
    min-height: calc(100vh - 160px);

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

    max-width: 1200px;
    margin: 0 auto;

    padding: 100px 60px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */

.testimonials {
    background: rgba(232, 227, 221, 0.78);

    padding: 60px 40px 70px;

    text-align: center;
}


.testimonials h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    color: #333;

    font-size: 29px;

    margin-bottom: 20px;
}



.testimonials-divider {
    width: 100px;
    height: 1px;

    background: #b8ad9f;

    margin: 18px auto 45px;
}


.testimonials-grid {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 0;
}


/* 3 testimonials = 3 columns */
.testimonials-grid:has(> .testimonials-item:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
}


/* 4 or more testimonials = 4 columns */
.testimonials-grid:has(> .testimonials-item:nth-child(4)) {
    grid-template-columns: repeat(4, 1fr);
}


.testimonials-item {
    padding: 0 35px;
}


.testimonials-item:not(:last-child) {
    border-right: 1px solid #b8ad9f;
}


.testimonials-item h3 {
    color: #557276;

    font-size: 10px;

    font-weight: bold;

    margin-bottom: 12px;
}


.testimonials-item p {
    color: #555;

    font-size: 9px;
    line-height: 1.5;

    margin: 0 auto;

    max-width: 210px;
}

.testimonial-second {
    width: 80px;
    margin: 10px auto 10px;
    
    border-top: 1px solid #b8ad9f;
    
}




/* =========================================
   CONTACT INTRO
   ========================================= */

.contact-intro {
    max-width: 500px;
}

.contact-intro h1 {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 30px;
}

.contact-intro p {
    line-height: 1.8;

    margin-bottom: 35px;

    max-width: 470px;
}


/* =========================================
   EMAIL
   ========================================= */

.contact-email {
    display: inline-block;

    font-weight: bold;

    color: #557276;
    text-decoration: none;

    padding-bottom: 5px;

    border-bottom: 1px solid currentColor;

    transition: opacity 0.2s ease;
}

.contact-email:hover {
    opacity: 0.65;
}


/* =========================================
   FORM WRAPPER
   ========================================= */

.contact-form-wrapper {
    width: 100%;
    max-width: 520px;

    margin-left: auto;

    padding: 40px;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 22px;

    /*
       Slight bevelled / curved corners
       to match the rest of the site.
    */
    clip-path: polygon(
        18px 0,
        calc(100% - 18px) 0,
        100% 18px,
        100% calc(100% - 18px),
        calc(100% - 18px) 100%,
        18px 100%,
        0 calc(100% - 18px),
        0 18px
    );
}


/* =========================================
   FORM
   ========================================= */

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 22px;
}


/* =========================================
   FORM FIELDS
   ========================================= */

.form-field {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;

    letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea {
    width: 100%;

    padding: 14px 16px;

    font-family: inherit;
    font-size: 1rem;

    border: 1px solid rgba(0, 0, 0, 0.15);

    background: rgba(255, 255, 255, 0.75);

    border-radius: 10px;

    outline: none;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.form-field textarea {
    resize: vertical;

    min-height: 130px;
}


/* =========================================
   FIELD FOCUS
   ========================================= */

.form-field input:focus,
.form-field textarea:focus {
    border-color: currentColor;

    background: rgba(255, 255, 255, 0.95);

    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}


/* =========================================
   PLACEHOLDER
   ========================================= */

.form-field input::placeholder,
.form-field textarea::placeholder {
    opacity: 0.5;
}

/* =========================================
   Form Consent Check
   ========================================= */

.form-consent {
    margin: 20px 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.form-consent a {
    text-decoration: underline;
}

/* =========================================
   SUBMIT BUTTON
   ========================================= */

.contact-submit {
    align-self: flex-start;

    margin-top: 5px;

    padding: 14px 30px;

    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;

    border: none;
    border-radius: 10px;

    cursor: pointer;

    background: #000;
    color: #fff;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.contact-submit:active {
    transform: translateY(0);
}


/* =========================================
   BLOG ARTICLES
   ========================================= */

.article-page {
    padding-bottom: 100px;
    background: #e8e3dd;
}

/* =========================================
   ARTICLE HEADER
   ========================================= */

.article-header {
    padding: 70px 25px 50px;
    background: #e9e5df;
    text-align: center;
}

.article-header-content {
    width: min(800px, 100%);
    max-width: 850px;
    margin: 0 auto;
}

.article-category {
    display: block;
    color: #8a7967;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.article-header h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
    color: #333;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    margin-bottom: 22px;
}

.article-standfirst {
    max-width: 620px;
    margin: 0 auto 22px;
    color: #555;
    font-size: 13px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: #8a7967;
    font-size: 9px;
}

/* =========================================
   FEATURED IMAGE
   ========================================= */

.article-featured-image {
    width: min(1100px, calc(100% - 50px));
    margin: 0 auto 65px;
    overflow: hidden;
    border-radius: 12px;
}

.article-featured-image img {
    display: block;
    width: 100%;
    max-height: 550px;
    height: auto;
    object-fit: cover;
}

/* =========================================
   ARTICLE CONTENT
   ========================================= */

.article-content {
    width: min(720px, calc(100% - 50px));
    max-width: 780px;
    margin: 0 auto;
    padding: 80px 25px 70px;
    font-size: 15px;
    line-height: 1.8;
    color: #403c38;
}

.article-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.article-content .article-opening {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 55px;
}

.article-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
    color: #333;
    font-size: 27px;
    line-height: 1.2;
    margin: 48px 0 18px;
}

.article-content h3 {
    margin-top: 45px;
    margin-bottom: 18px;
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 600;
    color: #3b3733;
}

/* Lists */

.article-content ul,
.article-content ol {
    margin: 0 0 28px 25px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 12px;
    padding-left: 6px;
}

.article-content li::marker {
    color: #8a8178;
}

/* Strong text */

.article-content strong {
    font-weight: 600;
    color: #332f2b;
}

/* =========================================
   HIGHLIGHT BOXES
   ========================================= */

.article-highlight {
    margin: 45px 0;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.42);
    border-left: 3px solid #8a7967;
    border-radius: 0 10px 10px 0;
}

.article-highlight .eyebrow {
    display: block;
    margin-bottom: 10px;
}

.article-highlight p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================
   ARTICLE TABLE
   ========================================= */

.article-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.article-table th,
.article-table td {
    padding: 11px 12px;
    text-align: left;
    border-bottom: 1px solid #d0c9c0;
}

.article-table th {
    font-weight: 600;
}

.article-table tr:last-child td {
    border-bottom: none;
}

/* =========================================
   ARTICLE CTA
   ========================================= */

.article-cta {
    margin-top: 90px;
    padding: 20px 25px 70px;
    background: #e9e5df;
    text-align: center;
}

.article-cta-content {
    width: min(650px, 100%);
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 60px;
    background: rgba(255, 255, 255, 0.42);
    border-radius: 12px;
}

.article-cta-content .eyebrow {
    display: block;
    margin-bottom: 12px;
}

.article-cta-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;
    color: #333;
    font-size: 26px;
    line-height: 1.2;
    margin: 15px 0 20px;
}

.article-cta-content p {
    max-width: 500px;
    margin: 0 auto 24px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================
   BACK TO BLOG
   ========================================= */

.article-back {
    text-align: center;
    padding: 35px 25px 80px;
}

.article-back a {
    color: #8a7967;
    font-size: 10px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
    transition: border-color 0.2s ease;
}

.article-back a:hover {
    border-bottom-color: currentColor;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 800px) {

    .contact-section {
        grid-template-columns: 1fr;

        gap: 60px;

        padding: 70px 30px;
    }

    .contact-intro {
        max-width: 600px;
    }

    .contact-form-wrapper {
        max-width: 600px;

        margin: 0;
    }

}


@media (max-width: 500px) {

    .contact-section {
        padding: 60px 20px;
    }

    .contact-form-wrapper {
        padding: 28px 22px;
    }

}

/* =========================================
   SERVICES & PRICES PAGE
   ========================================= */

.services-prices-page {
    width: 100%;
}


/* =========================================
   SERVICES
   ========================================= */

.services-detail {
    background: rgba(232, 227, 221, 0.78);

    text-align: center;

    padding: 38px 25px 40px;
}


.services-detail > .eyebrow {
    margin-bottom: 8px;
}


.services-detail h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    color: #333;

    font-size: 29px;

    margin-bottom: 24px;
}


/* Services grid */

.services-detail-grid {
    max-width: 1100px;

    margin: 0 auto 34px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 10px;
}


/* Individual card */

.service-detail-card {
    min-height: 115px;

    padding: 16px 18px;

    background: rgba(255, 255, 255, 0.42);

    border-radius: 10px;

    display: flex;
    flex-direction: column;
    align-items: center;

    justify-content: flex-start;
}


.service-number {
    color: #8a7967;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 11px;

    margin-bottom: 9px;
}


.service-detail-card h2 {
    color: #444;

    font-size: 10px;
    font-weight: normal;

    line-height: 1.35;

    margin-bottom: 10px;
}


.service-detail-card p {
    max-width: 190px;

    color: #666;

    font-size: 8px;
    line-height: 1.45;
}


/* Custom service box */

.custom-service {
    width: min(500px, 90%);

    margin: 0 auto;

    padding: 20px 25px;

    border: 1px solid #b8ad9f;
}


.custom-service .eyebrow {
    margin-bottom: 9px;
}


.custom-service > p:nth-child(2) {
    color: #555;

    font-size: 9px;

    margin-bottom: 15px;
}


/* Outline button */

.outline-button {
    display: inline-block;

    min-width: 82px;

    padding: 8px 15px;

    border: 1px solid #b8ad9f;

    color: #555;

    text-decoration: none;

    font-size: 9px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.outline-button:hover {
    background: rgba(255, 255, 255, 0.45);

    transform: translateY(-1px);
}

/* =========================================
   PRICING PAGE SHARED BACKGROUND
   ========================================= */

.pricing-page-background {
    position: relative;

    background-image: url("images/prices-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding-bottom: 45px;
}


/* Light overlay across the entire pricing / FAQ / CTA area */

.pricing-page-background::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.48);

    pointer-events: none;

    z-index: 0;
}


/* Keep all content above overlay */

.pricing-page-background > * {
    position: relative;
    z-index: 1;
}


/* =========================================
   PRICING
   ========================================= */

.pricing-section {
    min-height: 390px;
}


.pricing-overlay {
    text-align: center;

    padding: 40px 25px 34px;
}


/* Heading */

.pricing-heading {
    max-width: 520px;

    margin: 0 auto 25px;
}


.pricing-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    color: #333;

    font-size: 29px;

    margin-bottom: 12px;
}


.pricing-heading p {
    color: #555;

    font-size: 9px;
    line-height: 1.45;
}


/* Pricing cards */

.pricing-grid {
    max-width: 1100px;

    margin: 0 auto 22px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}


.pricing-card {
    min-height: 145px;

    padding: 25px 18px 18px;

    background: rgba(255, 255, 255, 0.7);

    border-radius: 10px;

    display: flex;
    flex-direction: column;

    align-items: center;
}


.pricing-card h3 {
    color: #555;

    font-size: 11px;
    font-weight: normal;

    margin-bottom: 16px;
}


/* Price */

.price {
    color: #8a7967;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;

    margin-bottom: 20px;
}


.price span {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 8px;

    margin-left: 3px;
}


/* Best for */

.pricing-card p {
    color: #666;

    font-size: 7px;
    line-height: 1.4;

    margin-top: auto;
}


/* Bottom note */

.pricing-note {
    max-width: 560px;

    margin: 0 auto;

    color: #555;

    font-size: 8px;
    line-height: 1.45;
}


/* =========================================
   PRICING FAQ
   ========================================= */

.pricing-faq {
    width: min(1100px, calc(100% - 80px));

    margin: 35px auto 45px;

    padding: 50px 70px 45px;

    background: rgba(232, 227, 221, 0.88);

    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}


/* FAQ Heading */

.faq-heading {
    text-align: center;

    max-width: 500px;

    margin: 0 auto 45px;
}


.faq-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    color: #333;

    font-size: 23px;

    margin-bottom: 9px;
}


.faq-heading p {
    color: #666;

    font-size: 8px;
    line-height: 1.45;
}


/* FAQ Grid */

.faq-grid {
    max-width: 950px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    column-gap: 100px;
    row-gap: 34px;
}


/* FAQ item */

.faq-item h3 {
    color: #557276;

    font-size: 10px;
    font-weight: normal;

    margin-bottom: 9px;
}


.faq-item p {
    color: #666;

    font-size: 8px;
    line-height: 1.5;

    max-width: 360px;
}


/* FAQ CTA */

.faq-cta {
    text-align: center;

    margin-top: 55px;
}


.faq-cta p {
    color: #666;

    font-size: 9px;

    margin-bottom: 12px;
}


.faq-button {
    min-width: 72px;

    padding: 8px 15px;

    font-size: 8px;
}


/* =========================================
   SERVICES FINAL CTA
   ========================================= */

.services-final-cta {
    min-height: 220px;

    display: flex;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 35px 25px;
}


/* CTA content */

.services-final-cta-content {
    width: min(600px, 90%);

    padding: 22px 40px 18px;

    background: rgba(232, 227, 221, 0.82);

    border-radius: 12px;
}


.services-final-cta-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    color: #333;

    font-size: 23px;

    margin-bottom: 12px;
}


.services-final-cta-content p {
    max-width: 470px;

    margin: 0 auto 16px;

    color: #555;

    font-size: 9px;
    line-height: 1.45;
}


.services-final-cta-content .button {
    min-width: 72px;

    padding: 8px 15px;

    font-size: 8px;
}

/* =========================================
   POLICIES PAGE
   ========================================= */

.policies-page {
    width: 100%;
    background: rgba(232, 227, 221, 0.78);

    margin: 0 auto;
    padding: 120px 30px 100px;

    text-align: center;
}

.policies-intro {
    max-width: 700px;
    margin: 0 auto 60px;
}

.policies-intro h1 {
    margin-bottom: 20px;
}

.policies-intro p {
    line-height: 1.7;
}


/* POLICY GRID */

.policies-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 35px;

    max-width: 800px;
    margin: 0 auto;
}


/* POLICY CARDS */

.policy-card {
    display: block;

    width: 100%;
    aspect-ratio: 702 / 435;

    text-decoration: none;

    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.policy-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.policy-card span {
    font-size: 1.1rem;
    font-weight: 600;
}


/* HOVER */

.policy-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
    background: #d8d1c8;

    min-height: 100px;
    padding: 20px 40px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}


/* Logo */

.site-footer .logo {
    justify-self: start;
}

.site-footer .logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
}


/* Email */

.site-footer .email {
    justify-self: center;

    color: #557276;
    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.site-footer .email:hover {
    text-decoration: underline;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-info p {
    margin: 0;
}

.footer-info p a {
    display: inline-block;
    padding: 6px 16px;
    background: #e8e3dd;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-radius: 20px;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-info p a:hover {
    background: #aa9783;
    color: #fff;
}


/* Social icons */

.socials {
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 18px;
}

.socials a {
    display: flex;

    color: #557276;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.socials a:hover {
    color: #333;
    transform: translateY(-2px);
}

.socials svg {
    width: 22px;
    height: 22px;

    fill: currentColor;
}


/* Instagram needs an outline rather than a filled shape */

.socials a:nth-child(2) svg rect,
.socials a:nth-child(2) svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.socials a:nth-child(2) svg circle:last-child {
    fill: currentColor;
    stroke: none;
}

/* =========================================
   BLOG PAGE
   ========================================= */

.blog-page {
    background: rgba(232, 227, 221, 0.78);
}


/* =========================================
   BLOG INTRO
   ========================================= */

.blog-intro {
    text-align: center;

    padding: 58px 25px 35px;
}


.blog-intro .eyebrow {
    display: block;

    margin-bottom: 12px;
}


.blog-intro h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    color: #333;

    font-size: 32px;

    margin-bottom: 14px;
}


.blog-intro p {
    max-width: 500px;

    margin: 0 auto;

    color: #555;

    font-size: 10px;
    line-height: 1.5;
}


/* =========================================
   BLOG CATEGORY NAVIGATION
   ========================================= */

.blog-nav {
    border-top: 1px solid #c9c1b8;
    border-bottom: 1px solid #c9c1b8;

    background: rgba(255, 255, 255, 0.18);
}


.blog-nav-inner {
    max-width: 1100px;

    margin: 0 auto;

    padding: 0 20px;

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 30px;
}


.blog-nav-link {
    background: none;
    border: none;

    color: #6d6b67;
    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;

    cursor: pointer;

    padding: 8px 14px;

    transition: color 0.2s ease;
}


.blog-category:hover {
    color: #333;
}


.blog-nav-link.active {
    color: #333;
    border-bottom: 1px solid #8a7967;
}


.blog-category.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 8px;

    height: 1px;

    background: #8a7967;
}


/* =========================================
   BLOG SECTION HEADINGS
   ========================================= */

.featured-post-section,
.all-posts-section {
    max-width: 1100px;

    margin: 0 auto;

    padding: 55px 20px 0px;
}


.blog-section-heading {
    margin-bottom: 22px;
}


.blog-section-heading .eyebrow {
    display: block;

    margin-bottom: 7px;
}


.blog-section-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    color: #333;

    font-size: 23px;
}


/* =========================================
   FEATURED ARTICLE
   ========================================= */

.featured-post {
    display: grid;

    grid-template-columns: 1.35fr 1fr;

    min-height: 320px;

    background: #f0ece7;

    border: 1px solid #d0c9c0;

    text-decoration: none;

    color: inherit;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.featured-post:hover {
    transform: translateY(-3px);

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}


.featured-image {
    overflow: hidden;

    min-height: 320px;
}


.featured-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}


.featured-post:hover .featured-image img {
    transform: scale(1.03);
}


.featured-content {
    padding: 42px 40px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}


.post-category {
    color: #8a7967;

    font-size: 8px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-bottom: 12px;
}


.featured-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    color: #333;

    font-size: 25px;
    line-height: 1.2;

    margin-bottom: 12px;
}


.post-meta {
    display: flex;

    gap: 7px;

    color: #999;

    font-size: 7px;

    margin-bottom: 17px;
}


.featured-content p {
    color: #555;

    font-size: 9px;

    line-height: 1.55;

    margin-bottom: 25px;
}


.read-article {
    color: #557276;

    font-size: 8px;

    font-weight: bold;

    margin-top: auto;
}


/* =========================================
   EDITORIAL ARTICLE GRID
   ========================================= */

.editorial-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


.editorial-card {
    background: #f0ece7;

    border: 1px solid #d0c9c0;

    text-decoration: none;

    color: inherit;

    display: flex;
    flex-direction: column;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.editorial-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
}


.editorial-image {
    height: 175px;

    overflow: hidden;
}


.editorial-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}


.editorial-card:hover .editorial-image img {
    transform: scale(1.03);
}


.editorial-content {
    padding: 20px 20px 22px;

    display: flex;
    flex-direction: column;

    flex-grow: 1;
}


.editorial-content h3 {
    color: #333;

    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    font-size: 17px;
    line-height: 1.3;

    margin-bottom: 10px;
}


.editorial-content .post-meta {
    margin-bottom: 13px;
}


.editorial-content p {
    color: #666;

    font-size: 8px;
    line-height: 1.55;

    margin-bottom: 20px;
}


/* =========================================
   BLOG CTA
   ========================================= */

.blog-cta {
    margin-top: 70px;
    min-height: 300px;

    padding: 65px 25px;

    background-image: url("images/index-cta.jpg");
    background-size: cover;
    background-position: 50% 80%;

    text-align: center;

    position: relative;
}


.blog-cta::before {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(232, 227, 221, 0.68);
}


.blog-cta-content {
    width: min(650px, 90%);

    margin: 0 auto;

    padding: 35px 45px;

    background: rgba(232, 227, 221, 0.9);

    border-radius: 12px;

    position: relative;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}


.blog-cta-content .eyebrow {
    display: block;

    margin-bottom: 10px;
}


.blog-cta-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: normal;

    color: #333;

    font-size: 24px;

    margin-bottom: 12px;
}


.blog-cta-content p {
    max-width: 500px;

    margin: 0 auto 22px;

    color: #555;

    font-size: 9px;
    line-height: 1.5;
}


/* =========================================
   BLOG MOBILE
   ========================================= */

@media (max-width: 700px) {

    .blog-intro {
        padding: 50px 25px 30px;
    }


    .blog-intro h1 {
        font-size: 27px;
    }


    .blog-intro p {
        font-size: 11px;
    }


    /* Category navigation */

    .blog-nav-inner {
        justify-content: flex-start;

        overflow-x: auto;

        gap: 24px;

        padding: 0 20px;

        scrollbar-width: none;
    }


    .blog-nav-inner::-webkit-scrollbar {
        display: none;
    }


    .blog-category {
        flex: 0 0 auto;

        font-size: 9px;
    }


    /* Sections */

    .featured-post-section,
    .all-posts-section {
        padding: 45px 20px 0;
    }


    /* Featured article */

    .featured-post {
        grid-template-columns: 1fr;
    }


    .featured-image {
        height: 220px;
        min-height: 220px;
    }


    .featured-content {
        padding: 28px 25px 30px;
    }


    .featured-content h3 {
        font-size: 22px;
    }


    .featured-content p {
        font-size: 10px;
    }


    /* Article grid */

    .editorial-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .editorial-image {
        height: 200px;
    }


    .editorial-content h3 {
        font-size: 19px;
    }


    .editorial-content p {
        font-size: 10px;
    }


    /* CTA */

    .blog-cta {
        margin-top: 55px;

        padding: 50px 20px;
    }


    .blog-cta-content {
        padding: 30px 25px;
    }


    .blog-cta-content h2 {
        font-size: 22px;
    }


    .blog-cta-content p {
        font-size: 10px;
    }

}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .site-header {
        height: auto;
        min-height: 70px;

        flex-direction: column;
        padding: 12px;
        gap: 12px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 15px;

        text-align: center;
        padding: 25px 20px;
    }

    .site-footer .logo {
        justify-self: center;
    }

    .site-footer .email {
        justify-self: center;
    }

    .socials {
        justify-self: center;
    }
    .main-nav {
        margin: 0;

        gap: 16px;

        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav a {
        font-size: 11px;
    }

    .hero {
        min-height: 550px;
    }

    .hero h1 {
        font-size: 27px;
    }

    .hero p {
        font-size: 12px;
        max-width: 90%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: 140px;
    }

    .intro {
        padding: 35px 25px;
    }

    /* Services */

    .services-preview {
        padding: 35px 20px 45px;
    }

    .service-cards {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .service-card {
        min-height: 130px;

        padding: 25px 15px;
    }


    /* My Story */

    .my-story {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .story-image {
        min-height: 300px;
    }

    .story-content {
        max-width: none;

        padding: 40px 30px;

        text-align: center;
    }


    /* Blog */

    .latest-tips {
        padding: 40px 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .blog-image {
        height: 190px;
    }


    /* CTA */

    .final-cta {
        min-height: 350px;

        background-position: center;
    }

    .final-cta-content {
        text-align: center;
    }

    .final-cta p {
        margin-left: auto;
        margin-right: auto;
    }

    /* About Me - My Journey */

    .about-journey {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 55px 25px;
    }

    .journey-content {
        text-align: center;
    }

    .journey-content h1 {
        font-size: 27px;
    }

    .journey-content p {
        font-size: 11px;
    }

    .journey-image {
        max-width: 500px;
        margin: 0 auto;
    }


    /* About Me - My Approach */

    .about-approach {
        padding: 50px 25px 60px;
    }

    .approach-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
   
    }

    .approach-item {
    padding: 0 20px;
    }

    .approach-item:not(:last-child) {
    border-right: none;
    }

/* Vertical divider between the two columns */
    .approach-item:nth-child(odd) {
    border-right: 1px solid #b8ad9f;
    }

/* Horizontal divider between the two rows */
    .approach-item:nth-child(-n+2) {
    padding-bottom: 40px;
    border-bottom: 1px solid #b8ad9f;
    }

/* Make sure the bottom-right item doesn't inherit a right border */
    .approach-item:nth-child(4) {
    border-right: none;
    }

    /* How It Works - The Process */

    .process-section {
        min-height: auto;

        padding: 50px 25px 60px;

        background-position: center;
    }

    .process-section .section-heading {
        margin-bottom: 40px;
    }

    .process-section .section-heading h1 {
        font-size: 27px;
    }

    .process-section .section-heading p {
        font-size: 11px;
    }

    .process-container {
        width: 100%;
    }

    .process-step {
        margin-bottom: 30px;
    }

    .step-content h2 {
        font-size: 13px;
    }

    .step-content p {
        font-size: 11px;
    }

    /* =========================================
       SERVICES & PRICES
       ========================================= */

    .services-detail {
        padding: 50px 20px;
    }

    .services-detail h1 {
        font-size: 27px;
    }

    .services-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .service-detail-card {
        min-height: 150px;
        padding: 20px 14px;
    }


    /* Pricing */

    .pricing-section {
        padding: 50px 20px;
    }

    .pricing-heading h2 {
        font-size: 27px;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .pricing-card {
        min-height: 160px;
        padding: 22px 12px 16px;
    }


    /* FAQ */

    .pricing-faq {
        width: calc(100% - 30px);
        padding: 40px 25px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-item p {
        max-width: none;
    }


    /* Final CTA */

    .services-final-cta {
        min-height: 260px;
        padding: 40px 20px;
    }

    .services-final-cta-content {
        padding: 30px 25px;
    }

    .services-final-cta-content h2 {
        font-size: 22px;
    }

/* =========================================
   BLOG ARTICLES - MOBILE
   ========================================= */

@media (max-width: 700px) {

    .article-header {
        padding: 60px 20px 50px;
    }

    .article-header h1 {
        font-size: 34px;
    }

    .article-standfirst {
        font-size: 14px;
    }

    .article-featured-image {
        width: calc(100% - 40px);
        margin-bottom: 45px;
    }

    .article-content {
        width: calc(100% - 40px);
        padding: 55px 20px 50px;
        font-size: 1rem;
    }

    .article-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .article-opening {
        font-size: 1.1rem;
    }

    .article-content h2 {
        margin-top: 55px;
        font-size: 1.7rem;
    }

    .article-content h3 {
        margin-top: 35px;
        font-size: 1.25rem;
    }

    .article-highlight {
        padding: 25px 22px;
        margin: 45px 0;
    }

    .article-table {
        font-size: 0.85rem;
    }

    .article-table th,
    .article-table td {
        padding: 9px 7px;
    }

    .article-cta {
        margin-top: 65px;
        padding: 60px 20px;
    }

    .article-cta-content {
        padding: 35px 25px;
    }

    .article-cta-content p {
        font-size: 14px;
    }

    .article-back {
        padding-bottom: 60px;
    }

}
}
/* =========================================
   SITE-WIDE TYPOGRAPHY OVERRIDE
   ========================================= */

  /*I'm too lazy to change them all throughout*/

/* Navigation */
.main-nav a {
    font-size: 14px;
}

/* Hero */
.hero p {
    font-size: 15px;
    line-height: 1.6;
}

.button {
    font-size: 13px;
}

/* Intro */
.intro p {
    font-size: 15px;
    line-height: 1.6;
}

/* Services preview */
.service-card h3 {
    font-size: 15px;
}

.service-card p {
    font-size: 13px;
    line-height: 1.5;
}

.different-service > p:nth-child(2) {
    font-size: 13px;
}

.different-service .button {
    font-size: 12px;
}

/* My Story */
.story-content p {
    font-size: 14px;
    line-height: 1.6;
}

.story-button {
    font-size: 12px;
}

/* Latest Tips */
.tips-intro {
    font-size: 14px;
    line-height: 1.6;
}

.editorial-content p {
    font-size: 13px;
    line-height: 1.55;
}

/* CTA */
.final-cta-content p {
    font-size: 15px;
    line-height: 1.6;
}

/* About Me */
.journey-content p {
    font-size: 15px;
    line-height: 1.65;
}

.approach-item h3 {
    font-size: 14px;
}

.approach-item p {
    font-size: 13px;
    line-height: 1.6;
}

/* How It Works */
.process-section .section-heading p {
    font-size: 14px;
    line-height: 1.6;
}

.step-content h2 {
    font-size: 15px;
}

.step-content p {
    font-size: 14px;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-item h3 {
    font-size: 14px;
}

.testimonials-item p {
    font-size: 13px;
    line-height: 1.6;
}

/* Blog */
.blog-intro p {
    font-size: 14px;
    line-height: 1.6;
}

.blog-nav-link {
    font-size: 13px;
}

.post-category {
    font-size: 11px;
}

.post-meta {
    font-size: 11px;
}

.featured-content p {
    font-size: 13px;
    line-height: 1.55;
}

.read-article {
    font-size: 12px;
}

.blog-cta-content p {
    font-size: 13px;
    line-height: 1.55;
}

/* Services & Prices */
.service-detail-card h2 {
    font-size: 14px;
}

.service-detail-card p {
    font-size: 13px;
    line-height: 1.55;
}

.custom-service > p:nth-child(2) {
    font-size: 13px;
    line-height: 1.55;
}

.outline-button {
    font-size: 12px;
}

.pricing-heading p {
    font-size: 14px;
    line-height: 1.6;
}

.pricing-card h3 {
    font-size: 14px;
}

.pricing-card p {
    font-size: 12px;
    line-height: 1.5;
}

.pricing-note {
    font-size: 12px;
}

.faq-heading p {
    font-size: 14px;
    line-height: 1.6;
}

.faq-item h3 {
    font-size: 14px;
}

.faq-item p {
    font-size: 13px;
    line-height: 1.55;
}

.faq-cta p {
    font-size: 13px;
    line-height: 1.55;
}

.services-final-cta-content p {
    font-size: 13px;
    line-height: 1.55;
}

.services-final-cta-content .button {
    font-size: 12px;
}

@media (max-width: 700px) {

    .policies-page {
        padding: 100px 20px 70px;
    }

    .policies-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .policy-card {
        min-height: 260px;
    }

    .policy-card img {
        height: 160px;
    }

}