main {
    padding: 0;
}

.franchise-hero-banner {
    position: relative;
    max-width: 1264px;
    margin: 40px auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.franchise-hero-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px 8px 4px 4px;
    gap: 5px;
    background: #f2f3f5;
    border-radius: 8px;
    margin-bottom: 40px;
}

.franchise-hero-badge p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #303030;
    margin: 0;
}

.franchise-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 0 auto 40px;
    width: 832px;
    padding: 0;
}

.franchise-hero-content h1 {
    font-family: "Figtree", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color: #252525;
    margin: 0;
    width: 100%;
}

.franchise-hero-content h1 span {
    color: #078b98;
    text-decoration: underline;
}

.franchise-hero-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #303030;
    max-width: 712px;
    margin: 0 auto;
}

.franchise-hero-secondary-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.franchise-hero-secondary-content .btn-container .btn-primary {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.franchise-hero-secondary-content .btn-container .btn-secondary {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.franchise-hero-secondary-content .btn-container {
    display: flex;
    gap: 16px;
}

.custom-checkmark-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    text-align: center;
}

.custom-checkmark-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #101010;
}

.custom-checkmark-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(" '../../../img/check.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.franchise-hero-btn-container .btn {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.image-slider-wrapper {
    border: 20px solid #c8ebee;
    width: fit-content;
    border-radius: 6px;
    margin-bottom: 40px;
}

.slider-container {
    position: relative;
    width: 792px;
    height: 408px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-before,
.image-after {
    position: absolute;
    width: 792px;
    height: 408px;
    object-fit: cover;
    top: 0;
}

.image-after {
    clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fff;
    left: var(--position);
    cursor: ew-resize;
    z-index: 10;
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.7);
}

/* 👇 Color-only pulsing animation */
@keyframes pulseColor {
    0%, 100% {
      background-color: #5dbcc6;
      box-shadow: 0 0 0 0 rgba(1, 122, 134, 0); /* transparent border */
    }
    50% {
      background-color: #017a86;
      box-shadow: 0 0 0 6px rgba(1, 122, 134, 0.3); /* transparent border with color */
    }
  }

.slider-button {
    position: absolute;
    border-radius: 6px;
    padding: 9px;
    background: #7accd4;
    left: calc(var(--position) + 2px); /* <- fine-tuned offset */
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 11;
    cursor: ew-resize;
    animation: pulseColor 2s ease-in-out infinite;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

.franchise-hero-sponsors {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
    align-items: center;
}

.inovation-section {
    background-color: #017a86;
    padding: 88px;
}

.inovation-wrapper {
    max-width: 1264px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inovation-title {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    color: #ffffff;
    max-width: 558px;
}

.inovation-description {
    max-width: 558px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #e6f2f3;
    margin-top: 16px;
}

.inovation-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
    margin-top: 40px;
}

.inovation-grid-card {
    background-color: #2f8c99;
    padding: 24px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.inovation-grid-card h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    margin: 0;
    color: #ffffff;
}

.inovation-grid-card p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    color: #e6f2f3;
}

