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

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Lexend', sans-serif;
    width: 100%;
    overflow-x: hidden;
}

.content-wrapper {
    margin-top: 10vh;
    width: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;700&display=swap');

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.25vw 4.75vw;
    background-color: #fff;
    font-family: 'Lexend', sans-serif;
    height: 10vh;
    box-shadow: 0 0.68vw 4.83vw 0 #a2a2a2;
    gap: 0.625vw;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    margin: 0;
    position: relative;
}

.logo img {
    height: 7vh;
}

.nav-links {
    display: flex;
    gap: 3.25vw;
}

.nav-links a {
    text-decoration: none;
    color: #808080;
    font-size: 1.25vw;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #000;
}

.nav-links a.active {
    color: #000;
}

.contact-us {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    text-decoration: none;
    color: #000;
    font-size: 1.25vw;
}

.contact-us .icon {
    width: 1.56vw;
    height: 2.5vh;
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Hide Contact Us inside nav-links on desktop */
.nav-links .contact-us {
    display: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    text-decoration: none;
    color: #808080;
    font-size: 1.25vw;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3vw;
}

.dropdown-toggle:hover {
    color: #000;
}

.dropdown-toggle.active {
    color: #000;
}

.dropdown-arrow {
    width: 1vw;
    height: 1vw;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(70% + 0.5vh);
    left: 0;
    background-color: #fff;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1vh 0;
    z-index: 1001;
}

.dropdown-menu a {
    display: block;
    padding: 1.2vh 1.5vw;
    text-decoration: none;
    color: #808080;
    font-size: 1.15vw;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #000;
    padding-left: 2vw;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1vw;
    }

    .nav-links a {
        font-size: 1.5vw;
    }

    .contact-us {
        font-size: 1.5vw;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 4vw 6vw !important;
        height: 12vh !important;
        justify-content: center !important;
        position: relative !important;
        overflow: visible !important;
    }

    .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .logo img {
        height: 6vh !important;
    }

    .nav-links {
        position: fixed !important;
        top: 12vh !important;
        left: -100% !important;
        width: 100vw !important;
        height: calc(100vh - 12vh) !important;
        background-color: #fff !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding-top: 5vh !important;
        gap: 4vh !important;
        transition: left 0.3s ease !important;
        z-index: 999 !important;
        overflow-y: auto !important;
    }

    .nav-links.active {
        left: 0 !important;
    }

    .nav-links a {
        font-size: 5vw !important;
        padding: 2vh 0 !important;
        width: 80% !important;
        text-align: center !important;
        color: #808080 !important;
        transition: color 0.3s ease !important;
    }

    .nav-links a:hover {
        color: #000 !important;
    }

    .nav-links a.active {
        color: #000 !important;
    }

    /* Show Contact Us inside nav-links on mobile */
    .nav-links .contact-us {
        display: flex !important;
        font-size: 5vw !important;
        gap: 3vw !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .nav-links .contact-us .icon {
        width: 6vw !important;
        height: 3vh !important;
    }

    .dropdown {
        width: 80% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .dropdown-toggle {
        width: 100% !important;
        text-align: center !important;
        font-size: 5vw !important;
        padding: 2vh 0 !important;
        color: #808080 !important;
        justify-content: center !important;
    }

    .dropdown-arrow {
        width: 4vw !important;
        height: 4vw !important;
    }

    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        background-color: transparent !important;
        padding: 0 !important;
        width: 100% !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
    }

    .dropdown-menu a {
        font-size: 4.5vw !important;
        padding: 1.5vh 0 !important;
        width: 100% !important;
        text-align: center !important;
    }

    .dropdown-menu a:hover {
        padding-left: 0 !important;
        background-color: transparent !important;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px !important;
    }

    .dropdown:hover .dropdown-menu {
        max-height: 0 !important;
    }

    .dropdown.active:hover .dropdown-menu {
        max-height: 500px !important;
    }

    .dropdown:hover .dropdown-arrow {
        transform: rotate(0deg) !important;
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg) !important;
    }

    .dropdown:not(.active) .dropdown-arrow {
        transform: rotate(0deg) !important;
    }

    .hamburger {
        display: flex !important;
        position: absolute !important;
        right: 6vw !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1001 !important;
    }

    /* Hide desktop contact-us button on mobile, show it in menu */
    .header>.contact-us {
        display: none !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .header {
        padding: 3vw 5vw !important;
        height: 10vh !important;
        box-shadow: none;
    }

    .logo img {
        height: 5vh !important;
    }

    .nav-links {
        top: 10vh !important;
        height: calc(100vh - 10vh) !important;
    }

    .hamburger {
        width: 30px !important;
    }

    .hamburger span {
        width: 30px !important;
        height: 3px !important;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;700&display=swap');

.services-hero {
    background: transparent;
    padding: 8vh 5vw;
    text-align: center;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Lexend', sans-serif;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.services-hero h1 {
    font-size: 5vw;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 3vh;
    line-height: 1.2;
    font-family: 'Lexend', sans-serif;
    max-width: 80vw;
}

.services-hero h1 .highlight {
    color: #017AFF;
    display: inline;
}

.services-hero .tagline {
    font-size: 1.5vw;
    color: #333;
    margin-bottom: 4vh;
    font-weight: 400;
    font-family: 'Lexend', sans-serif;
}

.services-hero .cta-button {
    background: #017AFF;
    color: white;
    border: none;
    padding: 1.5vh 1vw;
    font-size: 1.3vw;
    border-radius: 1.3vw;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1vw;
    transition: all 0.3s ease;
    box-shadow: 0 0.5vh 2vh rgba(0, 102, 255, 0.3);
    font-family: 'Lexend', sans-serif;
}

.services-hero .cta-button:hover {
    background: #0052CC;
    transform: translateY(-0.3vh);
    box-shadow: 0 0.8vh 2.5vh rgba(0, 102, 255, 0.4);
}

.services-hero .cta-button .icon {
    width: 2vw;
    height: 2vw;
    fill: white;
}

.services-difference {
    background: #0066FF;
    padding: 0vh 0vw;
    padding-left: 10vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: center;
    position: relative;
    font-family: 'Lexend', sans-serif;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.services-difference::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-image: url('/images/doodles-hero-section-services.png');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.services-difference .content {
    color: white;
    z-index: 1;
}

.services-difference h2 {
    font-size: 2.5vw;
    font-weight: 600;
    margin-bottom: 3vh;
    line-height: 1.3;
    font-family: 'Lexend', sans-serif;
}

.services-difference p {
    font-size: 1.4vw;
    line-height: 1.6;
    margin-bottom: 2vh;
    font-family: 'Lexend', sans-serif;
}

.services-difference .image-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-difference img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 2vh 4vh rgba(0, 0, 0, 0.2));
}

.mobile-book-header {
    display: none;
}

.services-stats {
    background: url('/images/what goes into a book background.jpg') center center/cover no-repeat;
    padding: 8vh 5vw;
    text-align: center;
    position: relative;
    font-family: 'Lexend', sans-serif;
}

.services-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.services-stats>* {
    position: relative;
    z-index: 1;
}

.services-stats h2 {
    color: white;
    font-size: 3.5vw;
    font-weight: normal;
    margin-bottom: 6vh;
    font-family: 'Lexend', sans-serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5vw;
    margin-bottom: 5vh;
}

.stat-card {
    padding: 3vh 2vw;
}

.stat-card .number {
    font-size: 5vw;
    font-weight: 500;
    color: white;
    margin-bottom: 2vh;
    font-family: 'Lexend', sans-serif;
}

.stat-card .description {
    font-size: 1.5vw;
    color: #ccc;
    line-height: 1.4;
    font-family: 'Lexend', sans-serif;
}

.services-stats .cta-button {
    background: white;
    color: #000;
    border: none;
    padding: 1.5vh 3vw;
    font-size: 1.3vw;
    border-radius: 1vw;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lexend', sans-serif;
}

.services-stats .cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-0.3vh);
}

