        /* General Body Styles */
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            background-color: #e9ecef; /* Very light background for the page */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            color: #343a40; /* Default dark text color */
        }

        /* Global Section Headings */
        .ss-section-heading {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #212529; /* Dark heading color */
            text-align: center;
        }

        .ss-section-subheading {
            font-size: 1.15rem;
            color: #495057;
            max-width: 800px;
            margin: 0 auto 3.5rem auto;
            line-height: 1.6;
            text-align: center;
        }

        /* --- SecureShield Header Styles --- */
        .ss-header {
            background-color: #ffffff; /* Clean white header */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft, noticeable shadow */
            padding: 1.2rem 0; /* More vertical padding */
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .ss-navbar-container {
            max-width: 1360px; /* Wider content area for a more expansive feel */
            margin-left: auto;
            padding-left: 2rem; /* More horizontal padding */
            padding-right: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Logo Styles */
        .ss-logo {
            flex-shrink: 0;
            font-size: 2.6rem; /* Even larger, more impactful logo */
            font-weight: 900; /* Ultra bold */
            color: #212529; /* Dark text for "Secure" */
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            letter-spacing: -0.05em; /* Tighter letter spacing */
        }

        .ss-logo span:first-child {
            color: #212529; /* Dark for "Secure" */
            margin-right: -0.05em; /* Overlap */
        }
        .ss-logo span:last-child {
            color: #6f42c1; /* Vibrant purple accent for "Shield" */
            margin-left: 0.02em;
        }

        .ss-logo:hover {
            transform: translateY(-2px);
            color: #343a40; /* Slightly darker on hover */
        }
        .ss-logo:hover span:last-child {
            color: #8a64d6; /* Lighter purple on hover */
        }


        /* Desktop Navigation Links */
        .ss-nav-links-desktop {
            display: none; /* Hidden by default on mobile */
            align-items: center;
            gap: 2.8rem; /* Increased spacing for a cleaner look */
        }

        .ss-nav-link {
            color: #343a40; /* Dark gray text */
            font-weight: 600; /* Semi-bold */
            text-decoration: none;
            position: relative;
            padding: 0.8rem 0; /* More padding for better hit area */
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .ss-nav-link::before { /* Top border/highlight effect */
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background-color: #6f42c1; /* Purple highlight */
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .ss-nav-link:hover {
            color: #000000; /* Black on hover */
            transform: translateY(-2px); /* Slight lift */
        }
        .ss-nav-link:hover::before {
            width: 100%;
        }

        /* Call to Action Button (Download/Get Started) */
        .ss-cta-button {
            background: linear-gradient(90deg, #6f42c1 0%, #8a64d6 100%); /* Purple gradient */
            color: #ffffff; /* White text */
            padding: 1rem; /* More generous padding */
            border-radius: 9999px; /* Pill shape */
            font-weight: 700;
            box-shadow: 0 8px 25px rgba(111, 66, 193, 0.4); /* Purple shadow */
            transition: all 0.4s ease; /* Smooth transition for all properties */
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
        }

        .ss-cta-button:hover {
            background: linear-gradient(90deg, #8a64d6 0%, #6f42c1 100%); /* Reverse gradient on hover */
            transform: translateY(-5px); /* More pronounced lift */
            box-shadow: 0 12px 30px rgba(111, 66, 193, 0.6);
        }

        .ss-cta-button svg {
            width: 1.5em; /* Larger icon */
            height: 1.5em;
        }

        /* Mobile Menu Button (Hamburger) */
        .ss-mobile-menu-button {
            display: flex;
            color: #212529; /* Dark icon on light background */
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.8rem; /* Generous padding */
            transition: transform 0.3s ease;
        }

        .ss-mobile-menu-button:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.3); /* Purple focus ring */
            border-radius: 0.3rem;
        }

        .ss-mobile-menu-button:active {
            transform: scale(0.95);
        }

        .ss-mobile-menu-button svg {
            width: 2.5rem; /* Larger icon for mobile touch */
            height: 2.5rem;
        }

        /* Mobile Menu Content */
        .ss-mobile-menu-content {
            background-color: #212529; /* Dark background for mobile menu overlay */
            border-top: 1px solid #343a40;
            padding: 2rem 0; /* More padding */
            flex-direction: column;
            align-items: center;
            gap: 1.8rem; /* Increased spacing */
            max-height: 0;
            opacity: 0;
            visibility: hidden;
            overflow: hidden;
            transition: max-height 0.0s ease-out 0.3s, opacity 0.3s ease-out, visibility 0.3s ease-out;
            display: flex;
            position: absolute; /* Full width overlay */
            width: 100%;
            left: 0;
            right: 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        .ss-mobile-menu-content.active {
            max-height: 500px; /* Sufficient height */
            opacity: 1;
            visibility: visible;
            transition: max-height 0.3s ease-in, opacity 0.3s ease-in, visibility 0.3s ease-in;
        }

        .ss-mobile-nav-link {
            display: block;
            color: #e9ecef;
            font-weight: 600;
            padding: 1.2rem 0; /* Generous padding for touch targets */
            width: 80%; /* Wider touch area */
            text-align: center;
            text-decoration: none;
            transition: background-color 0.3s ease, color 0.3s ease, border-radius 0.3s ease;
            border-radius: 0.5rem;
        }

        .ss-mobile-nav-link:hover {
            background-color: #343a40;
            color: #ffffff;
        }

        /* --- Hero Banner Section Styles --- */
        .ss-hero-banner {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #ffffff;
            background-color: #1a1a1a; /* Very dark background for hero */
            background-image: url('../images/logo/banner.png'); /* Dark background with purple accent */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
            padding: 3rem 2.5rem;
        }

        /* Stronger gradient overlay for depth and readability */
        .ss-hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
            z-index: 1;
        }

        .ss-hero-content {
            position: relative;
            z-index: 2;
            max-width: 1100px; /* Even wider content area */
            margin: 0 auto;
            text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.98); /* Most pronounced text shadow */
        }

        .ss-hero-title {
            font-size: 4.5rem; /* Larger and bolder */
            font-weight: 900;
            margin-bottom: 1.8rem;
            line-height: 1.15;
            color: #ffffff;
            letter-spacing: -0.04em;
        }

        .ss-hero-subtitle {
            font-size: 1.8rem; /* Larger and more impactful */
            margin-bottom: 4rem;
            line-height: 1.6;
            color: #e9ecef;
        }

        .ss-hero-buttons {
            display: flex;
            flex-direction: column; /* Stack on mobile */
            gap: 2rem; /* More space */
            justify-content: center;
            align-items: center;
        }

        .ss-hero-primary-button {
            background: linear-gradient(90deg, #6f42c1 0%, #8a64d6 100%); /* Purple gradient */
            color: #ffffff;
            padding: 1.6rem 4.5rem; /* Very large padding */
            border-radius: 9999px; /* Pill shape */
            font-weight: 800; /* Extra bold */
            text-decoration: none;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(111, 66, 193, 0.7); /* Stronger shadow */
            border: none;
            cursor: pointer;
        }

        .ss-hero-primary-button:hover {
            background: linear-gradient(90deg, #8a64d6 0%, #6f42c1 100%); /* Reverse gradient */
            transform: translateY(-8px) scale(1.05); /* Even more pronounced lift */
            box-shadow: 0 18px 45px rgba(111, 66, 193, 0.9);
        }

        .ss-hero-secondary-button {
            background-color: rgba(255, 255, 255, 0.1); /* Subtle transparent white */
            color: #ffffff;
            padding: 1.6rem 4.5rem;
            border-radius: 9999px; /* Pill shape */
            font-weight: 800;
            text-decoration: none;
            border: 2px solid #6f42c1; /* Purple border */
            transition: all 0.4s ease;
            backdrop-filter: blur(15px); /* Stronger frosted glass effect */
            -webkit-backdrop-filter: blur(15px);
        }

        .ss-hero-secondary-button:hover {
            background-color: rgba(111, 66, 193, 0.2); /* Slight purple fill on hover */
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 12px 35px rgba(111, 66, 193, 0.7);
        }

        /* --- Key Benefits Section --- */
        .ss-benefits-section {
            padding: 6rem 1.5rem;
            background-color: #ffffff; /* White background */
        }

        .ss-benefits-grid {
            display: grid;
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 3rem; /* Space between items */
            max-width: 1200px;
            margin: 0 auto;
        }

        .ss-benefit-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 2.5rem;
            background-color: #f8f9fa; /* Light grey background for items */
            border-radius: 1rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .ss-benefit-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        .ss-benefit-icon {
            width: 4rem;
            height: 4rem;
            color: #6f42c1; /* Purple accent */
            margin-bottom: 1.5rem;
            stroke-width: 1.8; /* Slightly thicker stroke for icons */
        }

        .ss-benefit-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 1rem;
        }

        .ss-benefit-description {
            font-size: 1rem;
            line-height: 1.7;
            color: #495057;
        }

        /* --- Detailed Features & Solutions Section (New) --- */
        .ss-features-solutions-section {
            padding: 6rem 1.5rem;
            background-color: #f0f2f5; /* Slightly darker light background */
        }

        .ss-features-solutions-grid {
            display: grid;
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .ss-feature-solution-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 2.5rem;
            background-color: #ffffff;
            border-radius: 1rem;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .ss-feature-solution-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .ss-feature-solution-icon {
            width: 3.8rem;
            height: 3.8rem;
            color: #6f42c1;
            margin-bottom: 1.2rem;
            stroke-width: 1.6;
        }

        .ss-feature-solution-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 0.8rem;
        }

        .ss-feature-solution-description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #495057;
        }


        /* --- How It Works Section --- */
        .ss-how-it-works-section {
            padding: 6rem 1.5rem;
            background-color: #e9ecef; /* Light grey background */
        }

        .ss-steps-grid {
            display: grid;
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .ss-step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 2rem;
            background-color: #ffffff;
            border-radius: 1rem;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .ss-step-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .ss-step-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #6f42c1; /* Purple accent */
            margin-bottom: 1rem;
            background-color: rgba(111, 66, 193, 0.1); /* Light purple background */
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 2px solid #6f42c1;
        }

        .ss-step-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 0.8rem;
        }

        .ss-step-description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #495057;
        }

        /* --- Testimonials Section --- */
        .ss-testimonials-section {
            padding: 6rem 1.5rem;
            background-color: #212529; /* Dark background for testimonials */
            color: #ffffff;
        }

        .ss-testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .ss-testimonial-grid {
            display: grid;
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 2.5rem;
        }

        .ss-testimonial-item {
            background-color: #343a40; /* Slightly lighter dark for testimonial cards */
            border-radius: 1rem;
            padding: 2.5rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .ss-testimonial-quote {
            font-size: 1.1rem;
            line-height: 1.8;
            font-style: italic;
            color: #e9ecef;
            margin-bottom: 1.5rem;
        }

        .ss-testimonial-author {
            font-weight: 700;
            color: #6f42c1; /* Purple accent for name */
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
        }

        .ss-testimonial-rating {
            color: #ffc107; /* Gold for stars */
            font-size: 1.2rem;
        }

        /* --- FAQ Section (New) --- */
        .ss-faq-section {
            padding: 6rem 1.5rem;
            background-color: #212529; /* White background for FAQ */
        }

        .ss-faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .ss-faq-item {
            background-color: #f8f9fa; /* Light grey background for FAQ items */
            border-radius: 0.75rem;
            margin-bottom: 1rem;
            overflow: hidden; /* Ensure rounded corners clip content */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .ss-faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: #212529;
            cursor: pointer;
            background-color: #ffffff; /* White for question header */
            border-bottom: 1px solid #e9ecef;
            transition: background-color 0.3s ease;
        }

        .ss-faq-question:hover {
            background-color: #f0f2f5;
        }

        .ss-faq-question::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: 700;
            color: #6f42c1;
            transition: transform 0.3s ease;
        }

        .ss-faq-item.open .ss-faq-question::after {
            content: '-';
            transform: rotate(180deg);
        }

        .ss-faq-answer {
            padding: 0 2rem 1.5rem 2rem;
            font-size: 0.95rem;
            line-height: 1.7;
            color: #495057;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
        }

        .ss-faq-item.open .ss-faq-answer {
            max-height: 200px; /* Adjust based on expected content length */
            padding-top: 1rem;
        }


        /* --- Final Call to Action Section --- */
        .ss-final-cta-section {
            padding: 6rem 1.5rem;
            background: linear-gradient(135deg, #6f42c1 0%, #8a64d6 100%); /* Purple gradient background */
            color: #ffffff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .ss-final-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('../images/logo/cta.png'); /* Subtle background pattern/image */
            background-size: cover;
            background-position: center;
            opacity: 0.5; /* Very subtle */
            z-index: 0;
        }

        .ss-final-cta-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
        }

        .ss-final-cta-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .ss-final-cta-description {
            font-size: 1.3rem;
            line-height: 1.7;
            margin-bottom: 3rem;
            color: #f8f9fa;
        }

        .ss-final-cta-button {
            background-color: #ffffff; /* White button on purple background */
            color: #6f42c1; /* Purple text */
            padding: 1.4rem 3.5rem;
            border-radius: 9999px; /* Pill shape */
            font-weight: 800;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
        }

        .ss-final-cta-button:hover {
            background-color: #e9ecef; /* Slightly darker white */
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        /* --- Footer Styles --- */
        .ss-footer {
            background-color: #212529; /* Dark charcoal */
            color: #e9ecef; /* Light text */
            padding: 3.5rem 1.5rem; /* More padding */
            text-align: center;
            font-size: 0.95rem;
            border-top: 1px solid #343a40;
            margin-top: auto; /* Push footer to bottom */
        }

        .ss-footer-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .ss-footer-text {
            margin-bottom: 1.5rem;
        }

        .ss-footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.2rem 2.5rem; /* More space between links */
        }

        .ss-footer-link {
            color: #adb5bd; /* Lighter grey links */
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease, transform 0.2s ease;
        }

        .ss-footer-link:hover {
            color: #ffffff; /* White on hover */
            text-decoration: underline;
            transform: translateY(-2px);
        }


        /* Media Queries for Responsiveness */
        @media (min-width: 768px) { /* md breakpoint */
            .ss-nav-links-desktop {
                display: flex;
            }
            .ss-mobile-menu-button {
                display: none;
            }
            .ss-mobile-menu-content {
                display: none !important;
                max-height: 0 !important;
                opacity: 0 !important;
                visibility: hidden !important;
            }

  
            .ss-hero-subtitle {
                font-size: 2rem;
            }
            .ss-hero-buttons {
                flex-direction: row;
            }

            .ss-benefits-grid {
                grid-template-columns: repeat(2, 1fr); /* Two columns on medium screens */
            }
            .ss-how-it-works-section .ss-section-heading {
                font-size: 3.2rem;
            }
            .ss-steps-grid {
                grid-template-columns: repeat(3, 1fr); /* Three columns for steps */
            }
            .ss-testimonial-grid {
                grid-template-columns: repeat(2, 1fr); /* Two columns for testimonials */
            }
            .ss-final-cta-title {
                font-size: 4.5rem;
            }
            .ss-features-solutions-grid {
                grid-template-columns: repeat(2, 1fr); /* Two columns for features on medium screens */
            }
            .ss-faq-section .ss-section-heading {
                font-size: 3.2rem;
            }
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            /*.ss-hero-title {
                font-size: 8rem;
            }*/
            .ss-benefits-grid {
                grid-template-columns: repeat(3, 1fr); /* Three columns on large screens */
            }
            .ss-how-it-works-section .ss-section-heading {
                font-size: 3.8rem;
            }
            .ss-testimonial-grid {
                grid-template-columns: repeat(3, 1fr); /* Three columns for testimonials */
            }
            .ss-final-cta-title {
                font-size: 5.5rem;
            }
            .ss-features-solutions-grid {
                grid-template-columns: repeat(3, 1fr); /* Three columns for features on large screens */
            }
            .ss-faq-section .ss-section-heading {
                font-size: 3.8rem;
            }
        }

        @media (min-width: 1280px) { /* xl breakpoint for even larger screens */
            .ss-section-heading {
                font-size: 3.5rem;
            }
            .ss-how-it-works-section .ss-section-heading {
                font-size: 4.2rem;
            }
            .ss-final-cta-title {
                font-size: 6rem;
            }
            .ss-faq-section .ss-section-heading {
                font-size: 4.2rem;
                color: #fff;
            }
        }

        /* --- Full Width Image and Info Section (New) --- */
        .ss-image-info-section {
            background-color: #ffffff; /* White background */
            padding-bottom: 6rem; /* Padding below content */
        }

        .ss-image-info-banner {
            width: 100%;
            height: 450px; /* Fixed height for the banner image */
            background-image: url('../images/logo/about.png'); /* Placeholder image */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            margin-bottom: 3rem; /* Space between image and text content */
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Subtle shadow below image */
        }

        .ss-image-info-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 1.5rem; /* Horizontal padding for content */
            text-align: center;
        }

        .ss-image-info-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #212529;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .ss-image-info-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #495057;
            margin-bottom: 2rem;
        }

        .ss-image-info-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 1rem;
            text-align: left;
            max-width: 600px;
            margin: 0 auto 2rem auto;
        }

        .ss-image-info-list li {
            font-size: 1rem;
            color: #343a40;
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }

        .ss-image-info-list li svg {
            flex-shrink: 0;
            width: 1.2em;
            height: 1.2em;
            color: #6f42c1; /* Purple checkmark */
            margin-top: 0.2em;
        }
@media (max-width: 768px) {
    .ss-final-cta-button{
 
    font-size: 0.9rem!important;


}
/*.ss-section-heading {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff!important;
    text-align: center;
}*/
}