.technology-main-content {
    max-width: 369px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.app-buttons img {
    height: 40px;
}

.app-preview {
    position: absolute;
    right: 0px;
    bottom: 0;
}

.app-preview img {
    height: 193px;
}

.everything-card {
    display: flex;
    flex-direction: column;
}

.everything-main-content {
    max-width: 377px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.everything-main-content .select-box-btn {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10.5px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.team-members {
    position: absolute;
    right: 0;
    bottom: 0;
}

.team-members img {
    height: 194px;
}

.calculate-btn {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: #2f8c99;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
}

.portfolio-card {
    grid-column: 1 / -1;
    padding: 0;
}

.portfolio-metrics {
    margin: 20px 0;
}

.portfolio-number {
    display: flex;
    align-items: baseline;
}

.portfolio-value {
    font-size: 48px;
    font-weight: bold;
}

.portfolio-percentage {
    font-size: 32px;
    margin-left: 10px;
}

.portfolio-timeline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
}

.timeline-year {
    font-size: 16px;
}

.timeline-marker {
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 50%;
    margin: 10px 0;
}

.timeline-label {
    font-weight: bold;
}

.flexibility-card,
.roi-card,
.safety-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flexibility-card,
.roi-card,
.safety-card {
    grid-column: span 1;
}

.bottom-row-container {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-icon img {
    width: 60%;
    height: 60%;
}

.inovation-contact-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inovation-custom-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-left: 0;
    margin-top: 16px;
    text-align: center;
}

.inovation-custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
}

.inovation-custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(" '../../../img/white-check.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.business-parks-section {
    padding: 0 40px;
}

.business-parks-wrapper {
    max-width: 1264px;
    margin: 88px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.business-parks-wrapper h2 {
    max-width: 560px;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    color: #252525;
}

.business-parks-wrapper > p {
    max-width: 560px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

    text-align: center;

    color: #303030;
    margin: 16px 0 40px 0;
}

.business-parks-wrapper #locations-tab {
    display: flex;
    align-self: start;
}

/* Grid layout */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Property cards */
.property-card {
    background: #017a86;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.property-header {
    background-color: #017a86;
    padding: 15px 20px;
}

.property-header h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #ffffff;
    margin: 0;
}

.property-details {
    padding: 0 20px 20px 20px;
    flex-grow: 1;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}

.info-value {
    text-align: right;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}

.button-container {
    padding: 0 20px 20px;
}

.button-container .select-box-btn {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 4px;
}

.details-button {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    color: #3d7d8a;
    background: transparent;
    border: 2px solid #3d7d8a;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.details-button:hover {
    background-color: #3d7d8a;
    color: white;
}

.business-contact-card {
    background-color: #f2f3f5;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.business-contact-content {
    padding: 20px;
    text-align: center;
}

.business-contact-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 44px;
}

.business-contact-card h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #252525;
    margin: 0;
}

.business-contact-text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #303030;
    margin: 16px 0 44px 0;
}

.business-contact-button {
    display: inline-block;
    background-color: #3d7d8a;
    color: white;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.business-contact-button:hover {
    background-color: #2c5c66;
}

.steps-section {
    padding: 0 40px;
    margin-bottom: 88px;
}
.vertical-tabs-container {
    max-width: 734px;
    margin: 0 auto;
    padding: 88px;
    border-radius: 8px;
    background-color: #f2f3f5;
}

.vertical-tabs-heading {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    color: #252525;
    margin: 0;
}

.vertical-tabs-description {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #303030;
    margin: 16px 0 32px 0;
}

.vertical-tabs {
    position: relative;
    display: flex;
    padding: 20px 0;
}

.tabs-indicator {
    position: relative;
    width: 2px;
    min-height: 300px;
    margin-right: 20px;
}

.indicator-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #dfe2e8;
}

.active-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 33.33%;
    background-color: #017a86;
    transition: top 0.4s ease, height 0.4s ease;
}

.tabs-content {
    flex: 1;
}

