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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

/* First Section Styles */
.first-section {
    padding: 4rem 0;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}


@media (max-width: 768px) {
    .first-container {
        text-align: center; /* Center the text */
        max-width: 90%; /* Adjust the width to fit better on small screens */
        margin: 0 auto; /* Center the container */
    }

    .first-container p {
        max-width: 100%; /* Ensure paragraphs take full width */
        margin: 0 auto; /* Center the paragraphs */
    }

    .main-heading {
        font-size: 2rem; /* Adjust the font size for better readability */
    }
}

.first-container {
    position: relative;
    z-index: 1;
    max-width: 75%;
    margin: 0 auto;
    padding: 50px 20px;
    padding-top: 0px;
}

.first-container p {
    max-width: 75%;
    font-size: 1.25rem;
    padding-block: 20px;
}

.main-heading {
    font-size: 3.5rem;
    max-width: 100%;
    line-height: normal;
}

/* Other Section Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

h1, h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta {
    background-color: #9d2e9d;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 2rem;
    display: inline-block;
    margin-top: 1rem;
}

.cta:hover {
    background-color: rgb(62, 20, 66);
}

.journey-section {
    padding: 5rem 0 2rem 0;
    background-color: #ffffff;
}

.feature-grid {
    display: flex; /* Use flexbox to align items side by side */
    flex-wrap: wrap; /* Allow items to wrap to the next line if necessary */
    gap: 20px; /* Add some space between items */
    justify-content: center; /* Center the items horizontally */
    align-items: center; /* Center the items vertically */
}

.features-img {
    max-width: 100%;
    height: auto;
    width: 300px; /* Set a fixed width */
    height: auto; /* Set a fixed height */
    object-fit: contain; /* Ensure the image covers the area without distortion */
}

@media (max-width: 768px) {
    .feature-grid {
        flex-direction: column; /* Stack items vertically on small screens */
    }
}

.img-title-cards {
    display: flex;
    align-items: stretch;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 1rem;
    width: 100%;
    margin: 0;
}

@media (max-width: 768px) {
    .img-title-cards {
        display: none;
    }
}

.img-title-cards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 0.5rem;
    width: 10rem;
    text-align: center;
}

.card > img {
    width: 4rem;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
}

.card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    padding: 0.5rem 0;
    height: 4rem;
}

.img-content-section-title {
    text-align: center;
    border-top: 1px solid #9d2e9d;
    padding-top: 1.2rem;
    margin-bottom: 0.8rem;
}

.img-content-section {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1rem;
    width: 100%;
    max-width: 60rem;
    margin: auto;
}

.img-content-section.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .img-content-section, .img-content-section.reverse {
        flex-direction: column;
        align-items: center;
    }
}

.img-content-section > img {
    max-height: 15rem;
    width: auto;
    padding: 0.5rem 0;
    object-fit: cover;
    border-radius: 1rem;
}

.img-content-section > div {
    padding: 0.5rem 2rem;
}

.emphasis {
    font-style: italic;
    font-size: 1.1rem;
    color: #9d2e9d;
    padding-bottom: 1rem;
}

.purple-bullets li::before {
    top: -0.75rem;
    color: #9d2e9d;
    font-size: 2rem;
}

/* Third Section Styles */
.approach-section {
    padding: 5rem 0 2rem 0;
    background-color: #e6d3f2;
    position: relative; /* Add position relative for the parallax effect */
    overflow: hidden;
}

.section-title {
    font-size: 2rem;
    letter-spacing: 0.1em;
    text-align: center;
    display: block;
    color: #9d2e9d;
    margin-bottom: 1rem;
}

.approach-section .section-title {
    color: black;
}

.approach-section .cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-evenly;
    gap: 1.5rem; 
    padding: 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .approach-section .cards {
        flex-direction: column; /* Stack cards vertically */
        align-items: center; /* Center align for better aesthetics */
    }
}

