:root {
/* Updated color palette to match the new logo */
--primary-color: #ff6000;           /* Bright orange from logo */
--primary-dark: #e05000;            /* Darker orange for hover */
--secondary-color: #4EACAA;         /* Teal color from logo */
--secondary-dark: #3E8A88;          /* Darker teal for hover */
--background-color: #f8f8f2;        /* Light cream background like the logo background */
--dark-gray: #222222;               /* Dark gray/black from logo text */
--light-gray: #f0f0ea;              /* Lighter background for sections */
--text-color: #333333;              /* Text color for better readability */
--success-color: #38a169;           /* Updated success color */
--highlight-color: #f6ad55;         /* Softer highlight color */
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
padding-top: 120px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--background-color);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

a {
text-decoration: none;
color: var(--primary-color);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* Header */
header {
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
background: linear-gradient(
to bottom,
rgba(255, 255, 255, 0.98) 0%,
rgb(247 247 247 / 95%) 100%
);
transition: all 0.3s ease;
backdrop-filter: blur(8px);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
padding: 10px 0;
}

header.scrolled {
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
padding: 5px 0;
}

.navbar {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
display: flex;
align-items: center;
font-size: 1.5rem;
font-weight: 600;
}
.logo span {
display: inline-block;
}

/* Responsive styles for the header */
@media (max-width: 768px) {
.logo span {
display: none; /* Hide the text logo on mobile */
}

.logo-image {
width: 70px; /* Slightly smaller logo on mobile */
height: 70px;
margin-right: 0;
}

.cta-button {
margin-left: 10px; /* Add margin to the left of the button */
font-size: 0.8rem; /* Slightly smaller text */

padding: 8px 15px; /* Slightly smaller padding */
}

.navbar {
justify-content: space-between; /* Ensure space between logo and button */
}
   /* 2. Hide the regular nav links */
    .nav-links {
        display: none; /* Hide links by default on small screens */
        position: absolute; /* Position it below the header */
        top: 100%; /* Start right below the header */
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98); /* Match header background */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column; /* Stack links vertically */
        align-items: center; /* Center links */
        padding: 20px 0; /* Add padding */
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 999; /* Ensure it's above other content if needed */
    }

    /* 3. Style links inside the mobile menu */
    .nav-links a {
        margin: 10px 0; /* Add vertical spacing */
        padding: 10px 20px; /* Make links easier to tap */
        width: 80%; /* Control link width */
        text-align: center;
        border-radius: 4px;
    }
     .nav-links a:hover {
         background-color: var(--light-gray); /* Add hover effect */
         color: var(--primary-dark);
     }


    /* 4. Show the hamburger button */
    .hamburger-menu {
        display: block; /* Show hamburger on small screens */
    }

    /* 5. Make nav links visible when active */
    .nav-links.active {
        display: flex; /* Show the menu when .active class is present */
    }

    /* Optional: Hide the text logo on mobile if needed */
    .logo span {
        display: none;
    }

    /* Ensure navbar has relative positioning for absolute child */
    .navbar {
        position: relative; /* Needed for .nav-links absolute positioning */
        /* You might need to adjust padding/height if content shifts */
    }

    /* Optional: Adjust CTA button margin if needed */
    .cta-button {
         /* Keep it visible, or hide/move it if preferred */
         /* Example: Hide it if it clutters too much */
         /* display: none; */
         /* Or make it smaller */
          padding: 8px 12px;
          font-size: 0.8rem;
    }
}

/* For even smaller screens */
@media (max-width: 480px) {
.navbar {
padding: 0 10px; /* Add some padding inside the navbar */
}

.cta-button {
margin-left: 15px; /* More margin on very small screens */
}
}
.logo-image {
width: 100px;
height: 100px;
margin-right: 10px;
}

.cta-button {
background: var(--primary-color);
color: white;
padding: 10px 20px;
border-radius: 4px;
font-weight: 600;
text-align: center;
transition: all 0.2s ease;
display: inline-block;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
text-transform: uppercase;
font-size: 0.9rem;
letter-spacing: 0.5px;
}

.cta-button:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
color: white; 
padding: 80px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.hero-logo {
width: 230px;
height: 230px;
margin: 0 auto 30px;
display: block;
filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
transition: transform 0.3s ease;
}

.hero-logo:hover {
transform: scale(1.05);
}

.hero h1 {
font-size: 2.2rem;
margin-bottom: 20px;
font-weight: 800;
color: white; 
}

.hero p {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.9);
max-width: 700px;
margin: 0 auto 40px;
}

.devices {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 30px;
}

