/* Shea Law Online Will - Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    display: none;
}

/* Elfsight Widget Smooth Scrolling Override */
.elfsight-app-aee60b71-d7af-4f89-a77d-13feddb61ae6 * {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Target the Elfsight slider container specifically */
[class*="elfsight"] [class*="slider"] *,
[class*="elfsight"] [class*="carousel"] *,
[class*="elfsight"] [class*="reviews"] * {
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1) !important;
    animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1) !important;
}

/* Override any abrupt transforms */
[class*="elfsight"] [style*="transform"] {
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #1e293b;
    background-color: #f1f5f9;
    line-height: 1.6;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Aleo', serif;
    color: #1e293b;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 0;
}

p {
    margin-bottom: 1rem;
}

/* Colors */
.text-primary {
    color: #11846b;
}

.text-secondary {
    color: #1653d4;
}

.bg-primary {
    background-color: #11846b;
}

.bg-white {
    background-color: #ffffff;
}

.bg-gray-50 {
    background-color: #f8fafc;
}

.bg-gray-100 {
    background-color: #f1f5f9;
}

.bg-gray-800 {
    background-color: #1e293b;
}

/* Header */
header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    padding-top: 0.75rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 3rem;
}

/* Navigation */
nav {
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #11846b;
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #11846b;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0e6d58;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: #ffffff;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Bold Credentials Section */
.bold-credentials-section {
    margin-top: 1.25rem;
    background: linear-gradient(135deg, #1653d4, #11846b);
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: white;
    position: relative;
    overflow: hidden;
}

.subtle-credentials-section {
    background-color: #f8f8f8;
    padding: 0.75rem 0;
    margin-top: 3rem;
    margin-bottom: 2rem;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.subtle-credentials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.375rem 1rem;
}

.subtle-stat-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.35rem 0;
}

.subtle-stat-number {
    color: #1653d4;
    font-weight: 700;
    font-size: 1.375rem;
}

.subtle-stat-label {
    color: #555;
    font-size: 1.125rem;
}

.subtle-stat-label i {
    color: #ffb400;
    font-size: 1rem;
    margin-right: -1px;
}

@media (max-width: 768px) {
    .subtle-credentials-container {
        flex-direction: column;
        align-items: center; /* Center align stats on mobile */
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .subtle-stat-item {
        width: 100%;
        justify-content: center; /* Center the stat content */
        text-align: center;
    }
}

.credentials-title {
    text-align: center;
    color: #11846b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.credentials-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: rgba(17, 132, 107, 0.4);
    border-radius: 1.5px;
}

.bold-credentials-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.bold-stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.9rem;
    flex: 1;
    min-width: 180px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bold-stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.bold-stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.bold-plus {
    font-size: 1.75rem;
    position: relative;
    top: -1rem;
    font-weight: 700;
}

.bold-stat-icon {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bold-stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.bold-about-section {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 1.25rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.bold-about-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.bold-about-content {
    position: relative;
    z-index: 1;
}

.bold-about-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
    position: relative;
    display: inline-block;
}

.bold-about-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.5));
    border-radius: 1.5px;
}

.bold-about-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.bold-about-button {
    display: inline-block;
    background-color: white;
    color: #1653d4;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
}

.bold-about-button:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem;
    height: 100%;
}

.credential-item {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
    border-left: 2px solid #11846b;
    height: auto;
}

.credential-item:hover {
    background-color: rgba(17, 132, 107, 0.05);
}

.credential-icon-wrapper {
    background-color: rgba(17, 132, 107, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.credential-stat {
    margin-bottom: 0.75rem;
}

.credential-number {
    font-size: 1rem;
    font-weight: 700;
    color: #11846b;
    line-height: 1.2;
    display: block;
}

.credential-unit {
    font-size: 1rem;
    color: #64748b;
    margin-left: 0.25rem;
    font-weight: 600;
}

.credential-plus {
    font-size: 1.25rem;
    color: #11846b;
    font-weight: 700;
    position: relative;
    top: -0.5rem;
}

.credential-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(17, 132, 107, 0.5), transparent);
    margin: 0.5rem 1rem 0.75rem;
}

.credential-icon {
    color: #11846b;
    font-size: 1rem;
    margin-right: 0.75rem;
}

