/* Services for Businesses Page Styles */

/* Hero Section */
.hero-business {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-business__overlay {
    position: relative;
    width: 100%;
    padding: 120px 20px 80px;
}

.hero-business__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-business__title {
    margin: 0 0 40px;
    font-family: 'IvyPresto Headline', 'Playfair Display', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
}

.hero-business__title-highlight {
    font-style: italic;
    color: #C80180;
}

.hero-business__description {
    max-width: 900px;
    margin: 0 auto 48px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
    text-align: center;
}

.hero-business__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #FFFFFF;
    border: 1px solid #C80180;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #C80180;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-business__cta:hover {
    background: #C80180;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 1, 128, 0.3);
}

.hero-business__cta:hover svg path {
    fill: #FFFFFF;
}

.hero-business__cta svg {
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-business__title {
        font-size: 48px;
    }
    
    .hero-business__description {
        font-size: 20px;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .hero-business {
        min-height: 50vh;
    }
    
    .hero-business__overlay {
        padding: 120px 20px 60px;
    }
    
    .hero-business__title {
        font-size: 36px;
        line-height: 110%;
        margin-bottom: 24px;
    }
    
    .hero-business__description {
        font-size: 18px;
        line-height: 140%;
        margin-bottom: 36px;
        max-width: 100%;
    }
    
    .hero-business__cta {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .hero-business__cta svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-business__overlay {
        padding: 120px 16px 50px;
    }
    
    .hero-business__title {
        font-size: 28px;
        line-height: 120%;
    }
    
    .hero-business__description {
        font-size: 16px;
        line-height: 150%;
        margin-bottom: 32px;
    }
    
    .hero-business__cta {
        padding: 12px 24px;
        font-size: 13px;
        gap: 8px;
    }
}

@media (max-width: 320px) {
    .hero-business__overlay {
        padding: 150px 12px 40px !important;
    }
    
    .hero-business__title {
        font-size: 24px !important;
    }
    
    .hero-business__description {
        font-size: 14px !important;
    }
    
    .hero-business__cta {
        padding: 10px 20px !important;
        font-size: 12px !important;
    }
}

/* Hustle Section */
.hustle-section {
    position: relative;
    min-height: 50vh;
    padding: 0;
    background: #FFFFFF;
    display: flex;
    align-items: center;
}

.hustle-container {
    width: 100%;
    padding: 0;
}

.hustle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 50vh;
}

/* Left Column - Logo */
.hustle-logo-col {
    background: #FAFAF8;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hustle-logo {
    max-width: 40%;
    height: auto;
}

/* Right Column - Content */
.hustle-content-col {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hustle-heading {
    margin: 0 0 32px;
    font-family: 'IvyPresto Headline', 'Playfair Display', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
}

.hustle-text {
    margin: 0 0 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
}

.hustle-text:last-of-type {
    margin-bottom: 32px;
}

.hustle-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #C80180;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hustle-cta:hover {
    background: #A00167;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 1, 128, 0.3);
}

.hustle-cta svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.hustle-cta:hover svg {
    transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hustle-section {
        padding: 0;
    }
    
    .hustle-container {
        padding: 0;
    }
    
    .hustle-grid {
        gap: 0;
    }
    
    .hustle-heading {
        font-size: 34px;
        margin-bottom: 20px;
    }
    
    .hustle-text {
        font-size: 13px;
        line-height: 140%;
        margin-bottom: 16px;
    }
    
    .hustle-text:last-of-type {
        margin-bottom: 20px;
    }
    
    .hustle-content-col {
        padding: 40px 50px;
    }
    
    .hustle-cta {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .hustle-logo-col {
        padding: 30px;
        min-height: 250px;
    }
    
    .hustle-logo {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .hustle-section {
        padding: 0;
    }
    
    .hustle-container {
        padding: 0;
    }
    
    .hustle-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hustle-heading {
        font-size: 36px;
        line-height: 110%;
        margin-bottom: 24px;
    }
    
    .hustle-text {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 20px;
    }
    
    .hustle-text:last-of-type {
        margin-bottom: 28px;
    }
    
    .hustle-logo-col {
        padding: 30px 25px;
        order: 1;
        aspect-ratio: 1 / 1;
        min-height: 200px;
    }
    
    .hustle-content-col {
        order: 2;
    }
    
    .hustle-cta {
        padding: 14px 28px;
        font-size: 14px;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hustle-section {
        padding: 0;
    }
    
    .hustle-container {
        padding: 0;
    }
    
    .hustle-heading {
        font-size: 28px;
        line-height: 120%;
    }
    
    .hustle-logo {
        max-width: 60%;
    }
    
    .hustle-text {
        font-size: 15px;
        line-height: 150%;
    }
    
    .hustle-logo-col {
        padding: 30px 20px;
        aspect-ratio: 1 / 1;
        min-height: 220px;
    }
    
    .hustle-cta {
        padding: 12px 24px;
        font-size: 13px;
        align-self: center;
    }
}

@media (max-width: 425px) {
    .hustle-content-col {
        padding: 32px 20px !important;
    }
    
    .hustle-logo-col {
        padding: 25px 18px !important;
        min-height: 215px !important;
    }
}

@media (max-width: 375px) {
    .hustle-content-col {
        padding: 28px 18px !important;
    }
    
    .hustle-logo-col {
        padding: 22px 15px !important;
        min-height: 210px !important;
    }
}

@media (max-width: 320px) {
    .hustle-content-col {
        padding: 25px 15px !important;
    }
    
    .hustle-logo-col {
        padding: 20px 12px !important;
        min-height: 200px !important;
    }
}

/* Venture Section */
.venture-section {
    position: relative;
    min-height: 50vh;
    padding: 0;
    background: #FFFFFF;
    display: flex;
    align-items: center;
}

.venture-container {
    width: 100%;
    padding: 0;
}

.venture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 50vh;
}

/* Left Column - Content */
.venture-content-col {
    padding: 60px 60px 60px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.venture-heading {
    margin: 0 0 32px;
    font-family: 'IvyPresto Headline', 'Playfair Display', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
}

.venture-text {
    margin: 0 0 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
}

.venture-text:last-of-type {
    margin-bottom: 32px;
}

.venture-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #C80180;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.venture-cta:hover {
    background: #A00167;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 1, 128, 0.3);
}

.venture-cta svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.venture-cta:hover svg {
    transform: translateX(4px);
}

/* Right Column - Logo */
.venture-logo-col {
    background: #FAFAF8;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venture-logo {
    max-width: 40%;
    height: auto;
}

/* Venture Responsive Styles */
@media (max-width: 1024px) {
    .venture-section {
        padding: 0;
    }
    
    .venture-container {
        padding: 0;
    }
    
    .venture-grid {
        gap: 0;
    }
    
    .venture-heading {
        font-size: 34px;
        margin-bottom: 20px;
    }
    
    .venture-text {
        font-size: 13px;
        line-height: 140%;
        margin-bottom: 16px;
    }
    
    .venture-text:last-of-type {
        margin-bottom: 20px;
    }
    
    .venture-content-col {
        padding: 40px 50px 40px 60px;
    }
    
    .venture-cta {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .venture-logo-col {
        padding: 30px;
        min-height: 250px;
    }
    
    .venture-logo {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .venture-section {
        padding: 0;
    }
    
    .venture-container {
        padding: 0;
    }
    
    .venture-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .venture-heading {
        font-size: 36px;
        line-height: 110%;
        margin-bottom: 24px;
    }
    
    .venture-text {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 20px;
    }
    
    .venture-text:last-of-type {
        margin-bottom: 28px;
    }
    
    .venture-content-col {
        order: 2;
    }
    
    .venture-logo-col {
        padding: 30px 25px;
        order: 1;
        aspect-ratio: 1 / 1;
        min-height: 200px;
    }
    
    .venture-cta {
        padding: 14px 28px;
        font-size: 14px;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .venture-section {
        padding: 0;
    }
    
    .venture-container {
        padding: 0;
    }
    
    .venture-heading {
        font-size: 28px;
        line-height: 120%;
    }
    
    .venture-logo {
        max-width: 60%;
    }
    
    .venture-text {
        font-size: 15px;
        line-height: 150%;
    }
    
    .venture-logo-col {
        padding: 30px 20px;
        aspect-ratio: 1 / 1;
        min-height: 220px;
    }
    
    .venture-cta {
        padding: 12px 24px;
        font-size: 13px;
        align-self: center;
    }
}

@media (max-width: 425px) {
    .venture-content-col {
        padding: 32px 20px !important;
    }
    
    .venture-logo-col {
        padding: 25px 18px !important;
        min-height: 215px !important;
    }
}

@media (max-width: 375px) {
    .venture-content-col {
        padding: 28px 18px !important;
    }
    
    .venture-logo-col {
        padding: 22px 15px !important;
        min-height: 210px !important;
    }
}

@media (max-width: 320px) {
    .venture-content-col {
        padding: 25px 15px !important;
    }
    
    .venture-logo-col {
        padding: 20px 12px !important;
        min-height: 200px !important;
    }
}

/* Aesthetic Section */
.aesthetic-section {
    position: relative;
    min-height: 50vh;
    padding: 0;
    background: #FFFFFF;
    display: flex;
    align-items: center;
}

.aesthetic-container {
    width: 100%;
    padding: 0;
}

.aesthetic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 50vh;
}

/* Left Column - Logo */
.aesthetic-logo-col {
    background: #FAFAF8;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aesthetic-logo {
    max-width: 40%;
    height: auto;
}

/* Right Column - Content */
.aesthetic-content-col {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.aesthetic-heading {
    margin: 0 0 32px;
    font-family: 'IvyPresto Headline', 'Playfair Display', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
}

.aesthetic-text {
    margin: 0 0 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #000000;
}

.aesthetic-text:last-of-type {
    margin-bottom: 32px;
}

.aesthetic-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #C80180;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.aesthetic-cta:hover {
    background: #A00167;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 1, 128, 0.3);
}

.aesthetic-cta svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.aesthetic-cta:hover svg {
    transform: translateX(4px);
}

/* Aesthetic Responsive Styles */
@media (max-width: 1024px) {
    .aesthetic-section {
        padding: 0;
    }
    
    .aesthetic-container {
        padding: 0;
    }
    
    .aesthetic-grid {
        gap: 0;
    }
    
    .aesthetic-heading {
        font-size: 34px;
        margin-bottom: 20px;
    }
    
    .aesthetic-text {
        font-size: 13px;
        line-height: 140%;
        margin-bottom: 16px;
    }
    
    .aesthetic-text:last-of-type {
        margin-bottom: 20px;
    }
    
    .aesthetic-content-col {
        padding: 40px 50px;
    }
    
    .aesthetic-cta {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .aesthetic-logo-col {
        padding: 30px;
        min-height: 250px;
    }
    
    .aesthetic-logo {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .aesthetic-section {
        padding: 0;
    }
    
    .aesthetic-container {
        padding: 0;
    }
    
    .aesthetic-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .aesthetic-heading {
        font-size: 36px;
        line-height: 110%;
        margin-bottom: 24px;
    }
    
    .aesthetic-text {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 20px;
    }
    
    .aesthetic-text:last-of-type {
        margin-bottom: 28px;
    }
    
    .aesthetic-logo-col {
        padding: 30px 25px;
        order: 1;
        aspect-ratio: 1 / 1;
        min-height: 200px;
    }
    
    .aesthetic-content-col {
        order: 2;
    }
    
    .aesthetic-cta {
        padding: 14px 28px;
        font-size: 14px;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .aesthetic-section {
        padding: 0;
    }
    
    .aesthetic-container {
        padding: 0;
    }
    
    .aesthetic-heading {
        font-size: 28px;
        line-height: 120%;
    }
    
    .aesthetic-logo {
        max-width: 60%;
    }
    
    .aesthetic-text {
        font-size: 15px;
        line-height: 150%;
    }
    
    .aesthetic-logo-col {
        padding: 30px 20px;
        aspect-ratio: 1 / 1;
        min-height: 220px;
    }
    
    .aesthetic-cta {
        padding: 12px 24px;
        font-size: 13px;
        align-self: center;
    }
}

@media (max-width: 425px) {
    .aesthetic-content-col {
        padding: 32px 20px !important;
    }
    
    .aesthetic-logo-col {
        padding: 25px 18px !important;
        min-height: 215px !important;
    }
}

@media (max-width: 375px) {
    .aesthetic-content-col {
        padding: 28px 18px !important;
    }
    
    .aesthetic-logo-col {
        padding: 22px 15px !important;
        min-height: 210px !important;
    }
}

@media (max-width: 320px) {
    .aesthetic-content-col {
        padding: 25px 15px !important;
    }
    
    .aesthetic-logo-col {
        padding: 20px 12px !important;
        min-height: 200px !important;
    }
}

/* What We Help You Achieve Section */
.achieve-section {
    position: relative;
    min-height: 57vh;
    padding: 0;
    background: #FFFFFF;
    display: flex;
    align-items: center;
}

.achieve-container {
    width: 100%;
    padding: 0;
}

.achieve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 57vh;
}

/* Left Column - Content */
.achieve-content-col {
    padding: 60px 60px 60px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.achieve-heading {
    margin: 0 0 32px;
    font-family: 'IvyPresto Headline', 'Playfair Display', serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
}

.achieve-heading-regular {
    font-style: normal;
}

.achieve-heading-italic {
    font-style: italic;
}

.achieve-intro {
    margin: 0 0 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
}

.achieve-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.achieve-list-item {
    margin: 0 0 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
}

.achieve-list-item:last-child {
    margin-bottom: 0;
}

.achieve-list-label {
    font-weight: 600;
}

/* Right Column - Image */
.achieve-image-col {
    position: relative;
    overflow: hidden;
}

.achieve-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Achieve Responsive Styles */
@media (max-width: 1024px) {
    .achieve-section {
        padding: 0;
    }
    
    .achieve-container {
        padding: 0;
    }
    
    .achieve-grid {
        gap: 0;
    }
    
    .achieve-heading {
        font-size: 34px;
        margin-bottom: 20px;
    }
    
    .achieve-intro {
        font-size: 13px;
        line-height: 140%;
        margin-bottom: 16px;
    }
    
    .achieve-list-item {
        font-size: 13px;
        line-height: 140%;
        margin-bottom: 14px;
    }
    
    .achieve-content-col {
        padding: 40px 50px 40px 60px;
    }
}

@media (max-width: 820px) {
    .aesthetic-section {
        min-height: auto;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .aesthetic-grid {
        margin-bottom: 0;
    }
    
    .achieve-section {
        min-height: auto;
        margin-top: -1px;
        padding-top: 0;
    }
    
    .achieve-grid {
        min-height: auto;
    }
    
    .achieve-heading {
        font-size: 30px;
        margin-bottom: 18px;
    }
    
    .achieve-intro {
        font-size: 12px;
        line-height: 140%;
        margin-bottom: 14px;
    }
    
    .achieve-list-item {
        font-size: 12px;
        line-height: 140%;
        margin-bottom: 12px;
    }
    
    .achieve-content-col {
        padding: 35px 45px 35px 55px;
    }
    
    .achieve-image {
        height: 100%;
        object-fit: contain;
    }
    
    .achieve-image-col {
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .achieve-section {
        padding: 0;
    }
    
    .achieve-container {
        padding: 0;
    }
    
    .achieve-grid {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }
    
    .achieve-heading {
        font-size: 36px;
        line-height: 110%;
        margin-bottom: 24px;
    }
    
    .achieve-intro {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 20px;
    }
    
    .achieve-list-item {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 16px;
    }
    
    .achieve-content-col {
        padding: 50px 30px;
        order: 2;
    }
    
    .achieve-image-col {
        order: 1;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .achieve-section {
        padding: 0;
    }
    
    .achieve-container {
        padding: 0;
    }
    
    .achieve-heading {
        font-size: 28px;
        line-height: 120%;
    }
    
    .achieve-intro {
        font-size: 15px;
        line-height: 150%;
    }
    
    .achieve-list-item {
        font-size: 15px;
        line-height: 150%;
    }
    
    .achieve-content-col {
        padding: 40px 20px;
    }
    
    .achieve-image-col {
        min-height: 250px;
    }
}

/* Consultation Details Section */
.consultation-section {
    padding: 80px 20px;
    background: #FAFAF8;
}

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

.consultation-heading {
    margin: 0 0 24px;
    font-family: 'IvyPresto Headline', 'Playfair Display', serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 66px;
    letter-spacing: 0;
    text-align: center;
    color: #101010;
}

.consultation-heading-regular {
    font-style: normal;
}

.consultation-heading-italic {
    font-style: italic;
    color: #C80180;
}

.consultation-intro {
    margin: 0 0 48px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.01em;
    text-align: center;
    color: #101010;
}

.consultation-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.consultation-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.consultation-table th {
    padding: 28px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #101010;
    border-bottom: 2px solid #E0E0E0;
    border-left: none;
    border-right: none;
}

.consultation-table th:first-child,
.consultation-table th:nth-child(2) {
    text-align: left;
}

.consultation-table th:last-child,
.consultation-table td:last-child {
    min-width: 280px;
}

.consultation-table td {
    padding: 32px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #101010;
    border-bottom: 1px solid #E0E0E0;
    border-left: none;
    border-right: none;
}

.consultation-table td:first-child,
.consultation-table td:nth-child(2) {
    text-align: left;
}

.consultation-table td:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.save-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #7CA5DB;
    border-radius: 38px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    margin-left: 8px;
    white-space: nowrap;
}

.save-badge svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.consultation-table tr:last-child td {
    border-bottom: none;
}

.consultation-cta-wrapper {
    text-align: center;
}

.consultation-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #C80180;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.consultation-cta:hover {
    background: #A00167;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 1, 128, 0.3);
}

.consultation-cta svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.consultation-cta:hover svg {
    transform: translateX(4px);
}

/* Consultation Responsive Styles */
@media (max-width: 1024px) {
    .consultation-section {
        padding: 60px 20px;
    }
    
    .consultation-heading {
        font-size: 48px;
        line-height: 56px;
    }
    
    .consultation-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .consultation-table th,
    .consultation-table td {
        font-size: 18px;
        padding: 16px 12px;
    }
}

@media (max-width: 768px) {
    .consultation-section {
        padding: 50px 16px;
    }
    
    .consultation-heading {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 20px;
    }
    
    .consultation-intro {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 32px;
    }
    
    .consultation-table th,
    .consultation-table td {
        font-size: 14px;
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .consultation-heading {
        font-size: 28px;
        line-height: 36px;
    }
    
    .consultation-intro {
        font-size: 15px;
        line-height: 150%;
    }
    
    .consultation-table {
        font-size: 12px;
    }
    
    .consultation-table th,
    .consultation-table td {
        font-size: 12px;
        padding: 10px 6px;
    }
    
    .consultation-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Partnership Commitment Section */
.partnership-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    padding: 80px 20px;
}

.partnership-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.partnership-title {
    margin: 0 0 32px;
    font-family: 'IvyPresto Headline', 'Playfair Display', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #101010;
}

.partnership-title-regular {
    font-style: normal;
}

.partnership-title-italic {
    font-style: italic;
    color: #C80180;
}

.partnership-description {
    max-width: 900px;
    margin: 0 auto 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
    text-align: center;
}

.partnership-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #C80180;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partnership-cta:hover {
    background: #A00167;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 1, 128, 0.3);
}

.partnership-cta svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.partnership-cta:hover svg {
    transform: translateX(4px);
}

/* Partnership Responsive Styles */
@media (max-width: 1024px) {
    .partnership-section {
        padding: 60px 20px;
    }
    
    .partnership-title {
        font-size: 40px;
    }
    
    .partnership-description {
        font-size: 16px;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .partnership-section {
        min-height: auto;
        padding: 50px 20px;
    }
    
    .partnership-title {
        font-size: 32px;
        line-height: 110%;
        margin-bottom: 24px;
    }
    
    .partnership-description {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 32px;
        max-width: 100%;
    }
    
    .partnership-cta {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .partnership-section {
        padding: 40px 16px;
    }
    
    .partnership-title {
        font-size: 26px;
        line-height: 120%;
    }
    
    .partnership-description {
        font-size: 15px;
        line-height: 150%;
    }
    
    .partnership-cta {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    padding: 80px 20px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    margin: 0 0 32px;
    font-family: 'IvyPresto Headline', 'Playfair Display', serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #101010;
}

.testimonials-title-regular {
    font-style: normal;
}

.testimonials-title-italic {
    font-style: italic;
    color: #C80180;
}

.testimonials-description {
    max-width: 900px;
    margin: 0 auto 48px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
    text-align: center;
}

.testimonials-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonials-arrow:hover {
    transform: scale(1.05);
}

.testimonials-arrow:active {
    transform: scale(0.95);
}

.testimonials-arrow svg {
    display: block;
}

.testimonials-content {
    flex: 0 0 800px;
    max-width: 800px;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.testimonials-slides {
    position: relative;
    width: 100%;
}

.testimonials-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonials-slide.active {
    display: block;
    opacity: 1;
}

.testimonials-quote {
    margin: 0 0 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    color: #101010;
}

.testimonials-attribution {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: center;
    color: #C80180;
}

/* Testimonials Responsive Styles */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonials-title {
        font-size: 48px;
    }
    
    .testimonials-description {
        font-size: 16px;
        max-width: 700px;
    }
    
    .testimonials-carousel {
        gap: 30px;
    }
    
    .testimonials-quote {
        font-size: 18px;
        line-height: 32px;
    }
    
    .testimonials-attribution {
        font-size: 18px;
        line-height: 32px;
    }
}

@media (max-width: 820px) {
    .testimonials-carousel {
        max-width: 100%;
        gap: 25px;
    }
    
    .testimonials-content {
        flex: 1;
        max-width: 550px;
    }
    
    .testimonials-arrow svg {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        min-height: auto;
        padding: 50px 20px;
    }
    
    .testimonials-title {
        font-size: 36px;
        line-height: 110%;
        margin-bottom: 24px;
    }
    
    .testimonials-description {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 32px;
        max-width: 100%;
    }
    
    .testimonials-carousel {
        gap: 20px;
        margin-top: 32px;
        max-width: 100%;
    }
    
    .testimonials-content {
        flex: 1;
        max-width: 500px;
        min-height: 300px;
    }
    
    .testimonials-arrow svg {
        width: 50px;
        height: 50px;
    }
    
    .testimonials-quote {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    
    .testimonials-attribution {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 16px;
    }
    
    .testimonials-title {
        font-size: 28px;
        line-height: 120%;
    }
    
    .testimonials-description {
        font-size: 15px;
        line-height: 150%;
    }
    
    .testimonials-carousel {
        gap: 16px;
        flex-direction: column;
    }
    
    .testimonials-arrow {
        order: 2;
    }
    
    .testimonials-arrow-left {
        transform: rotate(90deg);
    }
    
    .testimonials-arrow-right {
        transform: rotate(90deg);
    }
    
    .testimonials-content {
        order: 1;
    }
    
    .testimonials-arrow svg {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-quote {
        font-size: 15px;
        line-height: 26px;
    }
    
    .testimonials-attribution {
        font-size: 15px;
        line-height: 26px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* IvyPresto Font Face Declarations */
@font-face {
    font-family: 'IvyPresto Headline';
    src: url('../typography/Regular\ IvyPresto.otf.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'IvyPresto Headline';
    src: url('../typography/italic\ Regular\ IvyPresto.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'IvyPresto Headline';
    src: url('../typography/Bold\ IvyPresto.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'IvyPresto Headline';
    src: url('../typography/italic\ bold\ IvyPresto.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}
