
.restomate-pos-container {
    width: 100%;
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px 20px;
    /* Remove vertical padding and control it with margins */
    font-family: 'Quicksand', sans-serif;
    box-sizing: border-box;
}

.restomate-pos-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70vh;
    gap: 60px;
    margin: 80px 0 40px 0;
    /* Add significant top margin (80px) */
}

.restomate-pos-content {
    flex: 1;
    max-width: 600px;
    padding: 30px 0;
}

.restomate-pos-heading {
    font-size: 3.5rem;
    color: #1e2537;
    line-height: 1.2;
    margin: 0 0 30px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.restomate-pos-heading .restomate-pos-highlight {
    color: var(--primary-color);
    display: inline-block;
}

.restomate-pos-subtext {
    font-size: 1.25rem;
    color: #666;
    margin: 0 0 40px 0;
    line-height: 1.6;
    max-width: 540px;
}

.restomate-pos-cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
}

.restomate-pos-cta-button:hover {
    background-color: #b91c1c;
}

.restomate-pos-illustration {
    flex: 1;
    max-width: 600px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.restomate-pos-illustration img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Enhanced responsiveness */
@media (max-width: 1200px) {
    .restomate-pos-hero {
        gap: 40px;
        margin-top: 70px;
        /* Slightly less margin on smaller screens */
    }

    .restomate-pos-heading {
        font-size: 3rem;
    }

    .restomate-pos-subtext {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
}

@media (max-width: 992px) {
    .restomate-pos-hero {
        margin-top: 60px;
    }

    .restomate-pos-heading {
        font-size: 2.7rem;
    }

    .restomate-pos-content {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .restomate-pos-hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 20px 0;
        margin-top: 40px;
        /* Less top margin on mobile */
    }

    .restomate-pos-content {
        max-width: 100%;
        order: 2;
        padding: 10px 0;
    }

    .restomate-pos-illustration {
        order: 1;
        max-width: 80%;
        margin: 0 auto;
    }

    .restomate-pos-heading {
        font-size: 2.5rem;
        margin-top: 20px;
    }

    .restomate-pos-heading br {
        display: none;
        /* Remove line breaks on mobile */
    }

    .restomate-pos-subtext {
        margin: 0 auto 30px auto;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .restomate-pos-hero {
        margin-top: 30px;
    }

    .restomate-pos-heading {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .restomate-pos-subtext {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .restomate-pos-cta-button {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
    }

    .restomate-pos-illustration {
        max-width: 100%;
        padding: 10px;
    }
}

/* Updated billing section with restomate-pos prefix */
.restomate-pos-billing-section {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 0 20px;
    /* Remove top padding */
    padding-bottom: 40px;
    /* Keep some bottom padding */
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(to right, #f8fafc, #ffffff);
    margin-top: -40px;
    /* Pull up the section */
}

.restomate-pos-billing-image {
    flex: 1;
    max-width: 50%;
    position: relative;
    transition: transform 0.3s ease;
}

.restomate-pos-billing-image:hover {
    transform: translateY(-10px);
}

.restomate-pos-billing-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
}

.restomate-pos-billing-image img:hover {
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
}

.restomate-pos-billing-content {
    flex: 1;
    max-width: 50%;
}

.restomate-pos-billing-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1e2537;
    margin-bottom: 24px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.restomate-pos-billing-title .restomate-pos-highlight {
    color: --primary-color;
}

.restomate-pos-billing-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

.restomate-pos-billing-cta {
    display: inline-flex;
    align-items: center;
    font-size: 1.125rem;
    color: #1e2537;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.restomate-pos-billing-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.restomate-pos-billing-cta:hover {
    color: var(--primary-color);
}

.restomate-pos-billing-cta:hover::after {
    width: 100%;
}

@media (max-width: 1024px) {
    .restomate-pos-billing-section {
        gap: 40px;
        padding: 60px 20px;
    }

    .restomate-pos-billing-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .restomate-pos-billing-section {
        flex-direction: column;
        text-align: center;
    }

    .restomate-pos-billing-image,
    .restomate-pos-billing-content {
        max-width: 100%;
    }

    .restomate-pos-billing-title {
        font-size: 1.75rem;
    }

    .restomate-pos-billing-description {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Reports Section Styles
   ========================================================================== */

/* Main container for reports section
   Reversed layout compared to billing section for visual variety */
.restomate-pos-reports-section {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(to left, #f8fafc, #ffffff);
    flex-direction: row-reverse;
    /* Places content on left, image on right */
}

/* Image container styles
   Includes hover animation and positioning */
.restomate-pos-reports-image {
    flex: 1;
    max-width: 50%;
    position: relative;
    transition: transform 0.3s ease;
}

/* Hover effect for image container */
.restomate-pos-reports-image:hover {
    transform: translateY(-10px);
    /* Slight lift effect on hover */
}

/* Image styling
   Includes shadow, border, and hover effects */
.restomate-pos-reports-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
}

/* Enhanced shadow effect on image hover */
.restomate-pos-reports-image img:hover {
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
}

/* Content container styles */
.restomate-pos-reports-content {
    flex: 1;
    max-width: 50%;
}

/* Title styling */
.restomate-pos-reports-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1e2537;
    margin-bottom: 24px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

/* Highlight text within title */
.restomate-pos-reports-title .restomate-pos-highlight {
    color: var(--primary-color);
    /* Brand red color */
}

/* Description text styling */
.restomate-pos-reports-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

/* Call-to-action button styling */
.restomate-pos-reports-cta {
    display: inline-flex;
    align-items: center;
    font-size: 1.125rem;
    color: #1e2537;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

/* Animated underline effect for CTA */
.restomate-pos-reports-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

/* Hover states for CTA */
.restomate-pos-reports-cta:hover {
    color: var(--primary-color);
}

.restomate-pos-reports-cta:hover::after {
    width: 100%;
    /* Expand underline on hover */
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet and smaller desktop screens */
@media (max-width: 1024px) {
    .restomate-pos-reports-section {
        gap: 40px;
        padding: 60px 20px;
    }

    .restomate-pos-reports-title {
        font-size: 2rem;
        /* Smaller title for medium screens */
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .restomate-pos-reports-section {
        flex-direction: column;
        text-align: center;
    }

    .restomate-pos-reports-image,
    .restomate-pos-reports-content {
        max-width: 100%;
        /* Full width on mobile */
    }

    .restomate-pos-reports-title {
        font-size: 1.75rem;
        /* Further reduced title size */
    }

    .restomate-pos-reports-description {
        font-size: 1rem;
        /* Smaller description text */
    }
}

/* ==========================================================================
   Online Ordering Section Styles
   ========================================================================== */

/* Main container for ordering section */
.restomate-pos-ordering-section {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(to right, #f8fafc, #ffffff);
}

/* Image container styles */
.restomate-pos-ordering-image {
    flex: 1;
    max-width: 50%;
    position: relative;
    transition: transform 0.3s ease;
}

/* Hover effect for image container */
.restomate-pos-ordering-image:hover {
    transform: translateY(-10px);
}

/* Image styling */
.restomate-pos-ordering-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
}

/* Enhanced shadow effect on image hover */
.restomate-pos-ordering-image img:hover {
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
}

/* Content container styles */
.restomate-pos-ordering-content {
    flex: 1;
    max-width: 50%;
}

/* Title styling */
.restomate-pos-ordering-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1e2537;
    margin-bottom: 24px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

/* Highlight text within title */
.restomate-pos-ordering-title .restomate-pos-highlight {
    color: var(--primary-color);
}

/* Description text styling */
.restomate-pos-ordering-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

/* Call-to-action button styling */
.restomate-pos-ordering-cta {
    display: inline-flex;
    align-items: center;
    font-size: 1.125rem;
    color: #1e2537;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

/* Animated underline effect for CTA */
.restomate-pos-ordering-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

/* Hover states for CTA */
.restomate-pos-ordering-cta:hover {
    color: var(--primary-color);
}

.restomate-pos-ordering-cta:hover::after {
    width: 100%;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet and smaller desktop screens */
@media (max-width: 1024px) {
    .restomate-pos-ordering-section {
        gap: 40px;
        padding: 60px 20px;
    }

    .restomate-pos-ordering-title {
        font-size: 2rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .restomate-pos-ordering-section {
        flex-direction: column;
        text-align: center;
    }

    .restomate-pos-ordering-image,
    .restomate-pos-ordering-content {
        max-width: 100%;
    }


    .restomate-pos-ordering-title {
        font-size: 1.75rem;
    }

    .restomate-pos-ordering-description {
        font-size: 1rem;
    }
}


/* Features Container */
.restomate-pos-features-container {
    display: flex;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Feature Card */
.restomate-pos-feature-card {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
}

/* Content Section */
.restomate-pos-feature-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Title */
.restomate-pos-feature-title {
    font-size: 2rem;
    color: #1e2537;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.2;
    margin: 0;
}

/* Add this new style for the highlight in feature titles */
.restomate-pos-feature-title .restomate-pos-highlight {
    color: var(--primary-color);
    /* This is the same red color used in other sections */
}

/* Description */
.restomate-pos-feature-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Image Container */
.restomate-pos-feature-image {
    margin-top: auto;
    position: relative;
    transition: transform 0.3s ease;
}

/* Add hover effect */
.restomate-pos-feature-image:hover {
    transform: translateY(-10px);
}

/* Image */
.restomate-pos-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
}

/* Add hover effect for image */
.restomate-pos-feature-image img:hover {
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
}

/* Responsive Design */
@media (max-width:1024px) {
    .restomate-pos-feature-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .restomate-pos-features-container {
        flex-direction: column;
        padding: 30px 20px;
    }

    .restomate-pos-feature-card {
        padding: 10px 0;
    }

    .restomate-pos-feature-title {
        font-size: 1.75rem;
    }

    .restomate-pos-feature-description {
        font-size: 1rem;
    }
}

/* CSS Variables - keeping original variable names */
:root {
    /* Colors */
    --captain-primary: #CB202D;
    --captain-secondary: #333333;
    --captain-dark: #333333;
    --captain-light: #ffffff;
    --captain-gray: #95A5A6;
    --captain-white: #FFFFFF;
    --captain-primary-light: rgba(203, 32, 45, 0.1);

    /* Typography */
    --captain-heading-font: 'Quicksand', sans-serif;
    --captain-body-font: 'Quicksand', sans-serif;

    /* Spacing */
    --captain-space-xs: 5px;
    --captain-space-sm: 10px;
    --captain-space-md: 20px;
    --captain-space-lg: 40px;
    --captain-space-xl: 80px;

    /* Border Radius */
    --captain-radius-sm: 8px;
    --captain-radius-md: 15px;
    --captain-radius-lg: 30px;

    /* Shadows */
    --captain-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --captain-shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --captain-transition: all 0.3s ease;
}



/* Container */
.restomate-pos-pos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--captain-space-md);
}

/* restomate-pos-pos-highlights.css */
.restomate-pos-pos-highlights {
    padding: var(--captain-space-xl) 0;
    background: linear-gradient(170deg, var(--captain-light) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.restomate-pos-pos-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--captain-primary), transparent);
    opacity: 0.2;
}

.restomate-pos-pos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--captain-space-lg);
}

.restomate-pos-pos-section-header {
    text-align: center;
    margin-bottom: var(--captain-space-xl);
}

.restomate-pos-pos-section-badge {
    display: inline-block;
    background-color: var(--captain-primary-light);
    color: var(--captain-primary);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.restomate-pos-pos-highlights-title {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: var(--captain-dark);
    position: relative;
    display: inline-block;
}

.restomate-pos-pos-text-accent {
    color: var(--captain-primary);
    position: relative;
}

.restomate-pos-pos-text-accent::after {
    content: '';
    position: absolute;
    height: 8px;
    width: 100%;
    background-color: var(--captain-primary-light);
    bottom: 5px;
    left: 0;
    z-index: -1;
    border-radius: var(--captain-radius-sm);
}

.restomate-pos-pos-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* gap: var(--captain-space-xl); */
    max-width: 1400px;
    margin: 0 auto;
}

.restomate-pos-pos-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: var(--captain-space-md);
    padding: var(--captain-space-md);
    transition: transform 0.3s ease;
    position: relative;
    border-radius: var(--captain-radius-md);
}

.restomate-pos-pos-highlight-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.7);
}

.restomate-pos-pos-highlight-item:hover .restomate-pos-pos-highlight-icon {
    background-color: var(--captain-primary);
}

.restomate-pos-pos-highlight-item:hover .restomate-pos-pos-higlight-icon {
    stroke: white;
}

.restomate-pos-pos-highlight-icon {
    width: 52px;
    height: 52px;
    background-color: var(--captain-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--captain-transition);
    flex-shrink: 0;
}

.restomate-pos-pos-higlight-icon {
    width: 28px;
    height: 28px;
    stroke: var(--captain-primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: var(--captain-transition);
}

.restomate-pos-pos-highlight-content {
    flex-grow: 1;
}

.restomate-pos-pos-highlight-heading {
    font-size: 1.125rem;
    color: var(--captain-dark);
    margin-bottom: var(--captain-space-sm);
    font-weight: 600;
    line-height: 1.3;
}

.restomate-pos-pos-highlight-text {
    color: var(--captain-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Animation for icons on hover */
@keyframes iconPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.restomate-pos-pos-highlight-item:hover .restomate-pos-pos-highlight-icon {
    animation: iconPulse 0.5s ease;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Utility Classes */
.restomate-pos-pos-text-center {
    text-align: center;
}

.restomate-pos-pos-mt-1 {
    margin-top: var(--captain-space-sm);
}

.restomate-pos-pos-mt-2 {
    margin-top: var(--captain-space-md);
}

.restomate-pos-pos-mt-3 {
    margin-top: var(--captain-space-lg);
}

.restomate-pos-pos-mt-4 {
    margin-top: var(--captain-space-xl);
}

.restomate-pos-pos-mb-1 {
    margin-bottom: var(--captain-space-sm);
}

.restomate-pos-pos-mb-2 {
    margin-bottom: var(--captain-space-md);
}

.restomate-pos-pos-mb-3 {
    margin-bottom: var(--captain-space-lg);
}

.restomate-pos-pos-mb-4 {
    margin-bottom: var(--captain-space-xl);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .restomate-pos-pos-highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--captain-space-lg);
    }
}

@media screen and (max-width: 992px) {
    .restomate-pos-pos-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .restomate-pos-pos-highlight-item {
        padding: var(--captain-space-sm);
    }
}

@media screen and (max-width: 768px) {
    .restomate-pos-pos-highlights-title {
        font-size: 2rem;
    }

    .restomate-pos-pos-highlight-icon {
        width: 45px;
        height: 45px;
    }

    .restomate-pos-pos-higlight-icon {
        width: 24px;
        height: 24px;
    }

    .restomate-pos-pos-highlight-heading {
        font-size: 1.05rem;
    }
}

@media screen and (max-width: 576px) {
    .restomate-pos-pos-highlights-grid {
        grid-template-columns: 1fr;
        /* gap: var(--captain-space-lg); */
    }

    .restomate-pos-pos-highlights {
        padding: var(--captain-space-lg) 0;
    }

    .restomate-pos-pos-highlight-item {
        gap: var(--captain-space-sm);
    }

    /* Hidden Elements */
    .restomate-pos-pos-hidden-xs {
        display: none;
    }
}

@media screen and (max-width: 375px) {

    /* Extra small screen adjustments */
    .restomate-pos-pos-highlights-title {
        font-size: 1.8rem;
    }

    .restomate-pos-pos-highlight-heading {
        font-size: 1rem;
    }

    .restomate-pos-pos-highlight-text {
        font-size: 0.9rem;
    }
}

/* Benefits Section */
/* Benefits Section - New Layout */
.restomate-pos-pos-benefits {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.restomate-pos-pos-benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.restomate-pos-pos-badge {
    display: inline-block;
    padding: 6px 20px;
    background-color: rgba(203, 32, 45, 0.1);
    color: var(--captain-primary);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.restomate-pos-pos-title {
    font-size: 2.5rem;
    color: #1e2537;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.restomate-pos-pos-accent {
    color: var(--captain-primary);
}

.restomate-pos-pos-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.restomate-pos-pos-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.restomate-pos-pos-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.restomate-pos-pos-feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.restomate-pos-pos-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(203, 32, 45, 0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.restomate-pos-pos-feature-card:hover .restomate-pos-pos-feature-icon {
    background-color: var(--captain-primary);
}

.restomate-pos-pos-feature-svg {
    width: 40px;
    height: 40px;
    stroke: var(--captain-primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: all 0.3s ease;
}

.restomate-pos-pos-feature-card:hover .restomate-pos-pos-feature-svg {
    stroke: white;
}

.restomate-pos-pos-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e2537;
    margin-bottom: 15px;
}

.restomate-pos-pos-feature-description {
    font-size: 0.95rem;
    color: #666;
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
    .restomate-pos-pos-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media screen and (max-width: 768px) {
    .restomate-pos-pos-title {
        font-size: 2rem;
    }

    .restomate-pos-pos-subtitle {
        font-size: 1rem;
    }

    .restomate-pos-pos-feature-icon {
        width: 70px;
        height: 70px;
    }

    .restomate-pos-pos-feature-svg {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 576px) {
    .restomate-pos-pos-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .restomate-pos-pos-benefits {
        padding: 60px 0;
    }

    .restomate-pos-pos-benefits-header {
        margin-bottom: 40px;
    }

    .restomate-pos-pos-feature-card {
        max-width: 320px;
        margin: 0 auto;
    }
}