/* Base Styles */
:root {
    --primary: #64AC49;
    --primary-light: #8BC34A;
    --primary-dark: #558B2F;
    --secondary: #003D62;
    --secondary-light: #0A5483;
    --secondary-dark: #002A45;
    --accent: #FFA000;
    --accent-light: #FFB74D;
    --text-dark: #212121;
    --text-medium: #424242;
    --text-light: #757575;
    --bg-light: #FFFFFF;
    --bg-off-white: #F9FAFB;
    --bg-light-green: #F1F8E9;
    --bg-light-blue: #E1F5FE;
    --border-light: #E0E0E0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lexend Deca', sans-serif;
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lexend Deca', sans-serif;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background-color: var(--bg-light-green);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

/* Button Styles */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    font-family: 'Lexend Deca', sans-serif;
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: #fff;
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: #fff;
}

.btn-light {
    background-color: white;
    color: var(--primary);
    border-color: white;
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list li a {
    color: var(--text-medium);
    font-weight: 500;
    position: relative;
}

.nav-list li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-list li a:not(.btn):hover {
    color: var(--primary);
}

.nav-list li a:not(.btn):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-dark);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: var(--transition);
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

.menu-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    background: linear-gradient(135deg, var(--bg-light-green) 0%, var(--bg-light-blue) 100%);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Lexend Deca', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    position: relative;
}

.dashboard-mockup {
    width: 100%;
    max-width: 600px;
    background-color: #d9c6b8;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.dashboard-header {
    height: 60px;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
}

.dashboard-logo {
    width: 120px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
}

.dashboard-nav {
    width: 200px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
}

.dashboard-content {
    display: flex;
    height: calc(100% - 60px);
}

.dashboard-sidebar {
    width: 80px;
    height: 100%;
    background-color: var(--bg-off-white);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.sidebar-item {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: var(--border-light);
}

.sidebar-item.active {
    background-color: var(--primary);
}

.dashboard-main {
    flex: 1;
    padding: 20px;
}

.dashboard-title {
    height: 30px;
    width: 200px;
    background-color: var(--border-light);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.dashboard-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.dashboard-card {
    flex: 1;
    height: 100px;
    background-color: var(--bg-off-white);
    border-radius: var(--radius-md);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-light-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content {
    flex: 1;
}

.card-title {
    height: 15px;
    width: 80px;
    background-color: var(--border-light);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}

.card-value {
    height: 25px;
    width: 60px;
    background-color: var(--border-light);
    border-radius: var(--radius-sm);
}

.dashboard-table {
    background-color: var(--bg-off-white);
    border-radius: var(--radius-md);
    padding: 15px;
}

.table-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.table-row {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.table-cell {
    flex: 1;
    height: 20px;
    background-color: var(--border-light);
    border-radius: var(--radius-sm);
}

.hero-shape-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.1;
    z-index: 1;
}

.hero-shape-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--secondary);
    opacity: 0.05;
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon .icon-img {
    width: 32px; /* or adjust as needed */
    height: 32px;
}


.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.feature-list li {
    margin-bottom: 0.5rem;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background-color: var(--bg-off-white);
}

.benefits .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.benefits-content {
    flex: 1;
}

.benefits-content .section-header {
    text-align: left;
}

.benefits-list {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.benefit-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 14px;
}

.benefits-image {
    flex: 1;
    position: relative;
}

.benefits-mockup {
    width: 100%;
    position: relative;
    z-index: 2;
}

.benefits-shape {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 60%;
    height: 60%;
    background-color: var(--primary);
    opacity: 0.1;
    border-radius: var(--radius-lg);
    z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-shape-1 {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-shape-2 {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding: 1rem 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 300px;
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    scroll-snap-align: start;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.testimonial-content {
    position: relative;
    margin-bottom: 2rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    flex-shrink: 0;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-medium);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Contact Form Section */
.contact-form {
    padding: 6rem 0;
    background-color: var(--bg-off-white);
}

.form-wrapper {
    display: flex;
    gap: 4rem;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.form-content {
    flex: 1;
    padding: 3rem;
}

.form-content .section-header {
    text-align: left;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(100, 172, 73, 0.2);
}

.form-image {
    flex: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 3rem;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.demo-features {
    position: relative;
    z-index: 2;
}

.demo-features h3 {
    color: white;
    margin-bottom: 2rem;
}

.demo-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-shape {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* Footer */
.footer {
    background-color: var(--secondary-dark);
    color: white;
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-info {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.875rem;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* New Section */

.ns-hero {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--bg-light);
  }
  
  .ns-hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .ns-hero-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
  }
  
  .ns-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .ns-box {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    max-width: 300px;
    text-align: left;
  }
  
  .ns-box ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
  }
  
  .ns-box li {
    margin: 0.5rem 0;
  }
  
  .ns-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 1rem;
  }
  
  .ns-dashboard {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .ns-section-title {
    font-family: 'Lexend Deca', sans-serif;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .ns-section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
  }
  
  .ns-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 3rem;
  }
  
  .ns-feature {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .ns-feature h4 {
    margin: 1rem 0 0.5rem;
  }

  .ns-icon-bg{
    padding: 16px;
    border-radius: 8px;
    background-color: rgb(100, 172, 73, 0.1);
    width: fit-content;
    display: flex;
  }
  
  .ns-testimonial {
    font-style: italic;
    color: var(--text-light);
  }
  
  .ns-customer {
    display: block;
    margin-top: 0.5rem;
    font-weight: bold;
    color: var(--text-dark);
  }

  /* Spinner inside the button */
.spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.hidden {
  display: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Toast message */
.toast-box {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #323232;
  color: white;
  padding: 12px 20px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.toast-box.show {
  opacity: 1;
  pointer-events: auto;
}

.toast-success {
  background-color: #28a745;
}

.toast-error {
  background-color: #dc3545;
}


/* Responsive Styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2,
    .ns-section-title {
        font-size: 2rem;
    }
    
    .hero {
        padding: 8rem 0 5rem;
    }
    
    .hero .container,
    .benefits .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-cta,
    .hero-stats {
        justify-content: center;
    }
    
    .benefits-content .section-header {
        text-align: center;
    }
    
    .form-wrapper {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2,
    .ns-section-title {
        font-size: 1.75rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100% - 2rem);
    }
    
    .form-row {
        flex-direction: column;
        margin-bottom: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2,
    .ns-section-title {
        font-size: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .hero {
        padding: 7rem 0 4rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-content {
        padding: 2rem 1.5rem;
    }
    
    .footer-top {
        padding: 3rem 0 2rem;
    }
}