.credential-content {
    display: flex;
    flex-direction: column;
}

.about-shea {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.button-container {
    text-align: center;
}

.about-shea h3 {
    color: #11846b;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-shea h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: rgba(17, 132, 107, 0.4);
    border-radius: 1px;
}

.about-shea p {
    color: #334155;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.875rem;
}

.btn-outline {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    background-color: transparent;
    color: #11846b;
    border: 1px solid #11846b;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
    width: auto;
}

.btn-outline:hover {
    background-color: #11846b;
    color: white;
}

.credential-icon {
    color: #11846b;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.credential-content {
    text-align: left;
    flex: 1;
}

.credential-number {
    color: #11846b;
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
}

.plus-sign {
    font-size: 1.25rem;
    vertical-align: super;
    margin-left: 2px;
}

.credential-text {
    color: #64748b;
    font-size: 0.75rem;
    margin-bottom: 0;
    line-height: 1.2;
    font-weight: 400;
}

@media (max-width: 992px) {
    .bold-credentials-container {
        flex-wrap: wrap;
    }
    
    .bold-stat-card {
        min-width: calc(50% - 1.5rem);
        flex: 0 0 calc(50% - 1.5rem);
    }
    
    .bold-about-section {
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .bold-stat-card {
        min-width: 100%;
        flex: 0 0 100%;
        padding: 0.6rem;
    }
    
    .bold-stat-number {
        font-size: 2.5rem;
    }
    
    .bold-about-title {
        font-size: 1.5rem;
    }
    
    .bold-about-text {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .bold-credentials-section {
        padding: 1rem;
    }
    
    .bold-about-section {
        padding: 1rem;
    }
}

/* Professional Difference Section */
.professional-difference {
    margin-top: 2.5rem;
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(22, 83, 212, 0.1);
}

.professional-title {
    color: #1653d4;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.75rem;
}

.professional-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: rgba(22, 83, 212, 0.4);
    border-radius: 1.5px;
}

.professional-text {
    color: #334155;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: center;
}

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

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

/* Future Control Section */
.why-online-will-section {
    padding: 4rem 0;
    background: #f8f9fc;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e5e9f2;
    border-bottom: 1px solid #e5e9f2;
}

.why-online-will-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 83, 212, 0.03), rgba(12, 45, 107, 0.03));
    pointer-events: none;
}

.why-online-will-section .section-title {
    color: #1e293b;
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    max-width: 90%;
}

.why-online-will-section .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #1653d4, rgba(22, 83, 212, 0.5));
    border-radius: 2px;
}

.why-online-will-content {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal columns */
    gap: 2rem; /* Space between cards */
    align-items: stretch; /* Make all cards equal height */
    margin: 2.5rem auto;
    max-width: 1200px;
    padding: 0 1rem; /* Add some padding so cards don't touch viewport edges */
}

.benefit-card {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    text-align: center; /* Center text within children */
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaedf5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover { /* Keep existing hover effect if desired */
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.benefit-doc-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem; /* Space below icon, before title */
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.colored-doc-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures image fits and maintains aspect ratio */
}

/* Specific hue-rotate filters for icons - assuming these are still desired */
.benefit-card-1 .colored-doc-image {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1)) hue-rotate(0deg) saturate(1.2);
}

.benefit-card-2 .colored-doc-image {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1)) hue-rotate(120deg) saturate(1.2);
}

.benefit-card-3 .colored-doc-image {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1)) hue-rotate(270deg) saturate(1.2);
}

.benefit-card h3 {
    margin-top: 0; /* CRITICAL for aligned titles */
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    color: #1e293b;
    font-weight: 600;
    width: 100%; /* Ensures text-align:center works as expected if text wraps */
}

.benefit-card p {
    margin-top: 0;
    margin-bottom: 0; /* Paragraph takes natural height, additional space at bottom of card */
    color: #64748b;
    line-height: 1.5;
    font-size: 1rem;
    width: 100%; /* Ensures text-align:center works as expected if text wraps */
}

/* Adjusted layout for better spacing */
.document-benefits-container {
    gap: 1.75rem;
}

.benefit-card-1 {
    margin-top: 20px;
}

.benefit-card-2 {
    margin-left: 30px;
}

.benefit-card-3 {
    margin-top: 20px;
    margin-left: 15px;
}