.device-button {
display: none;
align-items: center;
background-color: white;
color: var(--dark-gray);
padding: 12px 20px;
border-radius: 4px;
font-weight: 600;
transition: all 0.2s ease;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
font-size: 1.1rem;
border: 1px solid #eee;
}

.device-button.chrome,
.device-button.firefox {
background: var(--primary-color);
color: white;
}

.device-button:hover {
transform: translateY(-2px);
background: var(--primary-dark);
color: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.device-button i {
margin-right: 8px;
}

.rating {
margin-top: 20px;
}

.rating i {
color: var(--primary-color);
margin: 0 2px;
text-shadow: 0px 0px 3px white, 0px 0px 5px white;
}

/* Tech pattern for background */
.tech-bg {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background-image: 
    radial-gradient(circle at 20% 80%, rgba(78, 172, 170, 0.05) 0%, transparent 15%),
    radial-gradient(circle at 80% 20%, rgba(255, 96, 0, 0.05) 0%, transparent 15%);
opacity: 0.6;
z-index: 0;
}

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

/* Features Section */
.features {
background-color: white;
padding: 60px 0;
}

.section-title {
text-align: center;
margin-bottom: 50px;
}

.section-title h2 {
font-size: 1.8rem;
margin-bottom: 15px;
position: relative;
display: inline-block;
font-weight: 700;
color: var(--dark-gray);
}

.section-title h2:after {
content: '';
position: absolute;
bottom: -8px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background-color: var(--primary-color);
}

.section-title p {
color: #666;
max-width: 700px;
margin: 0 auto;
}

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

.feature-card {
background-color: #f0f0ea45;
border-radius: 8px;
padding: 25px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
transition: all 0.3s ease;
border-top: 3px solid transparent;
position: relative;
overflow: hidden;
text-align: center;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
border-top: 3px solid var(--primary-color);
}

.feature-icon {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 15px;
transition: transform 0.3s ease;
}

.feature-card:nth-child(even) .feature-icon {
color: var(--secondary-color);
}

.feature-card:hover .feature-icon {
transform: scale(1.1);
}
/* Demo Videos Section */
.demo-videos {
padding: 60px 0;
background-color: var(--light-gray);
}

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

.video-card {
width: 100%;
max-width: 560px;
background-color: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}

.video-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
position: relative;
padding-top: 56.25%; 
overflow: hidden;
}

.video-wrapper video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
border-bottom: 1px solid #eee;
}

.video-info {
text-align: center;
padding: 20px;
}

.video-info h3 {
font-size: 1.2rem;
margin-bottom: 10px;
color: var(--dark-gray);
}

.video-info p {
color: #666;
margin-bottom: 15px;
}

.video-badge {
display: inline-block;
padding: 5px 12px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
margin-right: 10px;
margin-bottom: 5px;
}

.video-badge.chrome {
background-color: #e8f0fe;
color: #1a73e8;
}

.video-badge.firefox {
background-color: #ffebee;
color: #e53935;
}

.video-badge.car {
background-color: #e0f2f1;
color: var(--secondary-color);
}

.video-badge.moto {
background-color: #fff3e0;
color: var(--primary-color);
}
/* Screenshots Section */
.screenshots {
padding: 60px 0;
background-color: var(--background-color);
}

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

.screenshot-item {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
position: relative;
border: 1px solid #edf2f7;
transition: transform 0.3s ease, box-shadow 0.3s ease;
background-color: white;
}

.screenshot-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.screenshot-item img {
width: 100%;
height: auto;
display: block;
transition: all 0.3s ease;
}

.screenshot-item:hover img {
transform: scale(1.03);
}

/* Testimonials */
.testimonials {
background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
color: white;
padding: 60px 0;
position: relative;
overflow: hidden;
}

.testimonials:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: 
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
background-size: 20px 20px;
opacity: 0.3;
}

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

.testimonials .section-title h2 {
color: white;
}

.testimonials .section-title p {
color: rgba(255, 255, 255, 0.8);
}

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

.testimonial-card {
background-color: rgba(255, 255, 255, 0.1);
border-radius: 8px;
padding: 25px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
border-left: 3px solid white;
transition: all 0.3s ease;
}

.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
font-style: italic;
margin-bottom: 20px;
}

.testimonial-author {
font-weight: bold;
color: white;
}

/* FAQ Section */
.faq {
padding: 60px 0;
background-color: white;
}

.faq-list {
max-width: 800px;
margin: 0 auto;
}

.faq-item {
margin-bottom: 20px;
border-bottom: 1px solid #eee;
padding-bottom: 20px;
transition: all 0.3s ease;
}