.tab-item {
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab-number {
    width: 0px;
    height: 0px;
    line-height: 40px;
    text-align: center;
    background-color: #c8ebee;
    color: #078b98;
    font-weight: bold;
    border-radius: 2px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.tab-number.visible {
    width: 40px;
    height: 40px;
    opacity: 1;
    transform: translateX(0);
}

.tab-header {
    padding: 16px 0 8px 0;
}

.tab-title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #252525;
    margin: 0;
}

.tab-body {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    height: 0;
    overflow: hidden;
}

.tab-body.show {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    padding: 0 0 20px 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-description {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #303030;
    margin: 0;
}

.tab-separator {
    height: 1px;
    background-color: #e0e0e0;
    margin: 15px 0;
}

.calculator-section {
    background-color: #017a86;
    padding: 88px 40px;
}

.calculator-wrapper {
    max-width: 1264px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calculator-title {
    max-width: 559px;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    color: #ffffff;
}

.calculator-description {
    max-width: 559px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #e6f2f3;
    margin: 16px 0 32px 0;
}

.calculator-content {
    display: flex;
    gap: 16px;
    width: 100%;
    align-items: flex-start;
}

.calculator-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 20px;
    background: #ffffff;
    border-radius: 8px;
    max-width: 624px;
    width: 100%;
}

.radio-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.radio-container h5 {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */

    color: #252525;
    margin: 0;
}

.radio-button-holder {
    display: flex;
}

.calculator-slider-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.calculator-slider-container .form-range {
    height: 0;
}

.slider-label-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.slider-label-container h5 {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #252525;
    margin: 0;
}

.slider-label-container output {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 12px 20px;
    gap: 10px;
    max-width: 138px;
    background: #f2f3f5;
    border-radius: 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #101010;
}

.input-with-unit {
    position: relative;
    display: inline-block;
    width: 138px;
    max-width: 138px;
}

.slider-label-container input[type="number"] {
    padding-right: 36px; 
    background: #f2f3f5;
    border-radius: 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #101010;
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    appearance: textfield;
    text-align: right;
}

.slider-label-container input[type="number"]::-webkit-inner-spin-button,
.slider-label-container input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-with-unit .unit {
    position: absolute;
    right: 20px; 
    top: 50%;
    transform: translateY(-50%);
    color: #101010;
    font-weight: 600;
    font-size: 16px;
    pointer-events: none;
    background: #f2f3f5;
}

/* Change the filled track color (the part that shows progress) */
input[type="range"]::-webkit-slider-runnable-track {
    background: linear-gradient(
        to right,
        #078b98 0%,
        #078b98 var(--range-progress),
        #c8ebee var(--range-progress),
        #c8ebee 100%
    );
}

input[type="range"]::-moz-range-track {
    background: #e0e0e0; /* Firefox track color */
}

/* For Firefox, we need a different approach for the filled part */
input[type="range"]::-moz-range-progress {
    background-color: #4caf50; /* Green for the filled part in Firefox */
}

/* For IE/Edge */
input[type="range"]::-ms-fill-lower {
    background-color: #4caf50; /* Green for the filled part in IE/Edge */
}

input[type="range"]::-ms-fill-upper {
    background-color: #e0e0e0; /* Light gray for the unfilled part in IE/Edge */
}

input[type="range"]:disabled {
    opacity: 1; /* Override default opacity */
    cursor: not-allowed; /* Still show "not-allowed" cursor to indicate it can't be changed */
}

/* Fix for Webkit browsers (Chrome, Safari, Edge) */
input[type="range"]:disabled::-webkit-slider-thumb {
    background-color: #078b98; /* Restore original color - adjust to match your theme */

    opacity: 1;
}

/* Fix for Firefox */
input[type="range"]:disabled::-moz-range-thumb {
    background-color: #078b98; /* Restore original color - adjust to match your theme */
    opacity: 1;
}

/* Fix for Edge legacy */
input[type="range"]:disabled::-ms-thumb {
    background-color: #078b98; /* Restore original color - adjust to match your theme */
    opacity: 1;
}

.divider {
    height: 1px;
    width: 100%;
    background-color: #078b98;
}

.calculation-result-container {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: #c8ebee;
    border-radius: 8px;
    gap: 20px;
    width: 100%;
}

.calculation-result-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.calculation-result-container h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #303030;
}

.calculation-result-container span {
    color: #017a86;
    margin-left: 16px;
}

.calculation-result-container .btn-primary {
    align-self: flex-end;
    margin-top: 12px;
}

.calculation-result-container > h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #252525;
}

.calculation-result-container p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    color: #303030;
}

.calculation-results-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-dialog {
    max-width: 784px;
}

.modal-content {
    padding: 28px;
}

.modal-header {
    padding: 0;
}

.no-land-header {
    margin-bottom: 40px;
}

