/* 
 * Base styles and variables
 * Using light blue and white color scheme with elements from backend style guide
 */
:root {
    --primary-color: #3498db; /* Updated to match style guide */
    --primary-light: #c7e0ff; /* Lighter blue for backgrounds */
    --primary-dark: #2980b9; /* Updated to match style guide */
    --success: #2ecc71; /* From style guide */
    --success-dark: #27ae60; /* From style guide */
    --danger: #e74c3c; /* From style guide */
    --accent-color: #3ed7bd; /* Teal accent */
    --text-primary: #2c3e50; /* From style guide */
    --text-secondary: #7f8c8d; /* From style guide */
    --text-muted: #95a5a6; /* From style guide */
    --background: #f8f9fa; /* From style guide */
    --gray-light: #f5f5f5;
    --gray: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Active navigation link - base styling */
.active-nav {
    font-weight: 700;
    position: relative; /* For the underline indicator */
}

/* Header active navigation - dark blue for visibility against blue background */
header .active-nav {
    color: var(--primary-dark) !important;
    position: relative;
}

/* Header active nav underline */
header .active-nav::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
    opacity: 0.9;
}

/* Footer active navigation - white for contrast against dark footer */
footer .active-nav {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Footer active nav underline */
footer .active-nav::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    opacity: 0.8;
}

/* Main content area with padding for fixed header */
.main-content-area {
    padding-top: 85px;
    padding-bottom: 40px;
}

/* 
 * Policy page styles
 * Consistent styling for all policy pages 
 */
.policy-section {
    padding: 60px 0;
    background-color: var(--background);
}

.policy-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
}

.policy-content {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.policy-section-content {
    margin-bottom: 40px;
}

.policy-section-content:last-child {
    margin-bottom: 0;
}

.policy-section-content h2 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
}

.policy-list {
    list-style-type: none;
    margin-left: 20px;
}

.policy-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 28px;
}

.policy-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.nested-list {
    list-style-type: none;
    margin: 10px 0 10px 25px;
}

.nested-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.nested-list li:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

/* 
 * Reset and global styles
 * Basic reset to ensure consistent display across browsers
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif; /* Updated to match style guide */
}

body {
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--background);
}