.faq-item:hover {
transform: translateX(5px);
}

.faq-question {
font-weight: bold;
margin-bottom: 10px;
font-size: 1.1rem;
color: var(--primary-color);
display: flex;
align-items: center;
}

.faq-answer {
color: #666;
}

/* Newsletter */
.newsletter {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
color: white;
padding: 50px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.newsletter-form {
display: flex;
max-width: 500px;
margin: 20px auto 0;
}

.newsletter-form input {
flex: 1;
padding: 12px 15px;
border: none;
border-radius: 4px 0 0 4px;
font-size: 0.95rem;
}

.newsletter-form button {
background-color: var(--secondary-color);
color: white;
border: none;
height: 50px;
padding: 0 20px;
border-radius: 0 4px 4px 0;
cursor: pointer;
font-weight: 600;
transition: all 0.2s ease;
}

.newsletter-form button:hover {
background-color: var(--secondary-dark);
}

/* Footer Styling */
footer {
    background-color: var(--dark-gray);
    color: #ccc; /* Lighter text color for footer */
    padding: 50px 0 30px 0; /* Adjusted padding */
    text-align: center;
}

.footer-columns {
    display: flex;
    justify-content: space-around; /* Distribute columns evenly */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 30px; /* Add space between columns */
    margin-bottom: 40px; /* Space below the columns */
    text-align: left; /* Align text left within columns */
}

.footer-column {
    flex: 1; /* Allow columns to grow */
    min-width: 180px; /* Minimum width before wrapping */
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #555; /* Subtle separator line */
}

.footer-column ul {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px; /* Space between links */
}

.footer-column ul li a {
    color: #ccc; /* Link color */
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color); /* Link hover color */
}

.footer-social {
    margin-bottom: 25px; /* Space below social icons */
}

.footer-social a {
    color: #e2e8f0;
    margin: 0 12px; /* Increased spacing */
    font-size: 1.5rem; /* Slightly larger icons */
    transition: all 0.2s ease;
    display: inline-block; /* Needed for transform */
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 20px; /* Space above copyright */
    font-size: 0.9rem;
    color: #aaa; /* Muted color for copyright */
}

/* Ensure Font Awesome is loaded if icons don't show */
/* Add this if you don't have it already */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Responsiveness */
@media (max-width: 768px) {
.hero h1 {
    font-size: 1.8rem;
}

.devices {
    flex-direction: column;
    align-items: center;
}

.screenshot-gallery {
    grid-template-columns: 1fr;
}

.newsletter-form {
    flex-direction: column;
}

.newsletter-form input {
    border-radius: 4px;
    margin-bottom: 10px;
}

.newsletter-form button {
    border-radius: 4px;
}
}
.contact {
padding: 60px 0;
background-color: white;
}

.contact-form-container {
max-width: 700px;
margin: 0 auto;
}

.contact-form {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}

.form-group {
margin-bottom: 20px;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 12px 15px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
}

.form-group:nth-child(3),
.form-group:nth-child(4) {
grid-column: span 2;
}

.contact-form label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: var(--dark-gray);
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px 15px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 0.95rem;
transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 2px rgba(255, 96, 0, 0.1);
outline: none;
}

.submit-button {
background: var(--primary-color);
color: white;
padding: 12px 25px;
border: none;
border-radius: 4px;
font-weight: 600;
cursor: pointer;
font-size: 1rem;
transition: all 0.2s ease;
grid-column: span 2;
justify-self: center;
}

.submit-button:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 768px) {
.contact-form {
    grid-template-columns: 1fr;
}

.form-group:nth-child(3),
.form-group:nth-child(4) {
    grid-column: span 1;
}

.submit-button {
    grid-column: span 1;
    width: 100%;
}
}
/* New Features Banner */
.new-features-banner {
    background: linear-gradient(90deg, #2c3e50, #4a90e2);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    position: relative;
    z-index: 10;
}

.new-features-banner .learn-more {
    color: white;
    margin-left: 15px;
    font-size: 0.9em;
    text-decoration: underline;
}

/* New Badge */
.new-badge {
    background-color: #ff6b6b;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: bold;
    margin-right: 8px;
    display: inline-block;
}

.new-badge.pulse {
    animation: pulse 2s infinite;
}

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

/* New Features Section */
.new-features {
    background-color: #f9f9f9;
    padding: 60px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.new-feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.new-features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.new-feature-card .feature-icon {
    position: relative;
    margin-bottom: 20px;
}

.new-feature-card .feature-icon i {
    font-size: 3rem;
    color: #4a90e2;
}

.new-feature-card .feature-icon .new-badge {
    position: absolute;
    top: -10px;
    right: -10px;
}

.feature-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background-color: #4a90e2;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.feature-cta:hover {
    background-color: #3476c5;
}

/* Hero Highlights */
.hero-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 25px;
}