.modal-header .modal-title {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;

    color: #252525;
}

.modal-header .btn-close {
    width: 24px;
    height: 24px;
}

.modal-body {
    padding: 0;
}

.modal-body p {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #078b98;
    margin-bottom: 20px;
}

.modal-body form .btn-primary {
    width: 100%;
}

.no-land-btn-container {
    margin-top: 40px;
}

.land-header {
    margin-bottom: 32px;
}
.land-grid {
    row-gap: 20px;
    overflow-y: auto;
    max-height: calc(80vh - 120px);
}

.land-secondary-section-title {
    border-top: 1px solid #078b98;
    padding-top: 20px;
    margin-bottom: 0 !important;
}

.upload-info-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.upload-info-box p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #252525;
    margin: 0;
}

.dropzone {
    border: 2px dashed #a5d3dc;
    border-radius: 10px;
    background-color: #f5fafd;
}

.dz-message img {
    margin-bottom: 12px;
}

.franchise-contact-section {
    padding: 0 40px;
}

.franchise-contact-wrapper {
    max-width: 1264px;
    margin: 88px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.franchise-contact-title {
    max-width: 558px;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    color: #252525;
}

.franchise-contact-description {
    max-width: 559px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #303030;
}

.franchise-contact-section .form-check-input:focus {
    border: 0.0625rem solid #e1e4ea;
}

#hasLandModal .form-check-input:focus {
    border: 0.0625rem solid #e1e4ea;
}

#noLandModal .form-check-input:focus {
    border: 0.0625rem solid #e1e4ea;
}

.franchise-faq-section {
    padding: 40px;
    background-color: #f2f3f5;
}