@media (max-width: 992px) {
    .container {
        padding: 0 2rem;
    }
    
    .document-benefits-container {
        min-height: auto;
        padding-bottom: 350px;
    }
    
    .document-image-container {
        width: 60%;
        right: 50%;
        transform: translateX(50%);
        top: auto;
        bottom: 0;
    }
    
    .benefit-card {
        width: 100%;
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
    
    .benefit-doc-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Ensure full-width sections have proper padding */
    section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .why-online-will-section {
        padding: 2rem 0;
    }
    
    .why-online-will-section .section-title {
        font-size: 1.5rem;
        max-width: 100%;
    }
    
    .document-benefits-container {
        padding-bottom: 280px;
    }
    
    .document-image-container {
        width: 80%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr; /* Change to a single column on mobile */
        gap: 1.5rem; /* Reduce gap between stacked cards */
    }
    
    .benefit-card {
        padding: 1.25rem;
        width: 100%;
        margin-left: 0 !important; /* Remove any custom margins */
        margin-top: 0 !important;
    }
    
    .benefit-doc-icon {
        width: 40px;
        height: 40px;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
}

/* Review Slider */
.review-slider {
    margin: 2rem auto 1rem;
    position: relative;
    overflow: hidden;
    max-width: 900px;
}

.review-track {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.review-container {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-260px * 5 - 1.5rem * 5));
    }
}

.review-slider:hover .review-container {
    animation-play-state: paused;
}

.review-slider::before,
.review-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.review-slider::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}

.review-slider::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}

.review-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1.25rem;
    width: 260px;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.review-stars {
    display: flex;
    color: #facc15;
    margin-bottom: 0.75rem;
}

.reviewer {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.reviewer-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    margin-right: 0.75rem;
}

/* Info Section */
.info-section {
    padding: 3rem 0;
    background-color: #f8fafc;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-box {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 1rem;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgba(17, 132, 107, 0.3), rgba(17, 132, 107, 0.1));
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.info-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: rgba(17, 132, 107, 0.3);
}

.info-header h2 {
    color: #1e293b;
    font-size: 1.75rem;
    font-weight: 700;
}

.info-icon {
    color: #11846b;
    font-size: 2rem;
    margin-right: 1rem;
}

.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.5);
}

.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.feature-icon {
    color: #11846b;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    background-color: rgba(17, 132, 107, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item.with-image {
    align-items: center;
}

.feature-image-container {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-image-container {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-item:hover .feature-image {
    transform: scale(1.1);
}

.feature-item:hover .feature-image {
    transform: scale(1.1);
}

/* Process Box Styles */
.process-box {
    position: relative;
}

.process-container {
    position: relative;
    padding: 1rem 0;
}

.process-timeline {
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 25px;
    width: 4px;
    background: linear-gradient(to bottom, rgba(17, 132, 107, 0.7), rgba(17, 132, 107, 0.3));
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0 0 10px rgba(17, 132, 107, 0.2);
}

.process-steps {
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.5);
}

.process-step:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #11846b, #0d6d58);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(17, 132, 107, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(17, 132, 107, 0.4);
}