/* Lending Journey Section Styles */
.journey-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.journey-section p {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.lending-phase {
    margin-bottom: 40px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.lending-phase h3 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.lending-phase ul {
    list-style-type: none;
    padding-left: 0;
}

.lending-phase li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    padding-left: 30px;
    position: relative;
}

.lending-phase li::before {
    content: '\2022';
    color: #9d2e9d;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

.lending-phase li strong {
    color: #333;
}

.phase-content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

ul {
    width: 100%;
    list-style-type: none; /* Remove default bullets for all <ul> */
    padding-left: 0; /* Reset padding */
    margin: 0;
}

ul > li {
    position: relative;
    padding-left: 20px; /* Indent for custom bullet */
    margin-bottom: 10px;
}

ul > li:before {
    content: "•"; /* Single bullet */
    position: absolute;
    left: 0; /* Align bullet with the text */
    color: #6a0dad; /* Custom color for the bullet */
    font-size: 1.2em; /* Adjust size if needed */
}

ul ul > li {
    padding-left: 30px; /* Additional indent for nested items */
    margin-bottom: 5px; /* Reduce spacing for nested items */
}

ul ul > li:before {
    content: "–"; /* A smaller dash or different bullet for nested items */
    left: 10px; /* Align dash */
    color: #6a0dad;
    font-size: 1em;
}

@media (max-width: 768px) {
    .phase-content {
        flex-direction: column;
    }

    .card {
        flex-direction: column; /* Stack image and text vertically */
        align-items: center;
    }

    .card img {
        max-width: 100%;
    }
}

/* Individual Card Styling */
.approach-section .card {
    flex: 1 1 calc(33% - 3rem); /* Ensure cards take 1/3 width, minus gap */
    max-width: 25rem; 
    min-width: 20rem; 
    border: 1rem solid white;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    flex-direction: column; /* Stack image and text within the card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-section .card-inner {
    text-align: center;
    background-color: #e6d3f2;
    padding: 1rem;
    font-size: 1rem;
    min-width: 20rem;
}

.experts-section {
    padding: 5rem 0 2rem 0;
}

/* Problem Solution Section */
.problem-solution-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.problem-solution-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.comparison-box {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-column {
    flex: 1;
}

.comparison-column h3 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.comparison-column:first-child h3 {
    color: #2B3674;
}

.comparison-column:last-child h3 {
    color: #40B3A2;
}

.issue-card, .solution-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.issue-card .icon-wrapper {
    background-color: #FFE2E5;
    color: #FF5C75;
}

.solution-card .icon-wrapper {
    background-color: #E8F7F5;
    color: #40B3A2;
}

.content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.red-text {
    color: #FF5C75;
}

.quote {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
}

.cta-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.cta-wrapper p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .comparison-box {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .main-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* Industry Challenges Section */
.industry-challenges {
    padding: 6rem 0;
    background-color: #ffffff;
}

.challenges-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.challenges-image {
    flex: 1;
}

.challenges-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.challenges-content {
    flex: 1;
    max-width: 600px;
}

.section-label {
    color: #0066FF;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.challenges-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1E0E62;
    margin-bottom: 2rem;
}

.challenge-item {
    margin-bottom: 2rem;
}

.challenge-item h3 {
    font-size: 1.5rem;
    color: #1E0E62;
    margin-bottom: 0.5rem;
}

.challenge-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.demo-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #4AE3B5;
    color: #1E0E62;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 227, 181, 0.3);
}

@media (max-width: 968px) {
    .challenges-container {
        flex-direction: column;
        gap: 2rem;
    }

    .challenges-content {
        max-width: 100%;
    }

    .challenges-content h2 {
        font-size: 2rem;
    }

    .section-label {
        text-align: center;
    }

    .challenges-content h2 {
        text-align: center;
    }
}

.emphasis-text {
    color: #40B3A2;
    font-weight: 700;
    font-style: italic;
}

.talk-to-us {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #40B3A2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.talk-to-us:hover {
    background-color: #359686;
}

/* Hero Features Styles */
.hero-features {
    margin: 1rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.25rem;
    padding-left: 0.75rem;
}

.feature-icon {
    margin-right: 0.25rem;
    color: #40B3A2;
    font-size: 1.5rem;
    padding-top: 0.2rem;
}

.feature-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 1rem;
}

.hero-bottom-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1rem 0;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-item {
        margin-bottom: 1rem;
    }

    .feature-icon {
        font-size: 1.25rem;
    }

    .feature-item p {
        font-size: 0.95rem;
    }

    .hero-bottom-text {
        font-size: 1rem;
        margin: 1.5rem 0;
    }
}

.hero-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

/* About You Section */
.about-you-section {
    background-color: #E8F7F5;
    padding: 2.5rem 0;
    position: relative;
    scroll-margin-top: 100px;
}

.borrower-intake-section {
    scroll-margin-top: 100px;
}

.about-you-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-you-section .section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.mapping-section {
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
}

.context-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px; /* Set a specific max-width */
    margin: 0 auto;
}

.context-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
    width: 100%;
    max-width: 450px; /* Set explicit max-width for each item */
}