.franchise-faq-wrapper {
    max-width: 1264px;
    margin: 48px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.franchise-faq-title {
    max-width: 558px;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    color: #252525;
    margin-bottom: 40px;
}

.franchise-faq-accordion-container {
    max-width: 622px;
    width: 100%;
}

.community-section {
    padding: 0px 40px;
}

.community-wrapper {
    max-width: 1264px;
    margin: 88px auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.community-wrapper h2 {
    max-width: 558px;

    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    text-align: center;

    color: #252525;
}

.community-wrapper > .community-description {
    max-width: 559px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #303030;
    margin: 16px 0 40px 0;
}

.community-card {
    padding: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    background: #f2f3f5;
    display: flex;
    flex-direction: column;
}

.card-image {
    position: relative;
    height: 306px;
    overflow: hidden;
    border-radius: 4px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #017a86;
    padding: 4px 10px;
    border-radius: 4px;

    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;

    text-align: center;

    color: #ffffff;
}

.card-content {
    padding: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.card-content h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #303030;
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #cdd3df;
}

.author-image {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    margin-right: 15px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;

    color: #252525;
}

.author-info span {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;

    color: #8c94a2;
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
    display: none;
    justify-content: center;
    align-items: center;
}

.swiper-wrapper {
    padding-bottom: 24px;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: #e5e5e5;
    opacity: 1;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background: #2b7b86;
    opacity: 1;
}

.swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.tablet-only,
.mobile-only {
    display: none;
}

.value-holder {
    font-weight: bold;
    margin-left: 5px !important;
    margin-right: 5px;
    color: #000000 !important;
}

.calculation-results-box p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 1024px) {
    .franchise-hero-banner {
        margin: 32 auto;
    }

    .franchise-hero-badge {
        margin-bottom: 32px;
    }

    .franchise-hero-badge p {
        font-size: 12px;
        line-height: 16px;
    }

    .franchise-hero-badge img {
        width: 16px;
        height: 16px;
    }

    .franchise-hero-content {
        margin-bottom: 32px;
    }

    .image-slider-wrapper {
        border-bottom: 24px solid #c8ebee;
        border-top: 24px solid #c8ebee;
        border-left: 16px solid #c8ebee;
        border-right: 16px solid #c8ebee;
        margin-bottom: 32px;
    }

    .franchise-hero-content h1 {
        font-size: 40px;
        line-height: 40px;
    }

    .franchise-hero-content p {
        font-size: 18px;
        line-height: 28px;
    }

    .franchise-hero-banner {
        max-width: 704px;
    }

    .slider-container {
        width: 672px;
        height: 344px;
    }

    .image-before,
    .image-after {
        width: 672px;
        height: 344px;
    }

    .inovation-grid-container {
        grid-template-columns: 1fr;
    }

    .inovation-grid-card h2 {
        font-size: 28px;
        line-height: 32px;
    }

    .inovation-grid-card p {
        font-size: 16px;
        line-height: 24px;
    }

    .team-members {
        grid-template-columns: 1fr;
    }

    .app-preview {
        right: 24px;
        bottom: 0;
    }

    .team-members {
        right: 24px;
    }
    .team-members img {
        height: 170px;
    }

    .bottom-row-container {
        grid-template-columns: 1fr;
    }

    .inovation-section {
        padding: 32px;
    }

    .inovation-contact-container {
        margin-top: 32px;
    }

    .inovation-contact-container .select-box-btn {
        width: fit-content;
    }

    .business-parks-section {
        padding: 0 32px;
    }

    .business-parks-wrapper h2 {
        font-size: 32px;
        line-height: 32px;
    }

    .business-parks-wrapper #locations-tab {
        margin: 0;
    }
    .property-grid {
        grid-template-columns: auto;
    }
    .steps-section {
        padding: 0 32px;
        margin-bottom: 64px;
    }

    .vertical-tabs-container {
        padding: 64px 73px;
    }

    .vertical-tabs-heading {
        font-size: 32px;
        line-height: 32px;
    }

    .franchise-contact-section {
        padding: 0 32px;
    }

    .franchise-contact-wrapper {
        margin: 64px auto;
    }

    .franchise-contact-title {
        font-size: 32px;
        line-height: 32px;
    }

    .franchise-faq-section {
        padding: 64px 73px;
    }

    .franchise-faq-wrapper {
        margin: 0 auto;
    }

    .franchise-faq-title {
        font-size: 32px;
        line-height: 32px;
    }

    .community-wrapper {
        margin: 64 auto;
    }

    .community-section {
        padding: 0px 32px;
    }

    .community-wrapper h2 {
        font-size: 32px;
        line-height: 32px;
    }

    .card-image {
        height: 260px;
    }

    .calculator-title {
        font-size: 24px;
        line-height: 28px;
    }
    .calculator-section {
        padding: 64px 32px;
    }

    .calculator-content {
        flex-direction: column;
    }
    .calculator-container {
        max-width: none;
        padding: 20px;
    }
    .calculation-result-container {
        padding: 32px;
    }
    .calculation-result-container h3 {
        font-size: 28px;
        line-height: 32px;
    }

    .desktop-only {
        display: none;
    }

    .tablet-only {
        display: block;
    }

    .modal-dialog {
        max-width: 720px;
    }

    .modal-header .modal-title {
        font-size: 28px;
        line-height: 32px;
    }
}

