* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -o-font-smoothing: antialiased;
    font-family: 'Poppins', sans-serif;
}

.anti-flicker,
.anti-flicker * {
    visibility: hidden !important;
    opacity: 0 !important;
}

/*smoother text*/
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Set color style to inherit */
.inherit-color * {
    color: inherit;
}

/* Focus state style for keyboard navigation for the focusable elements */
*[tabindex]:focus-visible,
input[type="file"]:focus-visible {
    outline: 0.125rem solid #4d65ff;
    outline-offset: 0.125rem;
}

/* Get rid of top margin on first element in any rich text element */
.w-richtext> :not(div):first-child,
.w-richtext>div:first-child> :first-child {
    margin-top: 0 !important;
}

/* Get rid of bottom margin on last element in any rich text element */
.w-richtext>:last-child,
.w-richtext ol li:last-child,
.w-richtext ul li:last-child {
    margin-bottom: 0 !important;
}

/* Prevent all click and hover interaction with an element */
.pointer-events-off {
    pointer-events: none;
}

/* Enables all click and hover interaction with an element */
.pointer-events-on {
    pointer-events: auto;
}

/* Create a class of .div-square which maintains a 1:1 dimension of a div */
.div-square::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

/* Make sure containers never lose their center alignment */
.container-medium,
.container-small,
.container-large {
    margin-right: auto !important;
    margin-left: auto !important;
}

