html {
    scroll-behavior: smooth;
}

/* Basic Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9; /* Light background for the body */
    font-size: 16px; /* Explicit base font size */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px; /* Reverted change */
}

/* Header & Navigation */
header {
    background-color: #fff; /* White background for header */
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50; /* Darker color for logo */
    text-decoration: none;
}

header .logo img {
    height: 40px; /* Adjust as needed */
    width: auto;
    display: block; /* Prevents extra space below if the <a> is inline */
    vertical-align: middle; /* Helps align with other inline-block elements if any */
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

header nav ul li a:hover {
    color: #007bff; /* Primary color for hover */
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #007bff; /* Example primary color - blue */
    color: #fff;
    border: 1px solid #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-outline {
    background-color: transparent;
    color: #007bff;
    border: 1px solid #007bff;
}

.btn-outline:hover {
    background-color: #007bff;
    color: #fff;
}

/* Hero Section */
.hero-section {
    background-color: #ffffff !important; /* Light grey for hero background */
    color: #2c3e50; /* Darker text for contrast */
    padding: 5rem 0; /* Increased padding */
    text-align: center;
    position: relative; /* For positioning the image */
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-section .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Section General Styling */
section {
    padding: 4rem 0; /* Increased padding */
}

section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Trusted By Section */
.trusted-by-section {
    background-color: #fff;
    padding: 4rem 0;
}

.future-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.partner-type {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.partner-type h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.pilot-program {
    margin-top: 4rem;
    padding: 2rem;
    background-color: rgba(0, 123, 255, 0.05);
    border: 1px dashed #007bff;
    border-radius: 8px;
    text-align: center;
}

.pilot-program h3 {
    color: #007bff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pilot-program p {
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
}

.pilot-program .btn {
    margin-top: 1rem;
}

/* Features Section */
.features-section {
    background-color: #f9f9f9; 
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center; /* Or left, depending on icon placement */
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #007bff;
}

.feature-item p {
    max-width: 75ch;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Icons */
.feature-icon {
    margin-bottom: 1.5rem;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    position: relative;
}

.feature-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

/* Benefits Section */
.benefits-section {
    background-color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    padding: 2rem;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: #007bff;
    margin-bottom: 1rem;
    position: relative;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.highlight-benefit {
    border: 2px solid #007bff;
    background-color: rgba(0, 123, 255, 0.05);
    position: relative;
    z-index: 1;
}

.benefits-cta {
    margin-top: 2rem;
}

.benefits-cta .btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* Benefit Icons */
.benefit-icon {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 1rem;
    display: inline-block;
}

.highlight-benefit .benefit-icon {
    color: #0056b3;
}

/* For smaller screens */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* How It Works Section */
.how-it-works-section {
    background-color: #e9ecef;
}

.how-it-works-section ol {
    list-style: none; /* Remove default numbering if using custom */
    counter-reset: step-counter;
    max-width: 600px;
    margin: 2rem auto 0 auto;
}

.how-it-works-section ol li {
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

/* Placeholder for custom step numbering if desired */
/* .how-it-works-section ol li::before { 
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #007bff;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
} */

/* How It Works Steps */
.steps-list {
    counter-reset: steps;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0;
}

.steps-list li {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    background-color: #007bff;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 1.5rem;
    position: relative;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content i {
    color: #007bff;
    margin-right: 0.5rem;
}

/* For connecting the steps with a line */
.steps-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 20px;
    width: 2px;
    height: calc(100% - 20px);
    background-color: rgba(0, 123, 255, 0.2);
}

@media (max-width: 768px) {
    .steps-list li {
        flex-direction: column;
        align-items: center; /* Center items when stacked */
        text-align: center;
    }
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .steps-list li:not(:last-child)::after {
        display: none; /* Hide connector lines on mobile stack */
    }
}

/* CTA Section */
.cta-section {
    background-color: #007bff;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-section .form-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-section form input[type="email"] {
    padding: 0.75rem;
    border-radius: 5px 0 0 5px;
    border: 1px solid #ccc;
    min-width: 250px;
}

.cta-section form button[type="submit"] {
    border-radius: 0 5px 5px 0;
    border-left: none;
}

/* Footer */
footer {
    background-color: #2c3e50; /* Dark background for footer */
    color: #ccc;
    padding: 3rem 0 1rem 0;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-links ul li a {
    text-decoration: none;
    color: #ccc;
}

.footer-links ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-links .social-footer li a {
    display: inline-flex; /* Changed from flex to inline-flex */
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.footer-links .social-footer li a i {
    font-size: 1.2rem; /* Adjust icon size if needed */
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

/* Basic Responsive (Mobile Menu would need JS) */
@media (max-width: 768px) {
    header nav ul {
        display: none; /* Hide desktop nav, show mobile menu button (needs JS) */
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .feature-grid {
        grid-template-columns: 1fr; /* Stack features on smaller screens */
    }
}

/* Form Messages */
.form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
}

.form-success {
    background-color: rgba(40, 167, 69, 0.15);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-error {
    background-color: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 25px;
    background-color: #333;
    margin: 5px 0;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Enhanced Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    header nav {
        padding: 1rem 0;
    }
    
    header nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    header nav ul.active {
        display: flex;
    }
    
    header nav ul li {
        margin: 1rem 0;
    }
    
    header nav ul li a {
        font-size: 1.2rem;
    }
    
    header .btn-outline {
        margin-right: 3rem;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .feature-grid, 
    .benefits-grid {
        grid-template-columns: 1fr;
    }
} 

/* Partner Icons */
.partner-icon {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

/* Additional Styles for Features Page */
.page-hero {
    background-color: #e9ecef;
    color: #2c3e50;
    padding: 4rem 0; /* Consistent with other sections */
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Detail Sections */
.feature-detail-section {
    padding: 5rem 0;
}

.feature-detail-section.alt-bg {
    background-color: #f4f8fd;
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-detail.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.feature-detail.reverse .feature-content {
    direction: ltr;
}

.feature-detail.reverse .feature-image-placeholder {
    direction: ltr;
}

.feature-content h2 {
    text-align: left;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.feature-tagline {
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.feature-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 75ch;
}

.feature-icon.large {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1.5rem;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem 0;
    position: relative;
}

.feature-icon.large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

/* Feature Benefits List */
.feature-benefits {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-benefits ul {
    list-style: none;
    padding: 0;
}

.feature-benefits ul li {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.feature-benefits ul li:last-child {
    margin-bottom: 0;
}

.feature-benefits ul li i {
    color: #28a745;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-benefits ul li strong {
    color: #2c3e50;
}

/* Image Placeholders for Feature Images */
.feature-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #e9ecef;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #6c757d;
    border: 2px dashed #ced4da;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #adb5bd;
}

.image-placeholder p {
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .feature-detail, 
    .feature-detail.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
    
    .feature-content {
        order: 1;
    }
    
    .feature-image-placeholder {
        order: 2;
    }
    
    .feature-content h2 {
        text-align: center;
    }
    
    .feature-icon.large {
        margin: 0 auto 1.5rem auto;
    }
    
    .feature-tagline {
        text-align: center;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .feature-detail-section {
        padding: 2rem 0;
    }
}

/* Solutions Page Styles */
.solutions-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.solution-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    margin-bottom: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.solution-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-icon i {
    font-size: 2.5rem;
    color: #007bff;
}

.solution-card h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: left;
}

.solution-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 75ch;
}

.solution-challenges, 
.solution-benefits {
    margin-bottom: 2rem;
}

.solution-challenges h3, 
.solution-benefits h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.solution-challenges h3::after, 
.solution-benefits h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #007bff;
}

.solution-challenges ul, 
.solution-benefits ul {
    list-style: none;
    padding: 0;
}

.solution-challenges ul li, 
.solution-benefits ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.solution-challenges ul li i, 
.solution-benefits ul li i {
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.solution-challenges ul li i {
    color: #dc3545;
}

.solution-benefits ul li i {
    color: #28a745;
}

.solution-testimonial {
    background-color: #f4f8fd;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
}

.solution-testimonial blockquote {
    font-style: italic;
    color: #555;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.solution-testimonial blockquote::before {
    content: '"';
    font-size: 3rem;
    color: rgba(0, 123, 255, 0.2);
    position: absolute;
    left: -5px;
    top: -20px;
}

.solution-testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
    text-align: right;
}

/* Comparison Table Styles */
.comparison-section {
    padding: 5rem 0;
    background-color: #fff;
}

.comparison-table {
    margin-top: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.comparison-header .comparison-cell {
    background-color: #2c3e50;
    color: #fff;
    font-weight: 600;
    padding: 1.2rem;
    text-align: center;
}

.comparison-header .comparison-cell:first-child {
    background-color: transparent;
}

.comparison-header .comparison-cell.traditional {
    background-color: #6c757d;
}

.comparison-header .comparison-cell.autoprop {
    background-color: #007bff;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

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

.comparison-row .comparison-cell {
    padding: 1.2rem;
    align-self: center;
}

.comparison-row .comparison-cell.feature {
    font-weight: 600;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.comparison-row .comparison-cell.traditional {
    color: #555;
}

.comparison-row .comparison-cell.autoprop {
    color: #2c3e50;
    background-color: rgba(0, 123, 255, 0.05);
}

/* Responsive Adjustments for Solutions Page */
@media (max-width: 768px) {
    .comparison-header,
    .comparison-row {
        display: flex;
        flex-direction: column;
    }
    
    .comparison-header .comparison-cell:first-child {
        display: none;
    }
    
    .comparison-row .comparison-cell.feature {
        font-weight: bold;
        background-color: #f0f0f0;
        padding: 0.75rem;
        border-bottom: 1px solid #ddd;
        text-align: center;
    }
    .comparison-row .comparison-cell.traditional,
    .comparison-row .comparison-cell.autoprop {
        padding: 0.75rem;
        border-bottom: 1px solid #eee;
        text-align: center;
    }
    .comparison-row .comparison-cell.traditional::before,
    .comparison-row .comparison-cell.autoprop::before {
        display: block;
        font-weight: bold;
        margin-bottom: 0.25rem;
        color: #333;
    }
    .comparison-row .comparison-cell.traditional::before {
        content: "Traditional Approach:";
    }
    .comparison-row .comparison-cell.autoprop::before {
        content: "With autoprop.ai:";
    }
    .comparison-header .comparison-cell {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    .solution-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    .solution-card:last-child {
        margin-bottom: 0;
    }
    .solution-card h2 {
        font-size: 1.4rem;
    }
    .solution-challenges h3, .solution-benefits h3 {
        font-size: 1.1rem;
    }
} 

/* Pricing Page Styles */
.pricing-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.pricing-toggle-label {
    font-size: 1.1rem;
    color: #555;
    margin: 0 0.5rem;
}

.pricing-discount {
    background-color: #28a745;
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 1rem;
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #007bff;
}

input:focus + .toggle-slider {
    box-shadow: 0 0 1px #007bff;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border: 2px solid #007bff;
    transform: scale(1.05);
    z-index: 1;
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #007bff;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.pricing-tagline {
    color: #6c757d;
    font-size: 1rem;
}

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

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price.hidden {
    display: none;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-right: 0.25rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #6c757d;
    margin-left: 0.25rem;
}

.custom-quote {
    text-align: center;
}

.custom-quote span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
}

.custom-quote p {
    color: #6c757d;
    font-size: 1rem;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.pricing-features ul li i {
    color: #28a745;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.pricing-features ul li strong {
    font-weight: 600;
}

.pricing-cta {
    margin-top: auto;
    text-align: center;
}

.pricing-cta .btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
}

/* FAQ Section */
.pricing-faq-section {
    padding: 5rem 0;
    background-color: #fff;
}

.pricing-faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.faq-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
    max-width: 75ch;
}

/* Pricing CTA Section */
.pricing-cta-section {
    padding: 4rem 0;
    background-color: #f4f8fd;
    text-align: center;
}

.pricing-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.pricing-cta-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta-section .btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* Responsive Adjustments for Pricing Page */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 1rem 0;
    }
    
    .pricing-card.featured:hover {
        transform: none;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    .pricing-card:last-child {
        margin-bottom: 0;
    }
    .pricing-toggle {
        flex-direction: column;
        align-items: center;
    }
    .pricing-discount {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
} 

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

/* Contact Form */
.contact-form-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
}

.contact-form-container h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.contact-form-container p {
    color: #555;
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.5;
}

.checkbox-group a {
    color: #007bff;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.contact-form button[type="submit"] {
    grid-column: span 2;
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
}

/* Contact Info Cards */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card,
.contact-hours-card,
.social-links-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.contact-info-card h3,
.contact-hours-card h3,
.social-links-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    position: relative;
}

.contact-info-card h3::after,
.contact-hours-card h3::after,
.social-links-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #007bff;
}

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.icon-container {
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-container i {
    color: #007bff;
    font-size: 1.2rem;
}

.contact-info-list h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.contact-info-list p,
.contact-info-list address {
    margin: 0;
    color: #555;
    font-style: normal;
    line-height: 1.5;
}

.contact-info-list a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-list a:hover {
    color: #007bff;
}

/* Business Hours */
.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 0.5rem 0;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span {
    color: #555;
}

.note {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Social Links */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #f4f8fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-3px);
}

/* Form Success Message */
.form-success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.form-success-message h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-success-message p {
    color: #555;
}

/* FAQ Preview Section */
.faq-preview-section {
    padding: 5rem 0;
    background-color: #fff;
}

.faq-preview-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-cta {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

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

/* Responsive Adjustments for Contact Page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-container {
        order: -1;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width,
    .contact-form button[type="submit"] {
        grid-column: span 1;
    }
    
    .faq-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
} 

/* General Responsive Typography & Spacing */
@media (max-width: 992px) {
    .hero-section h1, .page-hero h1 {
        font-size: 2.2rem;
    }
    .hero-section .subtitle, .page-subtitle {
        font-size: 1.1rem;
    }
    section h2 {
        font-size: 1.8rem;
    }
    section .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section h1, .page-hero h1 {
        font-size: 1.8rem; /* Further reduced for mobile */
    }
    .hero-section .subtitle, .page-subtitle {
        font-size: 1rem;
    }
    .hero-section, .page-hero {
        padding: 2.5rem 0;
    }
    section {
        padding: 2rem 0;
    }
    section h2 {
        font-size: 1.6rem;
    }
    .container {
        width: 95%;
        padding: 0 15px;
    }
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
} 

p {
    margin-bottom: 1em; /* Default paragraph spacing */
}

/* Readability Improvements for Text-Heavy Sections */
.feature-content p,
.legal-content p,
.solution-description,
.faq-item p {
    max-width: 75ch; /* Limits line length for better readability */
    /* margin-left: auto; Remove auto margins if parent is text-aligned center or if it breaks layout */
    /* margin-right: auto; */
}

/* Ensure this doesn't break centered text in .feature-item if that's intended */
.feature-item p {
    max-width: 75ch;
    margin-left: auto; /* Added to center if feature-item is text-align: center */
    margin-right: auto; /* Added to center if feature-item is text-align: center */
}

/* Specific adjustment for .legal-content if its parent isn't already centered */
.legal-content {
    /* If .container doesn't center its content sufficiently for .legal-content p */
    /* display: flex; flex-direction: column; align-items: center; */ /* Alternative centering */
}

.legal-content p {
    margin-left: 0; /* Override auto if text should be left-aligned within its own block */
    margin-right: 0; /* Override auto if text should be left-aligned */
}