/* Reset some default styles */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background-attachment: fixed;
}

/* Header styles */
header {
    background-color: rgba(44, 62, 80, 0.1); /* Very light, semi-transparent version of the original color */
    color: #2c3e50; /* Adjust text color to ensure readability */
    text-align: center;
    padding: 1rem;
    width: 100%;
}

/* Main content container */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
}

/* Button styles */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db; /* Bright blue */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #2980b9; /* Slightly darker blue */
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    color: #333;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:nth-child(odd) {
    background-color: #e0e0e0;
}

tr:hover {
    background-color: #ddd;
}

/* Apply these styles to your banner image */
.banner {
    width: 100%; /* Make the image span the full width of its container */
    height: auto; /* Maintain the aspect ratio of the image */
    max-height: 200px; /* Set a maximum height for the banner */
}

/* Add to your existing styles */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: transparent; /* Remove the white background */
    border: none; /* Remove any border if present */
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff;
}

/* Add these new styles for the mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: 0.4s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
    }

    nav ul li .header-demo-button {
        display: inline-block;
        margin: 1rem 0;
    }
}

.hero {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 4rem 5%;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 2rem;
}

.email-capture {
    margin-bottom: 2rem;
}

.email-capture input[type="email"] {
    padding: 0.5rem;
    font-size: 1rem;
    width: 60%;
    max-width: 300px;
}

.cta-button {
    background-color: #007bff; /* A vibrant blue color */
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #0056b3; /* A darker blue for hover state */
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-image {
    margin-top: 2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 150px; /* Adjust this value to make the image smaller or larger */
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .email-capture input[type="email"] {
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-image img {
        max-height: 100px; /* Even smaller for mobile devices */
    }
}

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

.button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.button.primary {
    background-color: #007bff;
    color: #fff;
}

.button.secondary {
    background-color: #6c757d;
    color: #fff;
}

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

.feature-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Adjust animation delays for the 2x2 grid */
.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }
.feature-item:nth-child(4) { animation-delay: 0.8s; }

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

.benefits ul li:before {
    content: '✓';
    color: #28a745;
    margin-right: 0.5rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #f8f9fa;
    margin-top: 2rem;
}

.attribution {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

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

.attribution a:hover {
    text-decoration: underline;
}

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

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-table {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: center;
    border: none;
}

.pricing-table th {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.pricing-table tr {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pricing-table tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.pricing-table td:first-child {
    font-weight: bold;
    text-align: left;
}

.pricing-table td:nth-child(2) {
    font-weight: bold;
    color: #007bff;
}

.pricing-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.5rem;
    }
}

.logo {
    width: 60px; /* Adjust this value to make the logo smaller */
    height: auto;
}

@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background-attachment: fixed;
}

/* Header styles */
header {
    background-color: rgba(44, 62, 80, 0.1); /* Very light, semi-transparent version of the original color */
    color: #2c3e50; /* Adjust text color to ensure readability */
    text-align: center;
    padding: 1rem;
}

/* Main content container */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
}

/* Button styles */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db; /* Bright blue */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #2980b9; /* Slightly darker blue */
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    color: #333;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:nth-child(odd) {
    background-color: #e0e0e0;
}

tr:hover {
    background-color: #ddd;
}

/* Apply these styles to your banner image */
.banner {
    width: 100%; /* Make the image span the full width of its container */
    height: auto; /* Maintain the aspect ratio of the image */
    max-height: 200px; /* Set a maximum height for the banner */
}

/* Add to your existing styles */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: transparent; /* Remove the white background */
    border: none; /* Remove any border if present */
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff;
}

/* Add these new styles for the mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: 0.4s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
    }

    nav ul li .header-demo-button {
        display: inline-block;
        margin: 1rem 0;
    }
}

.hero {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 4rem 5%;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 2rem;
}

.email-capture {
    margin-bottom: 2rem;
}

.email-capture input[type="email"] {
    padding: 0.5rem;
    font-size: 1rem;
    width: 60%;
    max-width: 300px;
}

.cta-button {
    background-color: #007bff; /* A vibrant blue color */
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #0056b3; /* A darker blue for hover state */
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-image {
    margin-top: 2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 150px; /* Adjust this value to make the image smaller or larger */
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .email-capture input[type="email"] {
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-image img {
        max-height: 100px; /* Even smaller for mobile devices */
    }
}

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

.button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.button.primary {
    background-color: #007bff;
    color: #fff;
}

.button.secondary {
    background-color: #6c757d;
    color: #fff;
}

.features, .benefits, .pricing, .contact {
    background-color: white;
    padding: 4rem 5%;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.feature-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Adjust animation delays for the 2x2 grid */
.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }
.feature-item:nth-child(4) { animation-delay: 0.8s; }

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

.benefits ul li:before {
    content: '✓';
    color: #28a745;
    margin-right: 0.5rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #f8f9fa;
    margin-top: 2rem;
}

.attribution {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

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

.attribution a:hover {
    text-decoration: underline;
}

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

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-table {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: center;
    border: none;
}

.pricing-table th {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.pricing-table tr {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pricing-table tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.pricing-table td:first-child {
    font-weight: bold;
    text-align: left;
}

.pricing-table td:nth-child(2) {
    font-weight: bold;
    color: #007bff;
}

.pricing-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.5rem;
    }
}

.logo {
    width: 60px; /* Adjust this value to make the logo smaller */
    height: auto;
}

@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }
}