/* Apply "..." after 3 lines of text */
.text-style-3lines {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Apply "..." after 2 lines of text */
.text-style-2lines {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Adds inline flex display */
.display-inlineflex {
    display: inline-flex;
}

/* These classes are never overwritten */
.hide {
    display: none !important;
}

@media screen and (max-width: 991px) {

    .hide,
    .hide-tablet {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .hide-mobile-landscape {
        display: none !important;
    }
}

@media screen and (max-width: 479px) {
    .hide-mobile {
        display: none !important;
    }
}

.margin-0 {
    margin: 0rem !important;
}

.padding-0 {
    padding: 0rem !important;
}

.spacing-clean {
    padding: 0rem !important;
    margin: 0rem !important;
}

.margin-top {
    margin-right: 0rem !important;
    margin-bottom: 0rem !important;
    margin-left: 0rem !important;
}

.padding-top {
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
}

.margin-right {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
    margin-left: 0rem !important;
}

.padding-right {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
}

.margin-bottom {
    margin-top: 0rem !important;
    margin-right: 0rem !important;
    margin-left: 0rem !important;
}

.padding-bottom {
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-left: 0rem !important;
}

.margin-left {
    margin-top: 0rem !important;
    margin-right: 0rem !important;
    margin-bottom: 0rem !important;
}

.padding-left {
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
}

.margin-horizontal {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
}

.padding-horizontal {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}

.margin-vertical {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
}

.padding-vertical {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
}

/* Apply "..." at 100% width */
.truncate-width {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Removes native scrollbar */
.no-scrollbar {
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}


.navbar1_link {
    text-decoration: none;
    transition: color 0.3s;
    color: #333;
    padding: 10px 15px;
    display: block;
}

.custom-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.custom-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-link {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-link:hover {
    background: #f5f5f5;
}

/* Mobile menu toggle styles */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-line {
    width: 25px;
    height: 2px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s;
}

/* Mobile styles */
@media (max-width: 991px) {
    .navbar1_menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .navbar1_menu.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active .menu-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .custom-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        min-width: auto;
    }

    .custom-dropdown.active .dropdown-menu {
        display: block;
    }
}

/* FAQ Accordion Styles */
.faq1_component {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.faq1_accordion {
    border-bottom: 1px solid #e0e0e0;
    /* padding: 20px 0; */
}

.faq1_question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq1_question:hover {
    color: #0066cc;
}

.faq1_icon-wrapper {
    transition: transform 0.3s ease;
}

.faq1_accordion.active .faq1_icon-wrapper {
    transform: rotate(180deg);
}

.faq1_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq1_accordion.active .faq1_answer {
    max-height: 1000px;
    /* Adjust based on your content */
    padding-top: 15px;
}

.w-richtext p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.w-richtext p:last-child {
    margin-bottom: 0;
}

/* FAQ Accordion Styles 2 main FAQs page */
.faq11_component {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.faq11_accordion {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.faq11_question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq11_question:hover {
    color: #0066cc;
}

.faq11_icon-wrapper {
    transition: transform 0.3s ease;
}

.faq11_accordion.active .faq11_icon-wrapper {
    transform: rotate(45deg);
}

.faq11_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq11_accordion.active .faq11_answer {
    max-height: 1000px;
    /* Adjust based on your content */
    padding-top: 15px;
}

.w-richtext p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.w-richtext p:last-child {
    margin-bottom: 0;
}

/* Remove inline height styles that prevent expansion */
.faq11_answer[style*="height:0px"] {
    height: auto !important;
}




/* Right Modal Styles */
.right-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    z-index: 1000;
    transition: right 0.3s ease-out;
}

.right-modal.active {
    right: 0;
}

.right-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.right-modal.active .right-modal-overlay {
    opacity: 1;
    visibility: visible;
}

.right-modal-content {
    position: relative;
    background: white;
    height: 100%;
    width: 100%;
    padding: 20px;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 1001;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    padding: 0 10px;
}

.modal-close:hover {
    color: #333;
}

/* States Grid Layout */
.states-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.states-grid a {
    display: block;
    padding: 10px;
    color: #0066cc;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 4px;
    text-align: center;
}

.states-grid a:hover {
    background: #f5f5f5;
    color: #004499;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .states-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .right-modal {
        max-width: 100%;
    }
}

/* My CSS */
.section_header72 {
    padding: 48px 24px 42px;
    background-image: linear-gradient(67deg, rgba(229, 229, 250, 0) 20%, rgb(21 81 124 / 41%) 190%);
    background-color: rgb(242, 242, 242);
}

.navbar1_menu {
    gap: 50px;
    font-weight: bold;
}

/* Home Hero section */
/* Home Hero section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.container-large {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 100%;
    order: 1;
}

.hero-badge {
    background: rgba(0, 119, 182, 0.1);
    color: #15517c;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #212529;
}

.hero-content h1 span {
    color: #15517c;
}

.hero-subtitle {
    font-size: 18px;
    color: #495057;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.cta-primary {
    background: #15517c;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.cta-primary:hover {
    background: #0f3d5c;
    transform: translateY(-2px);
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #15517c;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    justify-content: center;
}

.cta-secondary:hover {
    color: #0f3d5c;
    transform: translateX(5px);
}

.hero-trust {
    margin-top: 20px;
}

.trust-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
    justify-content: center;
}

.trust-icons img {
    height: 100px;
    width: auto;
}

.trust-text {
    font-size: 14px;
    color: #6c757d;
    text-align: center;
}

.hero-video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    order: 2;
}

.vimeo-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.vimeo-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.card-value {
    font-size: 24px;
    font-weight: 700;
    color: #15517c;
    line-height: 1;
    margin-bottom: 5px;
}

.card-label {
    font-size: 14px;
    color: #495057;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .hero-section {
        padding: 100px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .hero-content {
        order: 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-cta {
        flex-direction: row;
        align-items: center;
    }

    .trust-icons {
        justify-content: flex-start;
    }

    .trust-text {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero-cta {
        margin-bottom: 40px;
    }

    .cta-primary {
        padding: 15px 30px;
    }

    .video-card {
        bottom: 30px;
        left: 30px;
        padding: 20px;
    }

    .card-value {
        font-size: 28px;
    }
}

/* Trusted By Section */
.trusted-by-section {
    /* background-color: #f8f9fa; */
    padding: 80px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.overline-text {
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6c757d;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: 50px;
    color: #212529;
    margin: 0;
    line-height: 1.3;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-bottom: 60px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.brand-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    /* filter: grayscale(100%) brightness(0.8); */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.trusted-by-cta {
    text-align: center;
    margin-top: 40px;
}

.trusted-by-cta p {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 18px;
}

.cta-link {
    color: #15517c;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cta-link:hover {
    color: #005f92;
    gap: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trusted-by-section {
        padding: 60px 0;
    }
}

/* process-section */
.process-section {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #15517c;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title {
    font-size: 42px;
    line-height: 1.2;
    color: #212529;
    margin-bottom: 20px;
}

.section-title span {
    color: #15517c;
}

.section-description {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.process-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card.highlighted {
    border-top: 4px solid #15517c;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.15);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(0, 119, 182, 0.05);
    line-height: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 119, 182, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon img {
    width: 60px;
    height: 60px;
}

.process-card h3 {
    font-size: 22px;
    color: #212529;
    margin-bottom: 15px;
}

.process-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-details ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.card-details li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #495057;
}

.card-details li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #15517c;
    border-radius: 2px;
}

.process-cta {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #15517c;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.cta-button:hover {
    background: #005f92;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 119, 182, 0.2);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.cta-note {
    color: #6c757d;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-card.highlighted {
        transform: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .process-section {
        padding: 80px 0;
    }
}

/* property-types-section */
.property-types-section {
    background-color: #f8fafc;
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.property-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 119, 182, 0.1);
}

.property-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 119, 182, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.property-icon img {
    width: 50px;
    height: 50px;
}

.property-card h3 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 12px;
}

.property-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
}

.cta-section {
    background: #15517c;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: white;
    margin-top: 30px;
}

.cta-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #15517c;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }

    .property-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .cta-section {
        padding: 30px 20px;
    }
}

/* Benefits Section Styles */
.benefits-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.benefits-header h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #212529;
    margin-bottom: 20px;
}

.benefits-header h2 span {
    color: #15517c;
}

.benefits-header .subtitle {
    font-size: 18px;
    color: #495057;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.03);
}

.benefit-content {
    padding: 30px;
    background: white;
}

.benefit-content h3 {
    font-size: 24px;
    color: #15517c;
    margin-bottom: 15px;
}

.benefit-description {
    font-weight: 600;
    color: #212529;
    margin-bottom: 20px;
    font-size: 18px;
}

.benefit-content p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .benefits-section {
        padding: 100px 0;
    }

    .benefits-header h2 {
        font-size: 42px;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .benefit-card {
        flex-direction: row;
        height: 100%;
    }

    .benefit-image {
        width: 45%;
        height: auto;
    }

    .benefit-content {
        width: 55%;
        padding: 40px;
    }
}

@media (min-width: 992px) {
    .benefits-header h2 {
        font-size: 48px;
    }

    .benefits-grid {
        gap: 60px;
    }

    .benefit-content {
        /* padding: 50px; */
    }
}

@media (max-width: 767px) {
    .benefits-header {
        margin-bottom: 40px;
    }

    .benefits-header h2 {
        font-size: 32px;
    }

    .benefit-image {
        height: 250px;
    }
}


/* Base Styles process-section-steps */
.process-section-steps {
    padding: 5rem 0;
    background: #f9fbfd;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.center-align {
    text-align: center;
}

/* Header Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 700px;
    line-height: 1.6;
}

/* Grid Layout */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-content: center;
}

.process-card {
    position: relative;
    z-index: 1;
}

.card-inner {
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.process-card:hover .card-inner {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #15517c;
}

/* Step Header */
.step-header {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #15517c;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ebf8ff;
    background: #ebf8ff;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Styles */
.step-content h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .process-section-steps {
        padding: 3rem 0;
    }
}

/* Free Proposal */
.cta-section-proposal {
    padding: 5rem 0;
    /* background-color: #f8fafc; */
    position: relative;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Header Styles */
.cta-header {
    margin-bottom: 2.5rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: #4299e1;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Styles */
.cta-form-container {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}

.cta-button {
    background-color: #4299e1;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.cta-button:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
}

/* Message Styles */
.form-message {
    display: none;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.success-message {
    background-color: #f0fff4;
    border: 1px solid #c6f6d5;
}

.error-message {
    background-color: #fff5f5;
    border: 1px solid #fed7d7;
}

.message-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(66, 153, 225, 0.3);
    border-radius: 50%;
    border-top-color: #4299e1;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Privacy Notice */
.privacy-notice {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-section-proposal {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.3rem;
    }

    .cta-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}

/* FAQs Section */
.faq-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Items */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #4299e1;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Active State */
.faq-item.active .faq-question {
    background-color: #ebf8ff;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

/* Footer Button */
.faq-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: white;
    color: #4299e1;
    border: 2px solid #4299e1;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #4299e1;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-header p {
        font-size: 1rem;
    }
}