@media (max-width: 768px) {
    .services-hero {
        padding: 6vh 6vw;
        min-height: 40vh;
        margin-top: -15vh;
    }

    .services-difference img {
        max-width: 96vw;
        height: auto;
        filter: drop-shadow(0 2vh 4vh rgba(0, 0, 0, 0.2));
        margin-top: -10vh;
    }

    .services-hero h1 {
        font-size: 8vw;
        margin-bottom: 2.5vh;
    }

    .services-hero .tagline {
        font-size: 4vw;
        margin-bottom: 3vh;
    }

    .services-hero .cta-button {
        font-size: 4vw;
        padding: 2vw 2vw 2vw 2vw;
        border-radius: 9vw;
        gap: 2vw;
    }

    .services-hero .cta-button .icon {
        width: 5vw;
        height: 5vw;
    }

    .cta-icon {
        width: 5vh;
        height: 5vh;
    }

    .cta-icon img {
        width: 2.5vh;
        height: 2.5vh;
    }

    .services-difference {
        grid-template-columns: 1fr;
        gap: 4vh;
        padding: 5vh 6vw 0 0;
        padding-left: 6vw;
        margin-bottom: -8vh;
    }

    .services-difference::before {
        width: 100%;
        opacity: 0.2;
    }

    .services-difference h2 {
        font-size: 4.5vw;
        margin-bottom: 2.5vh;
    }

    .services-difference p {
        font-size: 4vw;
        margin-bottom: 2vh;
    }

    .services-difference .image-container {
        margin-bottom: 0vh;
    }

    .services-stats {
        padding: 8vh 6vw;
        margin-top: 7.8vh;
    }

    .services-stats::before {
        display: none;
    }

    .services-stats h2 {
        display: block;
        font-size: 9vw;
        font-weight: 400;
        color: #fff;
        margin-bottom: 6vh;
    }

    .mobile-book-header {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
        margin-bottom: 4vh;
    }

    .stat-card {
        padding: 3vh 2vw;
    }

    .stat-card:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 50%;
    }

    .stat-card .number {
        font-size: 10vw;
        margin-bottom: 1.5vh;
    }

    .stat-card .description {
        font-size: 3.5vw;
        line-height: 1.3;
    }

    .services-stats .cta-button {
        font-size: 4vw;
        padding: 2vh 6vw;
        border-radius: 9vw;
    }
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.0vh;
    height: 4.0vh;
    background: #FFFFFF;
    border-radius: 50%;
}