.contact {
    background-color: white;
    padding: 4rem 5%;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact h2 {
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.company-name {
    font-family: 'Montserrat', sans-serif; /* A different, more modern font */
    font-weight: 600;
    font-size: 1.8rem; /* Increased font size */
    color: #2c3e50; /* A deep blue-gray color */
    margin-top: 0.25rem;
    letter-spacing: 0.03em;
    text-transform: uppercase; /* Optional: makes the text all caps */
}

/* Demo button styles */
.demo-button {
    background-color: #34c759; /* Apple's green color */
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.demo-button:hover {
    background-color: #2eb350; /* A darker blue for hover state */
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Update nav styles to accommodate the demo button */
nav ul li .demo-button {
    color: white;
    padding: 8px 16px;
}

nav ul li .demo-button:hover {
    color: white;
}

/* Update hero section styles */
.hero .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.hero .email-capture {
    flex: 1 1 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.hero .email-capture input[type="email"] {
    flex: 1 1 200px;
}

.hero .cta-button {
    flex: 0 1 auto;
}

.hero .demo-button {
    flex: 0 1 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    nav ul li .demo-button {
        display: inline-block;
        margin-top: 10px;
    }

    .hero .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero .email-capture {
        width: 100%;
    }

    .hero .demo-button {
        margin-top: 1rem;
    }
}
/* Existing styles */

.hero {
    text-align: center;
    padding: 3rem 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

.email-capture {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.email-capture input[type="email"] {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
    max-width: 300px;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

.demo-section {
    margin-top: 2rem;
}

.demo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow {
        font-size: 2rem;
    color: #007bff;
    margin: 0 1rem;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.left-arrow {
    transform: translateX(20px);
}

.right-arrow {
    transform: translateX(-20px);
}

.demo-container:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

.demo-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid #007bff;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #f0f0f0, #e6e6e6);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.demo-button img {
    width: 75px;
    height: auto;
    margin-bottom: 0.5rem;
}

.demo-button span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #007bff;
    transition: color 0.3s ease;
}

.demo-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.2);
    background: linear-gradient(145deg, #e6e6e6, #f0f0f0);
}

.demo-button:hover span {
    color: #0056b3;
}

/* Keep the header demo button style */
nav ul li .demo-button {
    background-color: #34c759;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

nav ul li .demo-button:hover {
    background-color: #2eb350;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .email-capture {
        max-width: 100%;
    }
}

.header-demo-button {
    background-color: #34c759;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-demo-button:hover {
    background-color: #2eb350;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.benefits {
    text-align: center;
}

.benefit-list {
    list-style-type: none;
    padding-left: 0;
    display: inline-block;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.benefit-title {
    color: #333;
    font-size: 1.1em;
    /* min-width: 180px; */
    text-align: left;
    flex-shrink: 0;
    margin-right: .2em; 
}

.benefit-description {
    color: #666;
    font-size: 1.1em;
    font-style: italic;
    flex: 1;
    text-align: left;
}

.industries {
    padding: 4rem 0;
    background-color: #f8f9fa;
    margin-bottom: 2rem;
}

.industry-grid-container {
    max-width: 1200px; /* Adjust this value as needed */
    margin: 0 auto;
    padding: 0 20px;
}

.industry-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.industry-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
        text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 200px; /* Set a fixed width */
}

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

.industry-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.industry-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.industry-item:hover img {
    animation: pulse 1s infinite;
}

@media (max-width: 768px) {
    .industry-item {
        width: calc(50% - 1rem); /* Two items per row on smaller screens */
    }
}

.early-bird {
    text-align: center;
}

.early-bird h2 {
    color: #007bff;
    margin-bottom: 1rem;
}

.early-bird h3 {
    color: #333;
    margin-bottom: 1rem;
}

.early-bird p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.saas-benefits {
    list-style-type: none;
    padding: 0;
    margin: 2rem auto;
    max-width: 500px;
    text-align: left;
    display: inline-block; /* This allows the list to be centered while keeping left-aligned text */
}

.saas-benefits li {
    color: #555;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.4;
}

.saas-benefits li::before {
    content: '✓';
    color: #28a745;
        position: absolute;
        left: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.early-bird-offer {
    font-weight: bold;
    color: #dc3545;
    margin: 2rem 0;
    font-size: 1.2rem;
}


.early-bird .email-capture {
    max-width: 500px;
    margin: 0 auto;
}

.early-bird .email-capture input[type="email"] {
    width: 60%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem 0 0 0.25rem;
}

.early-bird .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 0 0.25rem 0.25rem 0;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.early-bird .cta-button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .early-bird .email-capture {
        flex-direction: column;
        align-items: center;
    }

    .early-bird .email-capture input[type="email"],
    .early-bird .cta-button {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
        border-radius: 0.25rem;
    }
}