.context-content {
    width: calc(100% - 30px); /* Account for the check icon width and gap */
}

.check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.context-content h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.15rem;
    font-weight: 600;
    white-space: nowrap; /* Keep titles on one line */
}

.context-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
    width: 100%;
}

@media (max-width: 768px) {
    .context-list {
        grid-template-columns: 1fr;
    }
    
    .context-item {
        max-width: 100%;
    }
}

/* Deliver Section */
.deliver-section {
    background-color: #389589;
    padding: 3rem;
    margin: 0 auto;
    color: white;
    text-align: center;
    max-width: 1100px;
    border-radius: 12px;
}

.deliver-section .section-intro {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: normal;
    opacity: 0.9;
    max-width: 900px; /* Reduced from 1200px */
    margin-left: auto;
    margin-right: auto;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem; /* Reduced from 1.5rem */
    max-width: 900px; /* Reduced from 1200px */
    margin: 0 auto;
}

.delivery-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem; /* Reduced from 1.25rem */
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease;
    min-height: 140px;
}

.delivery-item:hover {
    transform: translateY(-5px);
}

.delivery-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-icon img {
    width: 21px;
    height: 21px;
}

.delivery-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}

.delivery-content h3 {
    font-size: 1.25rem; /* Reduced from 1.35rem */
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
    text-align: left;
}

.delivery-content p {
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.ai-plan-button {
    display: inline-block;
    background-color: white;
    color: #389589;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 3rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.ai-plan-button:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    .deliver-section {
        margin: 0 2rem;
    }
}

@media (max-width: 768px) {
    .deliver-section {
        margin: 0 1rem;
        padding: 2rem 1rem;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .delivery-item {
        padding: 1.25rem;
    }

    .delivery-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.35rem;
    }

    .ai-plan-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        margin-top: 2rem;
    }
}

.lending-lifecycle-section {
    padding: 5rem 0 2rem 0;
    background-color: #389589;
    color: white;
}

.lending-lifecycle-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.lending-lifecycle-section .section-title {
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.lending-lifecycle-section .section-intro {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 3rem;
}

.lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.lifecycle-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.lifecycle-card:hover {
    transform: translateY(-5px);
}

.lifecycle-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lifecycle-icon i {
    font-size: 24px;
    color: #389589;
}

.lifecycle-content {
    flex: 1;
}

.lifecycle-content h3 {
    font-size: 1.35rem;
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.lifecycle-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.lifecycle-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .lifecycle-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lifecycle-card {
        padding: 1.5rem;
    }

    .lifecycle-content h3 {
        font-size: 1.25rem;
    }

    .lifecycle-content p {
        font-size: 1rem;
    }
}

.borrower-intake-section,
.underwriting-section,
.closing-section,
.servicing-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.borrower-intake-section .container,
.underwriting-section .container,
.closing-section .container,
.servicing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
}