.cta-icon img {
    width: 2.0vh;
    height: 1.0vh;
}

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;600;700&display=swap');

.suflex-media-intro {
    padding: 8vh 5vw;
    text-align: center;
    font-family: 'Lexend', sans-serif;
}

.suflex-media-intro .section-title {
    font-size: 3.5vw;
    font-weight: normal;
    color: #1A1A1A;
    margin-bottom: 3vh;
    font-family: 'Lexend', sans-serif;
}

.suflex-media-intro .section-description {
    font-size: 1.4vw;
    color: #333;
    max-width: 55vw;
    margin: 0 auto 6vh auto;
    line-height: 1.6;
    font-family: 'Lexend', sans-serif;
}

.key-metrics-grid {
    display: flex;
    justify-content: center;
    gap: 1.5vw;
    padding: 0;
    margin: 0 auto 10vh auto;
    flex-wrap: wrap;
}

.metric-card {
    border: 0.2vw solid #017AFF;
    border-radius: 2vh;
    padding: 4vh 2vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 28vh;
    width: 15vw;
    background: white;
    font-family: 'Lexend', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.metric-card:hover {
    background: #017AFF;
}

.metric-card .metric-icon {
    width: 7vh;
    height: 7vh;
    margin-bottom: 2.5vh;
    transition: filter 0.3s ease;
}

.metric-card:hover .metric-icon {
    filter: brightness(0) invert(1);
}

.metric-card .metric-value {
    font-size: 3.5vw;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1.5vh;
    font-family: 'Lexend', sans-serif;
    transition: color 0.3s ease;
}

.metric-card:hover .metric-value {
    color: #FFFFFF;
}

.metric-card .metric-label {
    font-size: 1.1vw;
    color: #1A1A1A;
    font-weight: 400;
    font-family: 'Lexend', sans-serif;
    transition: color 0.3s ease;
}

.metric-card:hover .metric-label {
    color: #FFFFFF;
}

.book-types-section {
    padding: 8vh 5vw;
    background: #FFFFFF;
    font-family: 'Lexend', sans-serif;
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.book-types-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3vh;

    pointer-events: none;
}

.book-types-section .section-subtitle {
    font-size: 3.5vw;
    font-weight: normal;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 6vh;
    font-family: 'Lexend', sans-serif;
}

.book-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3vw;
    max-width: 75vw;
    margin: 0 auto 6vh auto;
}