.step-content {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-content {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
    color: #11846b;
    margin-bottom: 0.75rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: rgba(17, 132, 107, 0.3);
}

.step-content p {
    color: #334155;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.step-content p {
    color: #64748b;
}

@media (max-width: 768px) {
    .process-timeline {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-right: 1rem;
    }
}

/* Location Bar Section */
.location-bar-section {
    background-color: #f1f5f9;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.35rem 0;
}

.location-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.location-text {
    font-size: 1.69rem;
    color: #1e293b;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
}

.location-content {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    text-align: center;
}

.location-text strong {
    color: #11846b;
    font-weight: 700;
}

.location-animation {
    display: inline-block;
    font-weight: 600;
    color: #1653d4;
    width: 350px;
    text-align: left;
    position: relative;
    margin-left: 0.5rem;
    transition: opacity 0.5s ease;
}

/* Removed underline */

/* Tablet Styles */
@media (max-width: 992px) {
    .location-bar-section {
        padding: 1.4rem 0;
    }
    
    .location-text {
        font-size: 1.5rem;
    }
    
    .location-animation {
        width: 320px;
    }
}

/* Mobile Landscape Styles */
@media (max-width: 768px) {
    .location-bar-section {
        padding: 1.2rem 0;
    }
    
    .location-text {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: center;
    }
    
    .location-content {
        flex-direction: column;
        align-items: center;
    }
    
    .location-animation {
        margin-left: 0;
        margin-top: 0.25rem;
        width: 280px;
        text-align: center;
    }
}

/* Mobile Portrait Styles */
@media (max-width: 576px) {
    .location-bar-section {
        padding: 1rem 0;
    }
    
    .location-text {
        font-size: 1.1rem;
    }
    
    .location-animation {
        width: 240px;
    }
}

/* Comparison Section */
.comparison {
    padding: 5rem 0;
    background-color: #1653d4;
    background-image: linear-gradient(135deg, #1653d4 0%, #1a45b0 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 25%);
    z-index: 1;
}

.comparison .container {
    position: relative;
    z-index: 2;
}

.comparison-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
}

.comparison .section-title {
    color: #ffffff;
}

/* Credentials Strip */
.credentials-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.credential-badge {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0.75rem;
    border-radius: 2rem;
    background-color: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.credential-badge:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.credential-badge i {
    color: rgba(255, 255, 255, 0.95);
    margin-right: 0.5rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .credentials-strip {
        gap: 1rem;
        padding: 0.75rem;
        justify-content: space-around;
    }
    
    .credential-badge {
        font-size: 0.75rem;
        padding: 0.25rem;
    }
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 1rem;
}

.comparison-card {
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.comparison-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.comparison-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
}

.comparison-card.highlighted {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.comparison-card.highlighted::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
    height: 6px;
}

.comparison-list {
    list-style: none;
    margin-top: 1.5rem;
}

.comparison-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
}

.comparison-item:hover {
    transform: translateX(5px);
    color: rgba(255, 255, 255, 1);
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-icon {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
}

.positive-icon {
    color: #4ade80;
    background-color: rgba(74, 222, 128, 0.15);
}

.negative-icon {
    color: #f87171;
    background-color: rgba(248, 113, 113, 0.15);
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    color: #1e293b;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(17, 132, 107, 0.1);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 3rem;
    background-color: #11846b;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    background: linear-gradient(135deg, rgba(17, 132, 107, 0.05) 0%, rgba(17, 132, 107, 0.1) 100%);
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(17, 132, 107, 0.1);
}

.pricing-title {
    color: #1e293b;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    color: #11846b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 0.25rem;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.amount {
    color: #11846b;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    color: #64748b;
    font-size: 1rem;
    margin-left: 0.5rem;
    align-self: flex-end;
    margin-bottom: 0.75rem;
}

.pricing-content {
    padding: 2.5rem;
}

.pricing-description {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-description p {
    color: #64748b;
    font-size: 1.125rem;
}

.pricing-features-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-features-column {
    flex: 1;
}

.pricing-features {
    list-style: none;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.pricing-feature:hover {
    background-color: rgba(17, 132, 107, 0.05);
}

.pricing-feature-icon {
    color: #11846b;
    margin-right: 0.75rem;
    font-size: 1rem;
    background-color: rgba(17, 132, 107, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    background-color: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.pricing-guarantee i {
    color: #10b981;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.pricing-guarantee p {
    color: #064e3b;
    margin: 0;
    font-size: 0.9375rem;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-alternative {
    text-align: center;
    color: #64748b;
    font-size: 0.9375rem;
}

.text-link {
    color: #11846b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: #0d6d58;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .pricing-features-container {
        flex-direction: column;
        gap: 0;
    }
    
    .pricing-badge {
        right: 50%;
        transform: translateX(50%);
    }
}

/* Additional Options */
.additional-options {
    padding: 3rem 0;
    background-color: #ffffff;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.option-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    height: 100%;
}

.option-card.full-width {
    grid-column: 1 / -1;
}

/* Icon Bullet List Styling for 'Why we do it differently' card */
.option-card .icon-bullet-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem; /* Space from header */
    text-align: left; /* Align text to left within the card */
    width: 100%; /* Ensure list takes full width */
}

.option-card .icon-bullet-list li {
    display: flex;
    align-items: flex-start; /* Align icon with the start of the text block */
    margin-bottom: 1rem;
    font-size: 0.95rem; /* Adjust as needed */
    color: #495057; /* Match existing paragraph color */
    line-height: 1.6;
}

.option-card .icon-bullet-list .bullet-icon {
    font-size: 1.1em; /* Icon size relative to text */
    margin-right: 0.75rem;
    color: #007bff; /* Primary color, or choose another */
    width: 20px; /* Fixed width for alignment */
    text-align: center;
    flex-shrink: 0; /* Prevent icon from shrinking */
    margin-top: 0.2em; /* Align icon slightly better with first line of text */
}

.option-card .icon-bullet-list li span strong {
    color: #1e293b; /* Darker color for the strong part */
    font-weight: 600;
}

/* Mini Pricing Boxes */
.mini-pricing-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mini-pricing-box {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(17, 132, 107, 0.1);
    display: flex;
    align-items: center;
}

.mini-pricing-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mini-pricing-header {
    background: linear-gradient(135deg, rgba(17, 132, 107, 0.05) 0%, rgba(17, 132, 107, 0.1) 100%);
    padding: 1rem;
    text-align: center;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(17, 132, 107, 0.1);
}

.mini-pricing-header h3 {
    color: #1e293b;
    font-size: 1.125rem;
    margin: 0 0 0.5rem 0;
}

.mini-pricing-price {
    color: #11846b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.mini-pricing-content {
    padding: 1rem 1.5rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-pricing-info {
    flex: 1;
}

.mini-pricing-content p {
    color: #64748b;
    font-size: 0.9375rem;
    margin: 0;
}

.mini-feature {
    color: #334155;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

.mini-feature-icon {
    color: #11846b;
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

.mini-btn-container {
    margin-left: 1rem;
}

.mini-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

.btn-secondary {
    background-color: #ffffff;
    color: #11846b;
    border: 1px solid #11846b;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #11846b;
    color: #ffffff;
}

@media (max-width: 768px) {
    .mini-pricing-box {
        flex-direction: column;
        align-items: stretch;
    }
    
    .mini-pricing-header {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(17, 132, 107, 0.1);
        padding: 0.75rem;
    }
    
    .mini-pricing-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mini-btn-container {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    .mini-btn {
        width: 100%;
    }
}

/* FAQ Section */
.faq {
    padding: 3rem 0;
    background-color: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    background-color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '+';
    font-size: 1.25rem;
}

.faq-question.active:after {
    content: '-';
}

.faq-answer {
    padding: 1rem;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    max-height: 500px;
    overflow: hidden;
}

.faq-answer.hidden {
    max-height: 0;
    padding: 0 1rem;
    opacity: 0;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1rem;
    opacity: 1;
}

/* Footer */
footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-logo img {
    height: 3rem;
    filter: brightness(2);
    margin-bottom: 1rem;
}

.footer-links h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #334155;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .credentials-grid,
    .info-grid,
    .comparison-grid,
    .options-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    nav {
        display: none;
    }
    

    
    .btn-header {
        display: none;
    }
}

/* Styling for the 3-step process card */
.option-card.three-step-process {
    text-align: left; /* Override default center align from .option-card if needed */
}

.option-card.three-step-process .info-header {
    /* Ensure header is centered if card text-align is left */
    display: flex; 
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.option-card.three-step-process .info-header h2 {
    text-align: center; /* Explicitly center title if needed */
}

.step-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.step-item {
    display: flex;
    align-items: flex-start; /* Align number icon with top of text content */
    margin-bottom: 1.5rem; /* Space between steps */
    position: relative; /* For pseudo-element connectors if desired */
}

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

.step-number-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #007bff; /* Primary color */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem; /* Size of the number icon */
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 1rem;
    line-height: 1; /* Ensure icon is centered vertically in its circle */
}

.step-content h3 {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Optional: Add connector lines between steps */
/* This would require adjustments to .step-item padding/margins */
/*
.step-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 19px; // Center of the step-number-icon (width/2 - border-width)
    top: 40px; // Bottom of the step-number-icon
    bottom: -1.5rem; // Extends to the margin-bottom of the step-item
    width: 2px;
    background-color: #007bff; // Connector line color
}
*/

/* Coming Soon Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border: 3px dashed #11846b;
    border-radius: 12px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #11846b;
}

.modal-body p {
    font-size: 1.2rem;
    color: #11846b;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}
