/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* Base font size for rem units */
html {
    font-size: 16px; /* Base font size */
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --background: #ffffff;
    --card-bg: #f3f4f6;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --alt-bg: #f8fafc;
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 0.3rem; /* Reduced spacing between logo and text */
}

.logo-svg {
    height: 3.168rem; /* Increased by additional 20% from 2.64rem */
    width: auto;
    position: relative;
    top: 2px; /* Move slightly down for better alignment */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.nav-links a:hover {
    color: #2563eb;
    background-color: #f3f4f6;
}

.nav-links li {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    text-align: center;
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    margin-top: 70px; /* Height of your header */
    min-height: calc(50vh - 70px); /* Reduced to half viewport height minus header */
    box-sizing: border-box;
}

/* Product Page Hero */
.product-page .hero {
    min-height: calc(50vh - 70px); /* Half viewport height minus header */
    padding: 2rem 1rem; /* Adjusted padding */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-page .hero .container {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.product-page .hero-content {
    margin: 0 auto;
}

/* For larger screens */
@media (min-width: 768px) {
    .header {
        padding: 0;
    }
    
    .hero {
        padding: 8rem 2rem 4rem;
        margin-top: 0;
        min-height: calc(100vh - 80px);
    }
    
    .hero-content {
        padding-top: 2rem;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    margin-top: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    max-height: 60vh;
    margin: 0 auto;
    display: block;
}

.hero-text {
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hero-text {
        flex: 1;
        text-align: left;
    }
    
    .hero-image {
        flex: 1;
        margin-top: 0;
    }
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 4rem 0 3rem;
    background-color: var(--alt-bg);
}

.features h2,
.product-demo h2,
/* About Us Section */
.about-us {
    padding: 5rem 1rem;
    background-color: var(--alt-bg);
}

.about-us h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
    color: var(--text-primary);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0 0.25rem;
    color: var(--text-primary);
}

.team-member .position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.team-member .description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    font-size: 1rem;
    max-width: 320px;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #f0f7ff;
    color: #0077b5;
    padding: 0.65rem 1.75rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #d0e3ff;
    margin-top: auto;
    font-size: 0.95rem;
}

.linkedin-link:hover {
    background-color: #e1f0ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.15);
}

.linkedin-link svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .team-member {
        width: 100%;
        max-width: 400px;
    }
}

/* Resources Section */
.resources h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.25rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
}

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

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlight-percentage {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Product Demo Section */
.product-demo {
    padding: 3rem 0;
    background-color: var(--background);
}

.youtube-videos {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.youtube-video {
    flex: 1;
    max-width: 560px;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.youtube-video:hover {
    transform: translateY(-5px);
}

.youtube-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .youtube-videos {
        flex-direction: column;
        align-items: center;
    }
}

/* Resources Section */
.resources {
    padding: 4rem 0;
    background-color: var(--alt-bg);
}

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

.resource-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.resource-link:hover {
    background-color: var(--secondary-color);
}

.coming-soon {
    pointer-events: none;
    cursor: default;
    background-color: #cccccc;
    color: #666666;
}

.coming-soon:hover {
    background-color: #cccccc;
}

/* Blog Section */
.blog {
    padding: 8rem 0 4rem; /* Increased top padding to accommodate fixed header */
    background-color: var(--background);
}

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

.blog h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.blog-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    padding: 1.5rem;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-content {
    padding: 0;
}

.blog-content h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.blog-meta {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: var(--secondary-color);
}

/* Blog Post Styles */
.blog-post {
    padding: 8rem 0 4rem; /* Increased top padding to accommodate fixed header */
    background-color: var(--background);
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1; /* Ensure content appears above header */
}

.blog-meta {
    margin: 1rem 0;
    color: var(--text-secondary);
}

.blog-content h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.blog-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.75rem;
}

.comparison-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background-color: #f3f4f6;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .blog-content h2 {
        font-size: 1.5rem;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .blog-content h1 {
        font-size: 2rem;
    }
    
    .blog-content h2 {
        font-size: 1.25rem;
    }
}

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