.book-type-card {
    border: none;
    border-radius: 1.5vh;
    padding: 3.5vh 2.5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    font-family: 'Lexend', sans-serif;
    min-height: 18vh;
    justify-content: center;
}

.book-type-card:hover {
    transform: translateY(-0.8vh);
    box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.2);
}

.book-type-card .book-type-icon {
    width: 6vh;
    height: 6vh;
    margin-bottom: 2vh;
    flex-shrink: 0;
}

.book-type-card .book-type-label {
    font-size: 1.3vw;
    font-weight: 500;
    color: #1A1A1A;
    line-height: 1.4;
    font-family: 'Lexend', sans-serif;
}

.cta-container {
    text-align: center;
    margin-top: 6vh;
}

.cta-container .cta-button {
    background: #017AFF;
    color: white;
    border: none;
    padding: 1.5vh 1vw;
    font-size: 1.3vw;
    border-radius: 1.3vw;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1vw;
    transition: all 0.3s ease;
    box-shadow: 0 0.5vh 2vh rgba(0, 102, 255, 0.3);
    font-family: 'Lexend', sans-serif;
}

.cta-container .cta-button:hover {
    background: #0052CC;
    transform: translateY(-0.3vh);
    box-shadow: 0 0.8vh 2.5vh rgba(0, 102, 255, 0.4);
}

.cta-container .cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4vh;
    height: 4vh;
    background: #FFFFFF;
    border-radius: 50%;
}

.cta-container .cta-icon img {
    width: 2vh;
    height: 2vh;
}

@media (max-width: 992px) {
    .suflex-media-intro {
        padding: 6vh 6vw;
    }

    .suflex-media-intro .section-title {
        font-size: 6vw;
        margin-bottom: 2.5vh;
    }

    .suflex-media-intro .section-description {
        font-size: 3.5vw;
        max-width: 85vw;
        margin-bottom: 5vh;
    }

    .key-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
        padding: 0 6vw;
        margin-bottom: 8vh;
    }

    .metric-card {
        padding: 3.5vh 3vw;
        min-height: 25vh;
    }

    .metric-card .metric-icon {
        width: 6vh;
        height: 6vh;
        margin-bottom: 2vh;
    }

    .metric-card .metric-value {
        font-size: 6vw;
        margin-bottom: 1.5vh;
    }

    .metric-card .metric-label {
        font-size: 3vw;
    }

    .book-types-section {
        padding: 6vh 6vw;
    }

    .book-types-section .section-subtitle {
        font-size: 6vw;
        margin-bottom: 5vh;
    }

    .book-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
        max-width: 90vw;
        margin-bottom: 5vh;
    }

    .book-type-card {
        padding: 3vh 3vw;
        min-height: 16vh;
    }

    .book-type-card .book-type-icon {
        width: 5.5vh;
        height: 5.5vh;
        margin-bottom: 1.5vh;
    }

    .book-type-card .book-type-label {
        font-size: 3vw;
    }

    .cta-container {
        margin-top: 5vh;
    }

    .cta-container .cta-button {
        font-size: 3.5vw;
        padding: 2vh 6vw;
        border-radius: 2vw;
        gap: 1.5vw;
    }

    .cta-container .cta-icon {
        width: 4.5vh;
        height: 4.5vh;
    }

    .cta-container .cta-icon img {
        width: 2.2vh;
        height: 2.2vh;
    }
}