.highlight {
    display: flex;
    align-items: center;
    color: white;
}

.highlight i {
    color: #4CAF50;
    margin-right: 8px;
}

/* Email Feature Demo */
.email-demo {
    position: relative;
    margin: 50px auto;
    max-width: 800px;
}

.email-preview {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.email-preview img {
    width: 100%;
    display: block;
}

/* Platform Support Section Styles */
.platforms-support {
    background-color: #f7f9fc;
    padding: 70px 0;
}

.platform-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}

.platform-icon {
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    padding: 15px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 120px;
}

.platform-icon:hover {
    transform: translateY(-5px);
}

.platform-icon.featured {
    border: 2px solid #4a90e2;
}

.platform-icon img {
    max-width: 80px;
    height: 70px;
    object-fit: contain;
}

.platform-icon span {
    display: block;
    font-weight: 500;
    font-size: 14px;
}

.new-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b6b;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 10px;
}

.platforms-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.platform-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.benefit {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 20px;
}

.benefit i {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 15px;
}

.benefit h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.platform-cta-button {
    display: inline-block;
    background: #4a90e2;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.platform-cta-button:hover {
    background: #3476c5;
    transform: scale(1.05);
}

/* Email Feature Section Styles */
.email-feature {
    padding: 70px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
}

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

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

.email-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.email-benefit {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.email-benefit i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.email-benefit h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.email-demo {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.email-preview {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border: 1px solid #ddd;
    position: relative;
}

.email-preview img {
    width: 100%;
    display: block;
}

.demo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    padding: 10px;
    text-align: center;
}

.demo-label {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.email-cta {
    margin-top: 30px;
    text-align: center;
}

.email-cta p {
    margin-bottom: 20px;
    font-size: 18px;
}

.email-cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.email-cta-button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .email-feature-content {
        flex-direction: column-reverse;
    }
    
   .platform-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    padding: 50px;
    padding-top: 0px;
    justify-items: center;
    align-items: center;
  }
    
    .platform-icon {
        width: 100px;
    }
    
    .platform-icon img {
        max-width: 60px;
        height: 45px;
    }
    
    .email-benefits {
        grid-template-columns: 1fr;
    }
}
.nav-links a {
  color: var(--text-color); /* Or var(--dark-gray) */
  margin: 0 15px;         /* Adjust spacing as needed */
  font-weight: 600; 
  text-decoration: none;  /* Already set globally, but good practice here */
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary-color); /* Change color on hover */
}
/* Limited Time Offer Section */
.limited-offer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%); /* Use theme gradient */
  color: white;
  padding: 60px 0;
  text-align: center;
}

.offer-content {
  max-width: 800px; /* Limit content width */
  margin: 0 auto;
  padding: 0 20px; /* Add padding for smaller screens */
}

.offer-badge {
  display: inline-block; /* Allow margin and padding */
  background-color: rgba(255, 255, 255, 0.15); /* Subtle background */
  border: 1px solid rgba(255, 255, 255, 0.5); /* Light border */
  color: white;
  padding: 6px 15px;
  border-radius: 15px; /* Rounded corners */
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px; /* Space below the badge */
}

.limited-offer h2 {
  font-size: 2rem; /* Make heading larger */
  margin-bottom: 15px;
  font-weight: 700;
  color: white; /* Ensure white color */
}

.limited-offer p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9; /* Slightly less emphasis than heading */
}

.offer-cta-button {
  display: inline-block; /* Treat as block but inline */
  background-color: white; /* White button stands out */
  color: var(--primary-color); /* Use primary color for text */
  padding: 12px 35px; /* Generous padding */
  border-radius: 4px;
  font-weight: bold; /* Bold text */
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow */
  border: none; /* Ensure no default border */
}

.offer-cta-button:hover {
  background-color: var(--light-gray); /* Slight change on hover */
  color: var(--primary-dark);
  transform: translateY(-2px); /* Lift effect */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Increase shadow */
}

/* Hide hamburger button by default (desktop) */
.hamburger-menu {
    display: none; /* Hidden on large screens */
    background: none;
    border: none;
    font-size: 1.8rem; /* Adjust size as needed */
    color: var(--dark-gray); /* Or your preferred icon color */
    cursor: pointer;
    padding: 5px; /* Add some clickable area */
    margin-left: 15px; /* Space it from the CTA button */
}