@media (max-width: 480px) {
    .blog {
        padding: 2rem 0;
    }
    
    .blog-content h2 {
        font-size: 1.25rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 6rem 0;
    background-color: var(--background);
}

.faq-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

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

.faq-item {
    background-color: var(--card-bg);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.faq-toggle.active .arrow {
    transform: rotate(90deg);
}

.arrow {
    font-size: 1rem;
    color: var(--primary-color);
}

.faq-answer {
    margin-top: 1rem;
    display: none;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border-color);
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section h1 {
        font-size: 1.75rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.95));
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(33, 150, 243, 0.1), transparent 50%);
    pointer-events: none;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
}

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

.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.95));
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 400px;
    width: 100%;
}

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

.testimonial-content {
    position: relative;
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.quote-mark {
    font-size: 4rem;
    color: #e0e0e0;
    position: absolute;
    left: -1rem;
    top: -1rem;
    z-index: 1;
}

.testimonial-text p {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    padding-left: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.25rem 0 0;
}

.separator {
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, rgba(33, 150, 243, 0.5), rgba(33, 150, 243, 0.1));
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials h2 {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--card-bg);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    border-radius: 0.5rem;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    color: #6b7280;
}

.close:hover {
    color: #2563eb;
}

.modal h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal .contact-details {
    margin-bottom: 2rem;
}

.modal .contact-details p {
    margin: 1rem 0;
}

.modal .contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal .schedule-button,
.modal .talk-button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modal .schedule-button {
    background-color: var(--primary-color);
    color: white;
}

.modal .schedule-button:hover {
    background-color: var(--secondary-color);
}

.modal .talk-button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.modal .talk-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Chat Widget */
#crate-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 400px;
    height: 600px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

#crate-widget iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    border-radius: 1rem;
}


/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section a {
    display: block;
    margin: 0.5rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

.footer-section p:hover {
    color: var(--text-secondary);
    cursor: default;
}

.footer-section a {
    display: block;
    margin: 0.5rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    margin-top: 3rem;
}

.ownership {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .features-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #4b5563;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dropdown-menu a:hover {
    background-color: #f3f4f6;
    color: var(--primary-color);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Responsive Dropdown Menu */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border-radius: 0;
        background-color: transparent;
    }
    
    .dropdown-menu li {
        padding: 0.5rem 0;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Smooth scrolling for anchor links */
a[href^="#"] {
    scroll-behavior: smooth;
}

/* Product Page Styles */
.product-features {
    padding: 6rem 0;
}

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

.feature-section.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 400px;
}

.feature-image {
    position: relative;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-section .feature-content h2 {
    font-size: 1.4rem; /* Reduced by 30% from typical 2rem */
    margin-bottom: 1rem;
}

.feature-section .feature-content p {
    width: 110%; /* Increased by 10% */
    max-width: 100%;
    margin: 0 auto;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    cursor: pointer;
    padding: 0.6rem;
    z-index: 1001;
    position: relative;
    width: 46px;
    height: 46px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background-color: #f0f4ff;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 2px 0;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: white;
        position: fixed;
        top: 70px; /* Height of your header */
        left: 0;
        right: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
    }
    
    .nav-links a {
        color: var(--text-primary) !important;
        padding: 0.8rem 1.5rem;
    }
    
    .nav-links a:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        width: 100%;
        padding-left: 1rem;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0.5rem 1rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .menu-toggle {
        display: flex !important;
        margin-left: auto; /* Push to the right */
    }
    
    .nav-links {
        top: 76px; /* Slightly below the header */
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: white;
        z-index: 1000;
        height: 70px;
        display: flex;
        align-items: center;
    }
    
    .hero {
        padding: 1.5rem 1rem;
        margin-top: 70px;
        min-height: calc(100vh - 70px);
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        margin-top: 1rem;
    }
    
    .hero-image img {
        max-height: 50vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button, .secondary-button {
        width: 100%;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section h3 {
        margin-top: 1.5rem;
    }
    
    .feature-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .feature-section.reverse {
        grid-template-columns: 1fr;
    }

    .feature-content h2 {
        font-size: 2rem;
    }

    .feature-content p {
        font-size: 1rem;
        max-width: 100%;
    }
}