@media (max-width: 576px) {
    .suflex-media-intro {
        padding: 5vh 6vw;
    }

    .suflex-media-intro .section-title {
        font-size: 7.5vw;
        margin-bottom: 2vh;
    }

    .suflex-media-intro .section-description {
        font-size: 4.2vw;
        max-width: 90vw;
        margin-bottom: 4vh;
        line-height: 1.7;
    }

    .key-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
        padding: 0 6vw;
        margin-bottom: 6vh;
    }

    .metric-card {
        padding: 3vh 3vw;
        min-height: 20vh;
        min-width: 40vw;
    }

    .metric-card .metric-icon {
        width: 6vh;
        height: 6vh;
        margin-bottom: 1.5vh;
    }

    .metric-card .metric-value {
        font-size: 8vw;
        margin-bottom: 1vh;
    }

    .metric-card .metric-label {
        font-size: 3.5vw;
    }

    .book-types-section {
        padding: 5vh 6vw;
    }

    .book-types-section .section-subtitle {
        font-size: 8vw;
        margin-bottom: 4vh;
        font-weight: normal;
    }

    .book-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
        max-width: 90vw;
        margin-bottom: 4vh;
    }

    .book-type-card {
        padding: 3vh 3vw;
        min-height: 15vh;
    }

    .book-type-card .book-type-icon {
        width: 5.5vh;
        height: 5.5vh;
        margin-bottom: 1.5vh;
    }

    .book-type-card .book-type-label {
        font-size: 3.8vw;
    }

    .cta-container {
        margin-top: 4vh;
    }

    .cta-container .cta-button {
        font-size: 4.2vw;
        padding: 0.5vh 5vw;
        border-radius: 9vw;
        gap: 2vw;
    }

    .cta-container .cta-icon {
        width: 3vh;
        height: 3vh;
        margin: 1vh 1vh 1vh 1vh;
    }

    .cta-container .cta-icon img {
        width: 2.5vh;
        height: 1.5vh;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;600;700&display=swap');

.perfect-fit-section {
    background: #FFFFFF;
    padding: 8vh 5vw;
    font-family: 'Lexend', sans-serif;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.perfect-fit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: center;
    max-width: 90vw;
    margin: 0 auto;
}

.perfect-fit-content {
    padding-right: 2vw;
}

.perfect-fit-content h2 {
    font-size: 3.5vw;
    font-weight: 400;
    color: #1A1A1A;
    margin-bottom: 3vh;
    line-height: 1.3;
    font-family: 'Lexend', sans-serif;
    letter-spacing: -0.04em;
}

.perfect-fit-content h2 .highlight {
    color: #017AFF;
    display: inline;
}

.perfect-fit-content p {
    font-size: 1.3vw;
    color: #333;
    line-height: 1.6;
    margin-bottom: 4vh;
    font-family: 'Lexend', sans-serif;
}

.perfect-fit-content .cta-button {
    background: #017AFF;
    color: white;
    border: none;
    padding: 1.5vh 3vw;
    font-size: 1.3vw;
    border-radius: 5vw;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    text-decoration: none;
}

.perfect-fit-content .cta-button:hover {
    background: #0052CC;
    transform: translateY(-0.3vh);
}

.perfect-fit-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.perfect-fit-illustration img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 1vh 3vh rgba(0, 0, 0, 0.1));
}