@media (max-width: 767px) {
    .franchise-hero-banner {
        padding: 0 20px;
    }
    .franchise-hero-badge {
        margin-bottom: 24px;
    }

    .franchise-hero-badge p {
        font-size: 12px;
        line-height: 16px;
    }

    .franchise-hero-badge img {
        width: 16px;
        height: 16px;
    }

    .franchise-hero-content {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .franchise-hero-content h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .franchise-hero-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .franchise-hero-secondary-content {
        width: 100%;
    }

    .btn-container {
        gap: 8px;
        flex-direction: column;
        width: 100%;
    }

    .custom-checkmark-list {
        margin-top: 0px;
    }

    .image-slider-wrapper {
        border: 8px solid #c8ebee;
        width: 100%;
        border-radius: 6px;
        margin-bottom: 32px;
    }

    .slider-container {
        width: 100%;
        height: 174px;
    }

    .image-before,
    .image-after {
        width: 100%;
        height: 174px;
    }

    .franchise-hero-sponsors {
        justify-content: center;
        margin-top: 32px;
        flex-wrap: wrap;
        column-gap: 56px;
        row-gap: 20px;
    }

    .inovation-title {
        max-width: 353px;
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 28px;
    }

    .inovation-wrapper{
       margin: 0 auto; 
    }

    .inovation-grid-card h2 {
        font-size: 20px;
        line-height: 24px;
    }

    .inovation-grid-card p {
        font-size: 16px;
        line-height: 24px;
    }

    .technology-main-content {
        row-gap: 12px;
    }

    .technology-card {
        display: flex;
        flex-direction: column;
        padding-bottom: 0;
        align-items: center;
        gap: 24px;
    }

    .app-preview {
        position: relative;
        right: unset;
        bottom: unset;
    }

    .app-preview img {
        height: 152px;
    }

    .everything-main-content {
        row-gap: 12px;
    }

    .everything-card {
        gap: 24px;
        align-items: center;
    }

    .team-members {
        position: relative;
        right: unset;
        bottom: unset;
    }

    .team-members img {
        height: 202px;
    }

    .flexibility-card,
    .roi-card,
    .safety-card {
        row-gap: 12px;
    }

    .inovation-contact-container {
        margin-top: 24px;
    }

    .inovation-contact-container .select-box-btn {
        width: fit-content;
    }
    .business-parks-wrapper h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .business-contact-card h4 {
        font-size: 18px;
        line-height: 20px;
    }

    .property-grid {
        gap: 20px;
    }

    .property-header h4 {
        font-size: 18px;
        line-height: 20px;
    }

    .steps-section {
        padding: 0 20px;
        margin-bottom: 32px;
    }

    .vertical-tabs-container {
        padding: 20px;
    }

    .vertical-tabs-heading {
        font-size: 24px;
        line-height: 28px;
    }

    .tab-title {
        font-size: 18px;
        line-height: 20px;
    }

    .tab-description {
        font-size: 14px;
        line-height: 20px;
    }

    .tab-body {
        padding: 0;
    }

    .franchise-contact-section {
        padding: 0 20px;
    }

    .franchise-contact-wrapper {
        margin: 32px auto;
    }

    .franchise-contact-title {
        font-size: 24px;
        line-height: 28px;
    }

    .franchise-faq-section {
        padding: 32px 20px;
    }

    .franchise-faq-title {
        font-size: 24px;
        line-height: 28px;
    }
    .swiper-pagination {
        display: flex;
    }

    .community-wrapper {
        margin: 32 auto;
    }

    .community-section {
        padding: 0px 20px;
    }

    .community-wrapper h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .community-wrapper > p {
        margin: 8px 0 24px 0;
    }

    .card-image {
        height: 260px;
    }

    .calculator-section {
        padding: 32px 20px;
    }

    .radio-container {
        flex-direction: column;
        align-items: baseline;
        gap: 8px;
    }

    .radio-container h5 {
        font-size: 14px;
        line-height: 18px;
    }

    .slider-label-container h5 {
        font-size: 14px;
        line-height: 18px;
    }

    .calculation-result-container h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .calculation-result-container span {
        margin: 0;
    }

    .calculation-result-container .btn-primary {
        align-self: auto;
    }

    .tablet-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .modal-dialog {
        max-width: 720px;
    }

    .modal-header .modal-title {
        font-size: 20px;
        line-height: 24px;
    }

    .land-header {
        margin-bottom: 24px;
    }
    .land-grid {
        row-gap: 16px;
    }

    .land-secondary-section-title {
        margin-top: 16px;
        margin-bottom: 0 !important;
    }
    .modal-body p {
        font-size: 14px;
        line-height: 18px;
    }
    .modal-content .form-check-label {
        font-size: 14px;
        line-height: 20px;
    }

    .modal-content {
        padding: 20px;
    }
}