.lifecycle-feature {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 0;
    margin-bottom: 0;
}

.lifecycle-feature.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    max-width: 600px;
}

.feature-text h3 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1.5rem;
}

.feature-text p:last-child {
    margin-bottom: 0;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px; /* Reduced from 450px */
    margin: 0 auto;
}

.feature-image img {
    width: 100%;
    height: auto;
    max-width: 350px; /* Reduced from 450px */
    border-radius: 20px;
}

.feature-image .image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #E8F7F5;
    border-radius: 20px;
}

@media (max-width: 968px) {
    .feature-image {
        max-width: 280px; /* Reduced from 350px */
    }
    
    .feature-image img {
        max-width: 280px; /* Reduced from 350px */
    }
}

@media (max-width: 968px) {
    .borrower-intake-section,
    .underwriting-section,
    .closing-section,
    .servicing-section {
        padding: 2rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .lifecycle-feature,
    .lifecycle-feature.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-text {
        max-width: 100%;
    }

    .feature-text h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .feature-text p {
        font-size: 1rem;
        text-align: center;
    }

    .feature-image .image-placeholder {
        height: 300px;
    }
}

/* Hero Section Styles */
.hero-section {
    min-height: 90vh;
    padding: 2rem 2rem 2rem 2rem;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.hero-text p:first-of-type {
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 1rem;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.consultant-image {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 550px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .hero-section {
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        height: 400px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-image {
        height: 300px;
    }
}

.solution-framework {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.solution-framework .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.solution-framework .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.solution-framework .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.pillar-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* Changed from center to flex-start */
    gap: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;  /* Center-aligned */
    background-color: #E8F7F5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.pillar-icon:hover {
    transform: scale(1.1);
}

.pillar-icon img {
    width: 32px;
    height: 32px;
}

.pillar-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;  /* Center-aligned for better visual balance */
    width: 100%;  /* Added to ensure full width */
}

.pillar-subtitle {
    font-size: 1.25rem;
    color: #40B3A2;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: left;
    width: 100%;
}

.pillar-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    text-align: left;
    width: 100%;
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.pillar-list li {
    margin-bottom: 1rem;
    padding-left: 20px;  /* Added padding for bullet points */
    position: relative;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.pillar-list li::before {
    content: "•";  /* Restored bullet points */
    position: absolute;
    left: 0;
    color: #40B3A2;
}

.solution-cta {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.solution-cta .talk-to-us {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #40B3A2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.solution-cta .talk-to-us:hover {
    background-color: #359686;
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pillar-card {
        padding: 1.5rem;
    }
}

.team-section {
    padding: 6rem 0;
    background-color: #ffffff;
    scroll-margin-top: 100px;
}

.team-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-section .section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    color: #333;
}

.team-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: normal;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
    justify-content: center;
}

.team-member {
    flex: 0 1 calc(33.333% - 1.67rem);
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.team-member p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.team-member-title {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .team-member {
        flex: 0 1 75%;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 4rem 0;
    }

    .team-section .section-title {
        font-size: 2rem;
    }

    .team-section .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }

    .team-member {
        flex: 0 1 100%;
        padding: 1.5rem;
    }
}

.speak-link {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.speak-link:hover {
    color: #40B3A2;
}

/* Blog Section Styles */
.blog-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    font-size: 0.75rem;
    color: #40B3A2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    border: 1px solid #40B3A2;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background-color: rgba(64, 179, 162, 0.1);
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #2c3e50;
}

.blog-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #40B3A2;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more i {
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more {
    color: #2c8f80;
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-all-blogs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #40B3A2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.view-all-blogs:hover {
    background-color: #359686;
    transform: translateY(-2px);
}

.view-all-blogs i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.view-all-blogs:hover i {
    transform: translateX(3px);
}

@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 4rem 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }
}

.blog-section .section-title {
    text-align: center;
    margin-bottom: 0.25rem;  /* Reduced from default margin */
    font-size: 2.5rem;
    color: #333;
}

.blog-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: normal;
}