.brand-philosophy-section {
    background-image: url('/images/what goes into a book background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8vh 5vw;
    text-align: center;
    position: relative;
    font-family: 'Lexend', sans-serif;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.brand-philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.brand-philosophy-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40vw;
    height: 100%;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 1vh,
            rgba(255, 255, 255, 0.03) 1vh,
            rgba(255, 255, 255, 0.03) 2vh);
    pointer-events: none;
    z-index: 0;
}

.philosophy-content {
    position: relative;
    z-index: 1;
    max-width: 70vw;
    margin: 0 auto;
}

.philosophy-quote {
    font-size: 3vw;
    font-weight: 400;
    color: white;
    margin-bottom: 3vh;
    line-height: 1.4;
    font-family: 'Lexend', sans-serif;
}

.philosophy-attribution {
    font-size: 1.2vw;
    color: #CCCCCC;
    font-weight: 400;
    font-family: 'Lexend', sans-serif;
}

@media (max-width: 992px) {
    .perfect-fit-section {
        padding: 6vh 6vw;
    }

    .perfect-fit-container {
        grid-template-columns: 1fr;
        gap: 5vh;
        max-width: 100%;
    }

    .perfect-fit-content {
        padding-right: 0;
        text-align: center;
    }

    .perfect-fit-content h2 {
        font-size: 6vw;
        margin-bottom: 2.5vh;
    }

    .perfect-fit-content p {
        font-size: 3.5vw;
        margin-bottom: 3vh;
        line-height: 1.7;
    }

    .perfect-fit-content .cta-button {
        font-size: 3.5vw;
        padding: 2vh 6vw;
        border-radius: 3vw;
    }

    .perfect-fit-illustration {
        order: -1;
    }

    .brand-philosophy-section {
        padding: 6vh 6vw;
    }

    .philosophy-content {
        max-width: 85vw;
    }

    .philosophy-quote {
        font-size: 5vw;
        margin-bottom: 2.5vh;
    }

    .philosophy-attribution {
        font-size: 2.5vw;
    }
}