/* 
 * Container styles
 * Using standard containers to avoid conflicts with Drupal layouts
 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 
 * Header styles 
 * Clean, modern header with navigation and login button
 */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-container {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    max-height: 46px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.login-button {
    opacity: 0.8;
    color: var(--primary-color);
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.login-button:hover {
    opacity: 1;
    background-color: rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

/* 
 * Hero section styles
 * Feature transparent "windows" overlay effect
 */
.hero {
    background-image: url('../img/1.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
    margin-top: 70px;
}

/* Consumer Hero Section */
.consumer-hero {
    height: 80vh;
    position: relative;
    margin-top: 0;
    /* Using the same animation pattern as other hero sections */
    animation: hero-fade-in 1.2s ease-out;
}

/* 
 * Merchant Hero Section
 * Special hero for the For Merchants page with transparent windows
 */
.merchant-hero {
    background-image: url('../assets/images/for-merchants/hero-merchants-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
    margin-top: 0; /* Different from homepage hero which has margin-top: 70px */
}

.merchant-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(41, 128, 185, 0.75); /* Semi-transparent blue overlay */
    display: flex;
    align-items: center;
    overflow: hidden; /* For the parallax effect */
}

/* Transparent windows for the Merchant page */
.merchant-window {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    opacity: 0; /* Start invisible for animation */
    transform: scale(0.8); /* Start smaller for animation */
    animation: scale-up 1s forwards;
    animation-delay: 0.8s;
}

.merchant-window:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

.merchant-window i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.merchant-window:hover i {
    transform: scale(1.2);
}

.merchant-window-chart {
    width: 120px;
    height: 120px;
    top: 80px;
    left: 80px;
}

.merchant-window-store {
    width: 140px;
    height: 140px;
    bottom: 100px;
    right: 120px;
}

.merchant-window-code {
    width: 110px;
    height: 110px;
    top: 50%;
    right: 200px;
    transform: translateY(-50%) scale(0.8);
}

.merchant-window:hover.merchant-window-code {
    transform: translateY(-50%) scale(1.05);
}

.merchant-hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 650px;
    margin-left: 10%; /* Align with other heroes */
    margin-top: 0; /* Remove downward shift */
    opacity: 0; /* Start invisible for animation */
    transform: translateY(30px); /* Start below for animation */
    animation: fade-slide-up 1s forwards;
    animation-delay: 0.3s;
}

.merchant-hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.merchant-hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    line-height: 1.5;
}

.merchant-hero-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border: none;
    padding: 14px 34px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0; /* Start invisible for animation */
    animation: fade-in 1s forwards;
    animation-delay: 1.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.merchant-hero-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Merchant Benefits Section Styles */
.merchant-benefits-section {
    padding: 80px 0;
    background-color: var(--background);
    position: relative;
}

.merchant-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.merchant-benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.merchant-benefit-card .benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 28px;
}

.merchant-benefit-card .benefit-icon.conversion {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.merchant-benefit-card .benefit-icon.acquisition {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.merchant-benefit-card .benefit-icon.analytics {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.merchant-benefit-card .benefit-icon.integration {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.merchant-benefit-card .benefit-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.merchant-benefit-card .benefit-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 25px;
}

.merchant-benefit-card .benefit-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.merchant-benefit-card .benefit-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.benefit-comparison {
    background-color: var(--gray-light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.comparison-before,
.comparison-after {
    padding: 15px;
}

.comparison-before {
    border-right: 1px solid var(--gray);
}

.comparison-before h4,
.comparison-after h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.comparison-before h4 {
    color: var(--text-secondary);
}

.comparison-after h4 {
    color: var(--primary-dark);
}

.comparison-before p,
.comparison-after p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.benefit-metric {
    background-color: var(--primary-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 16px;
}

.benefit-testimonial {
    background-color: var(--primary-light);
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.testimonial-quote {
    position: relative;
    padding-left: 25px;
}

.testimonial-quote i {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 18px;
}

.testimonial-quote p {
    font-style: italic;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 14px;
}

.analytics-preview {
    background-color: var(--primary-light);
    padding: 20px;
    border-radius: 8px;
}

.dashboard-preview {
    display: flex;
    justify-content: space-around;
}

.dashboard-metric {
    text-align: center;
}

.metric-icon {
    color: var(--primary-dark);
    font-size: 24px;
    margin-bottom: 10px;
}

.metric-data {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.metric-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.code-preview {
    background-color: #2a2f3b;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    overflow: auto;
}

.code-preview pre {
    margin: 0;
}

.code-preview code {
    color: #e6e6e6;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.5;
}

.benefits-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(to right, var(--primary-light), #e6f2ff);
    border-radius: 12px;
}

.benefits-cta p {
    margin-bottom: 25px;
    font-size: 17px;
    color: var(--text-primary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.benefits-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

@media (max-width: 992px) {
    .merchant-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-comparison {
        grid-template-columns: 1fr;
    }
    
    .comparison-before {
        border-right: none;
        border-bottom: 1px solid var(--gray);
        padding-bottom: 15px;
    }
}

/* Value Proposition Section Styles */
.value-prop-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.comparison-header {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-header h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.highlight-text {
    color: var(--teal-accent);
    font-weight: 700;
}

.shopping-comparison {
    margin-bottom: 60px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    padding: 40px;
}

.comparison-table {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 30px;
}

.comparison-column {
    flex: 1;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comparison-column.traditional {
    background-color: #f8f9fa;
    border-top: 4px solid #e74c3c;
}

.comparison-column.foursquare {
    background-color: #f0f9ff;
    border-top: 4px solid var(--teal-accent);
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.vs-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-dark);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-title {
    text-align: center;
    margin-bottom: 25px;
}

.comparison-title i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #999;
}

.comparison-column.traditional .comparison-title i {
    color: #e74c3c;
}

.comparison-column.foursquare .comparison-title i {
    color: var(--teal-accent);
}

.comparison-title h3 {
    font-size: 1.5rem;
    margin-top: 10px;
}

.comparison-list {
    list-style-type: none;
    padding: 0;
}

.comparison-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.comparison-list li i {
    margin-right: 10px;
    margin-top: 3px;
}

.comparison-list .fa-times {
    color: #e74c3c;
}

.comparison-list .fa-check {
    color: var(--success);
}

.compliance-note {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-dark);
    padding: 15px 20px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
}

.compliance-note i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--primary-dark);
}

/* Interactive Benefits Section */
.benefits-interactive {
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.benefits-heading {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.benefits-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.tab-button {
    background: none;
    border: none;
    padding: 12px 20px;
    margin: 0 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--teal-accent);
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: var(--primary-dark);
}

.tab-button.active {
    color: var(--primary-dark);
}

.tab-button.active::after {
    width: 100%;
}

.tab-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-pane.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.tab-image {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-image i {
    font-size: 5rem;
    color: var(--teal-accent);
}

.tab-details {
    flex: 1;
    padding-left: 40px;
}

.tab-details h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.tab-details p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.before-after {
    display: flex;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.before, .after {
    flex: 1;
    padding: 15px;
}

.before {
    background-color: #fff5f5;
    border-right: 1px solid #eee;
}

.after {
    background-color: #f0f9ff;
}

.before h5, .after h5 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.before h5 {
    color: #e74c3c;
}

.after h5 {
    color: var(--teal-accent);
}

.key-features {
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
}

.key-features h5 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.key-features ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.key-features li {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Conclusion Section */
.value-prop-conclusion {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
}

.conclusion-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.conclusion-content p {
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--teal-accent);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.compliance-statement {
    font-size: 0.85rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(52, 152, 219, 0.7); /* Semi-transparent blue to match style guide */
    display: flex;
    align-items: center;
}

.consumer-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(41, 128, 185, 0.5); /* Semi-transparent blue overlay - less opacity */
    display: flex;
    align-items: center;
    overflow: hidden; /* For the parallax effect */
}

/* 
 * Transparent windows effect in the overlay
 * Creates visual interest with "windows" into the background image
 */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 100px;
    width: 150px;
    height: 150px;
    background-color: transparent;
    border: 3px solid white;
    border-radius: 8px;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 70px;
    right: 120px;
    width: 200px;
    height: 120px;
    background-color: transparent;
    border: 3px solid white;
    border-radius: 8px;
}

/* Consumer transparent windows */
.consumer-window {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    opacity: 0; /* Start invisible for animation */
    transform: scale(0.8); /* Start smaller for animation */
    animation: scale-up 1s forwards;
    animation-delay: 0.8s;
}

.consumer-window:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

.consumer-window i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.consumer-window:hover i {
    transform: scale(1.2);
}

.consumer-window-cart {
    width: 120px;
    height: 120px;
    top: 80px;
    left: 80px;
}

.consumer-window-tag {
    width: 140px;
    height: 140px;
    bottom: 100px;
    right: 120px;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 600px;
    margin-left: 10%;
}

.consumer-hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 650px;
    margin-left: 10%;
    opacity: 0; /* Start invisible for animation */
    transform: translateY(30px); /* Start below for animation */
    animation: fade-slide-up 1s forwards;
    animation-delay: 0.3s;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.consumer-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
}

.consumer-hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    max-width: 90%;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.hero-button {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-button:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* 
 * Tabs section styles
 * Tabbed interface for Consumers and Merchants USPs
 */
.tabs-section {
    padding: 80px 0;
    background-color: var(--background);
}

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

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-dark);
    text-align: center;
    position: relative;
    padding-left: 0;
}

/* Adding style guide section title styling */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-button {
    background-color: transparent;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 
 * USP features display
 * Card layout for displaying benefits and features
 */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(145deg, #f9f9f9, #ffffff); /* Updated with style from style guide */
    border-radius: 12px;
    padding: 30px;
    width: 300px;
    text-align: center;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05),
               -5px -5px 15px rgba(255, 255, 255, 0.8); /* Soft shadow from style guide */
    position: relative;
}

/* Adding top border gradient from style guide */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 2px 2px 0 0;
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-description {
    color: var(--text-primary);
    font-size: 16px;
}

/* 
 * How it works section
 * Step-by-step process explanation
 */
.how-it-works {
    padding: 80px 0;
    background-color: white;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    width: 23%;
    text-align: center;
    position: relative;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-weight: 700;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.step-description {
    font-size: 16px;
}

/* 
 * Testimonials section
 * Customer feedback display
 */
.testimonials {
    padding: 80px 0;
    background-color: var(--background);
    background-image: url('../img/4.jpg'); /* Added background image */
    background-size: cover;
    background-position: center;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* White overlay to ensure text readability */
}

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

.testimonial-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    width: 350px;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 4px solid var(--primary-color); /* Added border from style guide */
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-dark);
}

/* 
 * Partners section
 * Logo display of merchant partners
 */
.partners {
    padding: 80px 0;
    background-color: white;
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.partner-logo {
    width: 150px;
    height: 80px;
    background-color: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-logo:hover,
.partner-logo:focus {
    transform: translateY(-6px);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 
 * How It Works Hero Section
 * Special hero for the How It Works page with transparent windows
 */
.hiw-hero {
    background-image: url('../assets/images/how-it-works/hero-how-it-works-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
    margin-top: 0; /* Different from homepage hero which has margin-top: 70px */
}

.hiw-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(41, 128, 185, 0.75); /* Semi-transparent blue overlay */
    display: flex;
    align-items: center;
    overflow: hidden; /* For the parallax effect */
}

/* Transparent windows effect in the overlay */
.hiw-window {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    opacity: 0; /* Start invisible for animation */
    transform: scale(0.8); /* Start smaller for animation */
    animation: scale-up 1s forwards;
    animation-delay: 0.8s;
}

.hiw-window:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

.hiw-window i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.hiw-window:hover i {
    transform: scale(1.2);
}

.hiw-window-play {
    width: 120px;
    height: 120px;
    top: 80px;
    left: 80px;
}

.hiw-window-light {
    width: 140px;
    height: 140px;
    bottom: 100px;
    right: 120px;
}

.hiw-hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 650px;
    margin-left: 10%; /* Align with consumer hero */
    margin-top: 0; /* Remove downward shift */
    opacity: 0; /* Start invisible for animation */
    transform: translateY(30px); /* Start below for animation */
    animation: fade-slide-up 1s forwards;
    animation-delay: 0.3s;
}

.hiw-hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hiw-hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    line-height: 1.5;
}

.hiw-hero-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border: none;
    padding: 14px 34px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0; /* Start invisible for animation */
    animation: fade-in 1s forwards;
    animation-delay: 1.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hiw-hero-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Animations for hero elements */
@keyframes fade-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-up {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 
 * Introduction to 4Square Points Section
 * Clear explanation of what 4Square points are
 */
.intro-points {
    padding: 80px 0;
    background-color: white;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-lead {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.points-features {
    list-style: none;
    margin-top: 30px;
}

.points-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.points-features i {
    width: 30px;
    height: 30px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.points-visual {
    flex: 1;
    min-width: 300px;
}

.comparison-graphic {
    display: flex;
    background-color: var(--background);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.comparison-side {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.comparison-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.comparison-icon.traditional {
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    color: #6c757d;
}

.comparison-icon.foursquare {
    background-color: var(--primary-color);
    color: white;
}

.comparison-icon i {
    font-size: 32px;
}

.comparison-side h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.comparison-side ul {
    list-style: none;
    text-align: left;
}

.comparison-side li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
}

.comparison-side li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-primary);
    padding: 0 15px;
}

.compliance-callout {
    margin-top: 50px;
    background-color: rgba(41, 128, 185, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
}

.compliance-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
}

.compliance-callout p {
    font-weight: 500;
    color: var(--primary-dark);
    margin: 0;
}

/* 
 * Journey Section - Step-by-Step Process
 * Showing the 4Square journey with timeline
 */
.journey-section {
    padding: 80px 0;
    background-color: var(--background);
}

.journey-timeline {
    position: relative;
    margin-top: 60px;
    padding-left: 40px;
}

/* Timeline line */
.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.journey-step {
    position: relative;
    margin-bottom: 60px;
    padding-left: 30px;
}

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

.step-number {
    position: absolute;
    left: -52px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    border: 3px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.step-content {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 25px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    flex-shrink: 0;
}

.step-title {
    flex: 1 0 calc(100% - 95px);
    margin: 0;
    font-size: 24px;
    color: var(--primary-dark);
    padding-top: 5px;
}

.step-description {
    flex: 1 0 100%;
}

.step-description p {
    margin-bottom: 20px;
}

.step-features {
    list-style: none;
    margin-bottom: 20px;
}

.step-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.step-features i {
    color: var(--primary-color);
    margin-right: 10px;
    flex-shrink: 0;
}

.step-compliance-note, .step-bonus-note {
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.step-compliance-note {
    background-color: rgba(41, 128, 185, 0.1);
    color: var(--primary-dark);
    border-left: 3px solid var(--primary-color);
}

.step-bonus-note {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--success-dark);
    border-left: 3px solid var(--success);
}

.step-compliance-note i, .step-bonus-note i {
    margin-right: 10px;
    font-size: 18px;
}

.journey-conclusion {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.conclusion-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.journey-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.journey-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 
 * Benefits Section
 * Showcasing the advantages of 4Square points
 */
.benefits-section {
    padding: 80px 0;
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: var(--background);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 2px 2px 0 0;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 28px;
    color: white;
}

.benefit-icon.security {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.benefit-icon.convenience {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.benefit-icon.efficiency {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.benefit-icon.rewards {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.benefit-title {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.benefit-features {
    list-style: none;
    margin-bottom: 25px;
}

.benefit-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.benefit-features li:before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.benefit-comparison {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-before, .comparison-after {
    flex: 1;
    padding: 15px;
}

.comparison-before {
    background-color: rgba(0, 0, 0, 0.05);
}

.comparison-after {
    background-color: rgba(52, 152, 219, 0.1);
}

.comparison-before h4, .comparison-after h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.comparison-after h4 {
    color: var(--primary-dark);
}

.benefit-compliance-note {
    padding: 12px 15px;
    border-radius: 6px;
    background-color: rgba(41, 128, 185, 0.1);
    color: var(--primary-dark);
    border-left: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.benefit-compliance-note i {
    margin-right: 10px;
    font-size: 18px;
}

.benefit-testimonial {
    margin-top: 20px;
}

.testimonial-quote {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.testimonial-quote i {
    color: var(--primary-light);
    font-size: 24px;
    margin-right: 10px;
}

.testimonial-quote p {
    display: inline;
    font-style: italic;
}

.testimonial-author {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-weight: 600;
    color: var(--text-secondary);
}

.savings-calculator {
    margin-top: 20px;
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.savings-calculator h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.calculator-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.calculator-button:hover {
    background-color: var(--primary-dark);
}

.benefits-conclusion {
    text-align: center;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-conclusion p {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.benefits-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.benefits-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Make benefits grid responsive */
@media screen and (max-width: 1100px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* 
 * CTA section
 * Call to action before footer
 */
.cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    background-image: url('../img/3.jpg'); /* Added background image */
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(52, 152, 219, 0.85); /* Semi-transparent overlay */
}

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

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* 
 * Footer styles with contact form
 * Contact form is included in the footer
 */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-left: 15px;
}

/* Adding left border styling from style guide */
.footer-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(to bottom, var(--primary-color), white);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background-color: white;
    color: var(--primary-dark);
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background-color: var(--primary-light);
}

.footer-bottom {
    margin-top: 60px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 
 * Responsive styles
 * Ensures good display across different device sizes
 */
@media (max-width: 992px) {
    .step {
        width: 48%;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .hero-content {
        margin-left: 5%;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .feature-card {
        width: 100%;
        max-width: 400px;
    }
    
    .step {
        width: 100%;
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 0;
    border: none;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    background-color: var(--primary-light);
    position: relative;
    flex-direction: column;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.modal-logo {
    width: 100px;
    margin-bottom: 15px;
}

.modal-header h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: var(--primary-dark);
}

.modal-header p {
    margin: 8px 0 0 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--text-secondary);
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
}

.close:hover,
.close:focus {
    color: var(--primary-dark);
    background-color: rgba(255,255,255,0.8);
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
}

.form-input {
    position: relative;
}

.form-input i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="text"] {
    width: 100%;
    padding: 12px 12px 12px 36px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    background-color: #fff;
    outline: none;
}

.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #f9f9f9;
}

.form-check {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.form-check input[type="checkbox"] {
    margin-right: 10px;
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
}

.form-check label {
    font-size: 14px;
    color: var(--text-secondary);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.login-footer {
    margin-top: 25px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.login-footer p {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #f5f5f5;
    color: var(--text-primary);
    transition: all 0.3s;
    cursor: pointer;
}

.social-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.or-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.or-divider::before,
.or-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.or-divider span {
    padding: 0 15px;
    color: var(--text-muted);
    font-size: 14px;
}

.social-login button i {
    margin-right: 5px;
}

/* Click Hint Indicator */
.click-hint {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.click-hint:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.click-hint i {
    font-size: 1.2rem;
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

/* About Us Page Styles */
.about-hero {
    background-image: url('../img/about-us/hero-about-us-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
    margin-top: 70px;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(41, 128, 185, 0.75); /* Semi-transparent blue overlay */
    display: flex;
    align-items: center;
    overflow: hidden; /* For the parallax effect */
}

/* Transparent windows for the About Us page */
.about-window {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    opacity: 0; /* Start invisible for animation */
    transform: scale(0.8); /* Start smaller for animation */
    animation: scale-up 1s forwards;
    animation-delay: 0.8s;
}

.about-window:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

.about-window i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.about-window:hover i {
    transform: scale(1.2);
}

.about-window-info {
    width: 120px;
    height: 120px;
    top: 80px;
    left: 80px;
}

.about-window-star {
    width: 140px;
    height: 140px;
    bottom: 100px;
    right: 120px;
}

.about-hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 650px;
    margin-left: 10%;
    margin-top: 0;
    opacity: 0; /* Start invisible for animation */
    transform: translateY(30px); /* Start below for animation */
    animation: fade-slide-up 1s forwards;
    animation-delay: 0.3s;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fade-slide-up 1s forwards;
    animation-delay: 0.5s;
}

.about-hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fade-slide-up 1s forwards;
    animation-delay: 0.7s;
}

.about-hero-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fade-slide-up 1s forwards;
    animation-delay: 0.9s;
}

.about-hero-button:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced Mission Section Styles */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(120deg, #F0F4FF 0%, #E3EDFF 50%, #DAE8FF 100%);
    position: relative;
    overflow: hidden;
}

/* Background shapes removed as they conflict with style patterns */

.mission-section .container {
    position: relative;
    z-index: 1;
}

.mission-section .section-subtitle {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
    color: var(--text-secondary);
    font-size: 18px;
}

/* Mission Tabs */
.mission-tabs {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 40px;
}

.mission-tab-buttons {
    display: flex;
    border-bottom: 1px solid var(--gray);
}

.mission-tab {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    transition: width 0.3s ease;
}

.mission-tab:hover {
    color: var(--primary-color);
}

.mission-tab.active {
    color: var(--primary-dark);
}

.mission-tab.active::before {
    width: 100%;
}

.mission-tab-content {
    display: none;
    padding: 40px 30px;
}

.mission-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mission Content */
.mission-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.mission-text {
    flex: 1;
    min-width: 300px;
}

.mission-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.mission-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
}

.mission-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-primary);
}

.mission-highlights {
    list-style: none;
    margin: 25px 0;
}

.mission-highlights li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.mission-highlights li:last-child {
    border-bottom: none;
}

.mission-highlights i {
    width: 30px;
    height: 30px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.mission-highlights span strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.mission-cta {
    margin-top: 30px;
}

.mission-cta .btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.mission-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.mission-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Consumer Experience Showcase */
.experience-showcase {
    width: 100%;
    max-width: 380px;
}

.experience-device {
    background-color: #333;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.experience-screen {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    min-height: 300px;
}

.experience-content {
    padding: 15px;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 15px;
}

.mini-logo {
    height: 30px;
    width: auto;
}

.points-balance {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.checkout-preview {
    background-color: var(--gray-light);
    border-radius: 10px;
    padding: 15px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.item-name {
    font-weight: 500;
}

.item-points {
    color: var(--primary-dark);
    font-weight: 600;
}

.checkout-action {
    text-align: center;
}

.one-click {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.one-click:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
}

.experience-caption {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    font-size: 14px;
}

/* Merchant Dashboard */
.merchant-dashboard {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 380px;
}

.dashboard-header {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h4 {
    margin: 0;
    font-size: 18px;
}

.dashboard-period {
    font-size: 14px;
    opacity: 0.8;
}

.dashboard-metrics {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.dashboard-growth {
    padding: 0 20px 20px;
}

.growth-chart {
    height: 100px;
    background: linear-gradient(to bottom right, rgba(52, 152, 219, 0.2), rgba(46, 204, 113, 0.2));
    border-radius: 10px;
    position: relative;
}

.growth-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%233498db' fill-opacity='0.3' d='M0,160L48,176C96,192,192,224,288,218.7C384,213,480,171,576,165.3C672,160,768,192,864,197.3C960,203,1056,181,1152,181.3C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

/* Innovation Showcase */
.innovation-showcase {
    width: 100%;
    max-width: 380px;
}

.innovation-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.flow-step {
    text-align: center;
}

.flow-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.flow-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.flow-arrow {
    color: var(--primary-color);
    font-size: 24px;
}

.innovation-highlight {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 18px;
}

.highlight-text {
    font-weight: 600;
    font-size: 18px;
    flex: 1;
}

.mission-statement {
    font-style: italic;
    font-weight: 500;
    color: var(--primary-dark);
    padding: 15px 20px;
    border-left: 3px solid var(--primary-color);
    background-color: var(--primary-light);
    border-radius: 0 10px 10px 0;
}

/* Our Story Section Styles */
.our-story-section {
    padding: 80px 0;
    background-color: white;
}

.our-story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-lead {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.story-text p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.story-visual {
    flex: 1;
    min-width: 300px;
}

.story-graphic {
    background-color: var(--background);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-graphic:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.loyalty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.story-features {
    list-style: none;
    margin-top: 25px;
    text-align: left;
}

.story-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.story-features i {
    color: var(--success);
    margin-right: 10px;
}

.consumer-hero-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0; /* Start invisible for animation */
    animation: fade-in 1s forwards;
    animation-delay: 1.2s;
}

.consumer-hero-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.consumer-hero-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes text-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes window-fade-in-scale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes icon-fade-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Main content area padding for fixed header */
.main-content-area {
    padding-top: 85px; /* Header height is approx 70px, this adds some space */
    padding-bottom: 40px; /* General bottom padding for content sections */
}

/* Active navigation link style */
.active-nav {
    color: var(--primary-dark); /* Darker blue from variables */
    font-weight: 700; /* Bolder text */
}

/* Transparent Policies Section */
.policies-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.policy-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.policy-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3f87f5, #2b68c9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.policy-icon i {
    font-size: 28px;
    color: #fff;
}

.policy-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2a3b4c;
}

.policy-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #616d7c;
}

.policy-statement {
    background-color: #f0f7ff;
    border-left: 4px solid #3f87f5;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.policy-details {
    margin-top: 20px;
}

.policy-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2a3b4c;
}

.refund-process {
    margin: 25px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #3f87f5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2a3b4c;
}

.security-features {
    margin: 25px 0;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.security-feature i {
    font-size: 22px;
    color: #3f87f5;
    margin-right: 15px;
    margin-top: 3px;
}

.security-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2a3b4c;
}

.policy-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    background-color: #f0f7ff;
    padding: 8px 15px;
    border-radius: 50px;
}

.trust-badge i {
    color: #3f87f5;
    margin-right: 8px;
}

.trust-badge span {
    font-weight: 600;
    font-size: 14px;
    color: #2a3b4c;
}

.policy-links {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.policy-link {
    display: flex;
    align-items: center;
    color: #3f87f5;
    font-weight: 600;
    margin-top: 10px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.policy-link:hover {
    color: #2b68c9;
    text-decoration: underline;
}

.policy-link i {
    margin-right: 8px;
}

/* Merchant-specific policy styling */
.merchant-policies-section {
    background: linear-gradient(135deg, #f8f9fd 0%, #f0f4fc 100%);
    border-top: 1px solid #e6edf9;
    padding: 80px 0;
}

.merchant-policies-section .policy-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.merchant-policies-section .policy-feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.merchant-policies-section .policy-feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.merchant-policies-section .policy-feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px;
}

/* Relationship steps styling */
.relationship-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.relationship-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    width: 30%;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-icon i {
    font-size: 28px;
    color: var(--primary-dark);
}

.step-content h4 {
    margin: 0 0 10px 0;
    font-weight: 600;
    color: var(--text-primary);
}

.step-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow i {
    font-size: 24px;
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .relationship-steps {
        flex-direction: column;
    }
    
    .relationship-step {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }
}

/* Transparent Policy Overview styling */
.wide-policy-card {
    grid-column: 1 / -1;
    margin-top: 40px;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.mini-policy-card {
    background-color: #f9fbff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mini-policy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.mini-policy-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mini-policy-icon i {
    font-size: 18px;
    color: var(--primary-color);
}

.mini-policy-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.mini-policy-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.merchant-compliance-statement {
    margin: 30px 0;
    background-color: #f0f7ff;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    font-size: 16px;
}

.merchant-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.policies-conclusion {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.policies-conclusion p {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
    
    .merchant-policy-links {
        flex-direction: column;
    }
}

.policies-footer {
    margin-top: 50px;
    text-align: center;
    padding: 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.compliance-statement {
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
    color: #616d7c;
}

.policies-cta {
    display: inline-block;
    background: linear-gradient(135deg, #3f87f5, #2b68c9);
    color: #fff;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policies-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(43, 104, 201, 0.3);
}

/* Responsive adjustments for policies section */
@media (max-width: 992px) {
    .policies-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .policies-section {
        padding: 60px 0;
    }
    
    .policy-card {
        padding: 25px;
    }
    
    .policy-icon {
        width: 60px;
        height: 60px;
    }
    
    .policy-icon i {
        font-size: 24px;
    }
    
    .policy-title {
        font-size: 22px;
    }
    
    .policies-footer {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .policies-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-trust {
        justify-content: center;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #616d7c;
    margin-top: 10px;
    margin-bottom: 40px;
}

.faq-search {
    max-width: 600px;
    margin: 0 auto 50px;
}

.search-container {
    position: relative;
}

.search-container i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa5b5;
    font-size: 18px;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border-radius: 50px;
    border: 1px solid #e0e5ee;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #3f87f5;
    box-shadow: 0 4px 15px rgba(63, 135, 245, 0.15);
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.faq-category {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.category-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.category-header:hover {
    background-color: #f0f4f8;
}

.category-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg, #3f87f5, #2b68c9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.category-icon i {
    color: #fff;
    font-size: 20px;
}

.category-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #2a3b4c;
    flex-grow: 1;
}

.toggle-btn {
    background: none;
    border: none;
    color: #9aa5b5;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    color: #3f87f5;
}

.category-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-category.active .category-content {
    padding: 25px;
    max-height: 1500px; /* Adjust as needed */
}

.faq-category.active .category-header .toggle-btn i {
    transform: rotate(180deg);
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
}

.faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #2a3b4c;
}

.faq-answer {
    margin-top: 15px;
    display: none;
    color: #616d7c;
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-item.active .faq-question h4 {
    color: #3f87f5;
}

.faq-item.active .faq-question .toggle-btn i {
    transform: rotate(45deg);
    color: #3f87f5;
}

.faq-item.active .faq-answer {
    display: block;
}

.related-questions {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.related-questions h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2a3b4c;
    margin-bottom: 20px;
    text-align: center;
}

.related-questions-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.related-question {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    color: #3f87f5;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.related-question:hover {
    background-color: #3f87f5;
    color: #fff;
    box-shadow: 0 6px 15px rgba(63, 135, 245, 0.2);
}

.contact-support {
    text-align: center;
    margin-top: 30px;
}

.contact-support p {
    font-size: 16px;
    color: #616d7c;
    margin-bottom: 15px;
}

.support-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: #fff;
    border: 2px solid #3f87f5;
    color: #3f87f5;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.support-link:hover {
    background-color: #3f87f5;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(63, 135, 245, 0.15);
}

/* Get Started Section */
.get-started-section {
    padding: 80px 0;
    background: var(--background-light);
    position: relative;
    border-top: 1px solid rgba(230, 235, 245, 0.5);
}

.get-started-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, rgba(63, 135, 245, 0.05), transparent);
    z-index: 0;
}

.get-started-section .container {
    position: relative;
    z-index: 1;
}

.benefits-recap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.recap-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.recap-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3f87f5, #2b68c9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.recap-icon i {
    font-size: 28px;
    color: #fff;
}

.recap-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2a3b4c;
    margin-bottom: 15px;
}

.recap-item p {
    color: #616d7c;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.primary-cta {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #3f87f5, #2b68c9);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(43, 104, 201, 0.2);
    transition: all 0.3s ease;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(43, 104, 201, 0.3);
}

.secondary-cta {
    display: inline-block;
    padding: 15px 30px;
    background-color: #fff;
    border: 2px solid #3f87f5;
    color: #3f87f5;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background-color: #f0f7ff;
    transform: translateY(-3px);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.trust-badge i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 16px;
}

.trust-badge span {
    font-weight: 600;
    font-size: 14px;
    color: #2a3b4c;
}

.merchant-logos {
    text-align: center;
    margin-bottom: 40px;
}

.merchant-logos h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2a3b4c;
    margin-bottom: 20px;
}

.logos-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.logo-placeholder {
    width: 150px;
    height: 60px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #9aa5b5;
    font-weight: 600;
}

.merchant-partnership {
    text-align: center;
    margin-bottom: 40px;
}

/* 
 * Get Started Section with Point Packages
 * Styled to match the 4Square design language
 */
.get-started-section {
    padding: 80px 0;
    background: linear-gradient(120deg, #F9FBFF 0%, #F0F7FF 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Point Packages Preview */
.point-packages-preview {
    margin-top: 50px;
    text-align: center;
}

.preview-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.packages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    max-width: 1100px;
}

.package-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    width: 320px;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
    /* Starting position for animation */
    opacity: 0.8;
    transform: translateY(20px);
}

/* Animation for cards when they come into view */
.package-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

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

.package-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.package-header {
    margin-bottom: 20px;
}

.package-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.package-points {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.package-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.package-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.5;
}

.package-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }
    50% {
        box-shadow: 0 5px 20px rgba(52, 152, 219, 0.5);
    }
    100% {
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }
}

.custom-amount-link {
    margin-top: 25px;
}

.custom-amount-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.custom-amount-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.primary-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.primary-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.secondary-cta {
    display: inline-block;
    background-color: white;
    color: var(--primary-dark);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.secondary-cta:hover {
    background-color: rgba(52, 152, 219, 0.1);
    transform: translateY(-5px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.merchant-preview {
    margin-top: 60px;
    text-align: center;
}

.merchant-preview h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.merchant-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.merchant-logo {
    background-color: white;
    padding: 15px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Compliance Footer */
.compliance-footer {
    margin-top: 60px;
    background-color: rgba(52, 152, 219, 0.1);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.compliance-footer p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.compliance-footer strong {
    color: var(--primary-dark);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .packages-container {
        gap: 20px;
    }
    
    .package-card {
        width: 100%;
        max-width: 320px;
    }
    
    .package-card.popular {
        transform: scale(1);
    }
    
    .package-card.popular:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .primary-cta, .secondary-cta {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
}

.compliance-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f0f7ff;
    border: 1px solid rgba(63, 135, 245, 0.2);
    border-radius: 10px;
    color: #616d7c;
    font-size: 14px;
}

.compliance-note strong {
    color: #2a3b4c;
}

/* Responsive adjustments for FAQ and Get Started sections */
@media (max-width: 992px) {
    .benefits-recap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-section,
    .get-started-section {
        padding: 60px 0;
    }
    
    .category-header {
        padding: 15px 20px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .category-icon i {
        font-size: 18px;
    }
    
    .category-header h3 {
        font-size: 18px;
    }
    
    .faq-question h4 {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-cta,
    .secondary-cta {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .benefits-recap {
        grid-template-columns: 1fr;
    }
    
    .related-questions-list {
        flex-direction: column;
        align-items: center;
    }
    
    .related-question {
        width: 100%;
        text-align: center;
    }
}

/* Merchant Get Started Section Styles */
.merchant-get-started {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fd 0%, #f0f4fc 100%);
    border-top: 1px solid #e6edf9;
}

/* Application Process Styles */
.process-title, .options-title, .contact-title {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: var(--primary-dark);
    font-weight: 600;
}

.process-title i, .options-title i, .contact-title i {
    margin-right: 15px;
    font-size: 24px;
    color: var(--primary-color);
    background-color: rgba(52, 152, 219, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.process-step {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.process-step-content {
    /* No card-like styling, just basic text content styling */
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.process-step-content h4 {
    margin-top: 10px;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-weight: 600;
}

.process-step-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Partnership Options Styles */
.partnership-options {
    margin: 60px 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.option-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.option-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.option-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 30px;
    transform: rotate(45deg);
    z-index: 1;
}

.option-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.option-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.option-card.featured .option-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.option-card.featured .option-icon i {
    color: white;
}

.option-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.option-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    color: var(--text-secondary);
}

.option-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px;
}

.option-cta {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background-color: #f0f4fc;
    color: var(--primary-dark);
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.option-cta:hover {
    background-color: #e1e9f8;
    transform: translateY(-2px);
}

.featured-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.featured-cta:hover {
    background: linear-gradient(135deg, #2b8bc9, #216fa0);
    color: white;
}

/* Contact Information Styles */
.contact-information {
    margin: 60px 0;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    color: var(--primary-color);
}

.contact-method i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
}

/* Compliance Footer Styles */
.compliance-footer {
    margin-top: 60px;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.compliance-statement {
    text-align: center;
    margin-bottom: 30px;
}

.compliance-statement p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 15px;
}

.compliance-disclaimer {
    background-color: rgba(52, 152, 219, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    text-align: left;
    margin-bottom: 20px !important;
}

.reimbursement-note {
    font-style: italic;
    font-size: 14px !important;
    opacity: 0.9;
}

.compliance-intro {
    color: var(--text-secondary);
    margin: 5px 0 20px;
    font-size: 16px;
    max-width: 800px;
}

.compliance-statement strong {
    color: var(--primary-dark);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-badge i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge span {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-dark);
}

/* Responsive Adjustments for Merchant Get Started Section */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .option-card.featured {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .option-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* Guarantee Section Styles */
.guarantee-section {
    padding: 80px 0;
    background-color: #f9fbff;
}

.guarantee-content {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 30px;
}

.guarantee-icon {
    flex: 0 0 120px;
    height: 120px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
}

.guarantee-icon i {
    font-size: 50px;
    color: white;
}

.guarantee-box {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-left: 5px solid #3498db;
    position: relative;
    overflow: hidden;
}

.guarantee-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    background-color: #e1f0fa;
    padding: 8px 15px;
    border-radius: 50px;
    color: #3498db;
    font-weight: 600;
}

.guarantee-badge i {
    margin-right: 8px;
    font-size: 16px;
}

.guarantee-body p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
    position: relative;
    z-index: 1;
}

.guarantee-trust-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 15px;
    transition: all 0.3s ease;
}

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

.trust-item i {
    font-size: 24px;
    color: #3498db;
    margin-bottom: 10px;
}

.trust-item span {
    font-weight: 600;
    color: #333;
    text-align: center;
}

.contact-info {
    text-align: center;
    margin-top: 40px;
}

.support-link {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.support-link:hover {
    color: #2980b9;
    text-decoration: none;
}

.support-link i {
    margin-right: 8px;
}

/* Policy page styles */
.policy-section {
    padding: 50px 0;
    background-color: var(--background);
}

.policy-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.policy-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 3px;
}

.policy-content {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.policy-section-item {
    margin-bottom: 30px;
}

.policy-section-item h2 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray);
}

.policy-section-item p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-section-item ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-section-item li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.policy-section-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.policy-section-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 25px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-section-item h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-item {
        padding: 10px 0;
    }
}