@media (max-width: 576px) {
    .perfect-fit-section {
        padding: 5vh 6vw;
    }

    .perfect-fit-container {
        gap: 4vh;
    }

    .perfect-fit-content h2 {
        font-size: 7.5vw;
        margin-bottom: 2vh;
        line-height: 1.3;
        letter-spacing: normal;
    }

    .perfect-fit-content p {
        font-size: 4.2vw;
        margin-bottom: 3vh;
        line-height: 1.7;
    }

    .perfect-fit-content .cta-button {
        font-size: 4.2vw;
        padding: 2.5vh 7vw;
        border-radius: 4vw;
    }

    .brand-philosophy-section {
        padding: 5vh 6vw;
    }

    .brand-philosophy-section::after {
        width: 60vw;
    }

    .philosophy-content {
        max-width: 90vw;
    }

    .philosophy-quote {
        font-size: 4.5vw;
        margin-bottom: 2vh;
        line-height: 1.4;
    }

    .philosophy-attribution {
        font-size: 3.5vw;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;600;700&display=swap');

.services-faq-section {
    background-color: #4A4A4A;
    padding: 8vh 5vw;
    display: flex;
    gap: 5vw;
    font-family: 'Lexend', sans-serif;
    color: white;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.services-faq-title-container {
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-faq-title {
    font-size: 3.5vw;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2vh;
    font-family: 'Lexend', sans-serif;
    text-align: center;
}

.services-faq-subtitle {
    font-size: 1.2vw;
    font-weight: 400;
    color: #E0E0E0;
    font-family: 'Lexend', sans-serif;
    width: 70vh;
    text-align: center;
    padding-left: 15vh;
}

.services-faq-accordion {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.services-faq-item {
    background-color: white;
    border-radius: 1.5vh;
    padding: 2.5vh 2vw;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-faq-item:hover {
    transform: translateY(-0.3vh);
    box-shadow: 0 0.5vh 2vh rgba(0, 0, 0, 0.2);
}

.services-faq-question {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #1A1A1A;
    font-size: 1.3vw;
    font-family: 'Lexend', sans-serif;
}

.services-faq-question .icon {
    font-size: 2vw;
    margin-right: 1.5vw;
    font-weight: 400;
    color: #1A1A1A;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.services-faq-item.active .services-faq-question .icon {
    transform: rotate(45deg);
}

.services-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding-top 0.4s ease-in-out;
    color: #363049;
    font-size: 1.1vw;
    padding-left: 2.8vw;
    padding-top: 0;
    font-family: 'Lexend', sans-serif;
    line-height: 1.6;
    opacity: 0.7;
}

.services-faq-item.active .services-faq-answer {
    max-height: 50vh;
    padding-top: 2vh;
}

.content{
    max-width: 85vw;
}

@media (max-width: 992px) {
    .services-faq-section {
        flex-direction: column;
        gap: 5vh;
        padding: 6vh 6vw;
    }

    .services-faq-title-container {
        width: 100%;
        text-align: center;
    }

    .services-faq-title {
        font-size: 6vw;
        margin-bottom: 2vh;
    }

    .services-faq-subtitle {
        font-size: 3vw;
    }

    .services-faq-accordion {
        gap: 2.5vh;
    }

    .services-faq-item {
        padding: 2.5vh 3vw;
        border-radius: 2vh;
    }

    .services-faq-question {
        font-size: 3.5vw;
    }

    .services-faq-question .icon {
        font-size: 4vw;
        margin-right: 2vw;
    }

    .services-faq-answer {
        font-size: 3vw;
        padding-left: 6vw;
        line-height: 1.7;
    }

    .services-faq-item.active .services-faq-answer {
        max-height: 60vh;
        padding-top: 2vh;
    }
}

@media (max-width: 576px) {
    .services-faq-section {
        padding: 5vh 6vw;
        gap: 4vh;
    }

    .services-faq-title {
        font-size: 7.5vw;
        line-height: 1.3;
    }

    .services-faq-subtitle {
        font-size: 3.8vw;
    }

    .services-faq-accordion {
        gap: 2vh;
    }

    .services-faq-item {
        padding: 2.5vh 4vw;
        border-radius: 2vh;
    }

    .services-faq-question {
        font-size: 4.2vw;
        line-height: 1.4;
    }

    .services-faq-question .icon {
        font-size: 5vw;
        margin-right: 3vw;
    }

    .services-faq-answer {
        font-size: 3.8vw;
        padding-left: 8vw;
        line-height: 1.7;
    }

    .services-faq-item.active .services-faq-answer {
        max-height: 70vh;
        padding-top: 2vh;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;600;700&display=swap');

.book-strategy-cta-section {
    background: #017AFF;
    background-image: url('/images/doodles-hero-section-services.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 8vh 5vw;
    text-align: center;
    position: relative;
    font-family: 'Lexend', sans-serif;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
}

.book-strategy-cta-section::before {
    content: '';
    position: absolute;
    top: -10vh;
    left: -10vw;
    width: 30vw;
    height: 30vw;
    transform: rotate(-15deg);
}

.book-strategy-cta-content {
    position: relative;
    z-index: 1;
    max-width: 70vw;
    margin: 0 auto;
}

.book-strategy-cta-title {
    font-size: 4vw;
    font-weight: 600;
    color: white;
    margin-bottom: 4vh;
    line-height: 1.2;
    font-family: 'Lexend', sans-serif;
}

.book-strategy-cta-button {
    background: white;
    color: #0066FF;
    border: none;
    padding: 2vh 4vw;
    font-size: 1.4vw;
    border-radius: 5vw;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    text-decoration: none;
    box-shadow: 0 0.5vh 2vh rgba(0, 0, 0, 0.2);
}

.book-strategy-cta-button:hover {
    transform: translateY(-0.5vh);
    box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

@media (max-width: 992px) {
    .book-strategy-cta-section {
        padding: 6vh 6vw;
    }

    .book-strategy-cta-section::before {
        width: 40vw;
        height: 40vw;
        top: -15vh;
        left: -15vw;
    }

    .book-strategy-cta-section::after {
        width: 40vw;
        height: 40vw;
        bottom: -15vh;
        right: -15vw;
    }

    .book-strategy-cta-content {
        max-width: 85vw;
    }

    .book-strategy-cta-title {
        font-size: 6.5vw;
        margin-bottom: 3.5vh;
        line-height: 1.3;
    }

    .book-strategy-cta-button {
        font-size: 3.5vw;
        padding: 2.5vh 6vw;
        border-radius: 4vw;
    }
}

@media (max-width: 576px) {
    .book-strategy-cta-section {
        padding: 5vh 6vw;
    }

    .book-strategy-cta-section::before {
        width: 50vw;
        height: 50vw;
        top: -20vh;
        left: -20vw;
    }

    .book-strategy-cta-section::after {
        width: 50vw;
        height: 50vw;
        bottom: -20vh;
        right: -20vw;
    }

    .book-strategy-cta-content {
        max-width: 90vw;
    }

    .book-strategy-cta-title {
        font-size: 7.5vw;
        margin-bottom: 3vh;
        line-height: 1.3;
    }

    .book-strategy-cta-button {
        font-size: 4.2vw;
        padding: 2.5vh 8vw;
        border-radius: 5vw;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;700&display=swap');

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25vh 5vh 5vw 5vw;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(1, 122, 255, 0.25) 100%);
    font-family: 'Lexend', sans-serif;
    gap: 5vh;
    position: static;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    width: 100vw;
    align-items: flex-start;
    padding: 0 5vw;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
}

.footer-section h3 {
    font-size: 1.5vw;
    margin-bottom: 1vh;
}

.footer-section a,
.footer-section p {
    text-decoration: none;
    color: #000;
    font-size: 1.1vw;
}

.footer-section.cta {
    border-right: 3px solid #000;
    padding-right: 2vw;
}

.footer-section.cta h2 {
    font-size: 2vw;
    color: #017AFF;
    text-align: center;
    font-weight: normal;
}

.footer-section.cta .button {
    background-color: #017AFF;
    color: #fff;
    padding: 1.5vh 2vw;
    border-radius: 0.5vw;
    text-align: center;
    font-size: 1.2vw;
    transition: transform 0.3s ease;
}

.footer-section.cta .button:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 1vw;
}

.social-links img {
    width: 2vw;
    height: 2vw;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;

    padding-top: 3vh;
    width: 100%;
}

.footer-logo img {
    height: 15vh;
}

.copyright {
    font-size: 1vw;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 15vh 8vw 8vw 8vw;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 6vh 6vw;
        padding: 0;
        width: 100%;
    }

    .footer-section.cta {
        grid-column: 1 / -1;
        border-right: none;
        padding-right: 0;
        text-align: center;
    }

    .footer-section {
        text-align: left;
        width: 100%;
    }

    .footer-section h3 {
        font-size: 5vw;
        margin-bottom: 2vh;
    }

    .footer-section a,
    .footer-section p {
        font-size: 4vw;
    }

    .footer-section.cta h2 {
        font-size: 8vw;
    }

    .footer-section.cta .button {
        font-size: 4vw;
        padding: 2vh 6vw;
        border-radius: 2vw;
        max-width: 60vw;
        margin: 0 auto;
    }

    .social-links {
        justify-content: flex-start;
        gap: 4vw;
    }

    .social-links img {
        width: 8vw;
        height: 8vw;
    }

    .footer-logo img {
        height: 10vh;
    }

    .copyright {
        font-size: 3.5vw;
        text-align: center;
    }
}