:root {
    --aws-text: #252f3e;
    --background: #fffbeb;
    --background-card: rgba(217, 119, 6, 0.08);
    --background-pattern: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%23D97706" opacity="0.05"/></svg>');
    --border-color: rgba(217, 119, 6, 0.2);
    --border-light: rgba(217, 119, 6, 0.2);
    --border-radius-lg: 8px;
    --btn-outline-hover-bg: transparent;
    --btn-text: #ffffff;
    --cta-background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(217, 119, 6, 0.2) 100%);
    --feature-border: transparent;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-size-2xl: 24px;
    --font-size-3xl: 28px;
    --font-size-4xl: 36px;
    --font-size-5xl: 42px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-weight-bold: 700;
    --font-weight-medium: 500;
    --line-height-normal: 1.6;
    --line-height-tight: 1.2;
    --primary: #d97706;
    --primary-dark: #b45309;
    --secondary: #4f46e5;
    --shadow: rgba(0, 0, 0, 0.1);
    --slider-dot: #ffffff;
    --spacing-lg: 20px;
    --spacing-sm: 10px;
    --step-number-text: #ffffff;
    --success-bg: rgba(34, 197, 94, 0.1);
    --success-color: #22c55e;
    --text: #1e293b;
    --text-light: #475569;
    --zendesk-logo: #213423;
}

[data-theme="dark"] {
    --aws-text: #ffffff;
    --background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --background-card: #334155;
    --background-pattern: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%2338BDF8" opacity="0.05"/></svg>');
    --border-color: #334155;
    --border-light: #475569;
    --btn-outline-hover-bg: rgba(56, 189, 248, 0.1);
    --btn-text: #1e293b;
    --cta-background: #293548;
    --feature-border: #475569;
    --primary: #38bdf8;
    --primary-dark: #0ea5e9;
    --secondary: #f472b6;
    --shadow: rgba(0, 0, 0, 0.4);
    --slider-dot: #ffffff;
    --step-number-text: #1e293b;
    --success-color: #4ade80;
    --text: #f8fafc;
    --text-light: #cbd5e1;
    --zendesk-logo: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: var(--font);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

body::before {
    background-image: var(--background-pattern);
    content: '';
    height: 100%;
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: background-image 0.3s ease;
    width: 100%;
}

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

header {
    align-items: center;
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px var(--shadow);
    display: flex;
    justify-content: space-between;
    left: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 20px calc(50vw - 50% + 20px);
    position: fixed;
    right: 0;
    top: 0;
    transition: transform 0.2s ease, background 0.3s ease, border-color 0.3s ease;
    width: 100vw;
    z-index: 100;
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

.header-spacer {
    height: 70px;
}

.header-right {
    align-items: center;
    display: flex;
}

.logo {
    align-items: center;
    color: var(--primary);
    display: flex;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
}

.logo a {
    align-items: center;
    color: var(--primary);
    display: flex;
    margin-left: 15px;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--text);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: color 0.15s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

section[id] {
    scroll-margin-top: 80px;
}

.theme-switch-wrapper {
    align-items: center;
    display: flex;
    margin-left: 20px;
    user-select: none;
}

.theme-switch {
    display: inline-block;
    height: 24px;
    position: relative;
    user-select: none;
    width: 48px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: var(--primary);
    border-radius: 34px;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:before {
    background-color: var(--slider-dot);
    border-radius: 50%;
    bottom: 4px;
    content: "";
    height: 16px;
    left: 4px;
    position: absolute;
    transition: .2s;
    width: 16px;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider-icons {
    color: var(--text);
    font-size: 12px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.sun-icon {
    left: 12px;
}

.moon-icon {
    left: 36px;
}

.btn {
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: 0.4s;
    background-color: var(--primary);
    border-radius: 4px;
    color: var(--btn-text);
    display: inline-block;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    margin-right: 10px;
    padding: 12px 24px;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.btn:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--btn-outline-hover-bg);
    box-shadow: 0 4px 12px var(--shadow);
}

.text-link {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.15s ease;
}

.text-link:hover {
    text-decoration: underline;
}

.hero {
    padding: 50px 0;
    text-align: center;
}

.hero h1 {
    animation: fadeIn 0.6s ease-out forwards;
    color: var(--primary);
    font-family: var(--font);
    font-size: var(--font-size-5xl);
    line-height: var(--line-height-tight);
    margin-bottom: 20px;
}

.hero p {
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: 0.2s;
    color: var(--text-light);
    font-size: var(--font-size-xl);
    margin: 0 auto 30px;
    max-width: 700px;
}

.features {
    padding: 40px 0;
}

.features h2 {
    color: var(--text);
    font-family: var(--font);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 40px;
    text-align: center;
}

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

.feature-card {
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: calc(var(--animation-order, 0) * 0.1s);
    background-color: var(--background-card);
    border: 1px solid var(--feature-border);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow);
    opacity: 0;
    padding: 30px;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 20px var(--shadow);
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary);
    font-family: var(--font);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin: 20px 0 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: var(--font-size-base);
}

.feature-icon {
    margin-bottom: 15px;
}

.feature-icon svg {
    fill: var(--primary);
}

.feature-icon svg.no-fill {
    fill: none;
}

.feature-icon svg.no-fill path {
    stroke: var(--primary);
    stroke-width: 2;
}

.how-it-works {
    padding: 40px 0;
    text-align: center;
}

.how-it-works h2 {
    color: var(--text);
    font-family: var(--font);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 40px;
}

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

.step {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    position: relative;
}

.step-number {
    align-items: center;
    background-color: var(--primary);
    border-radius: 50%;
    color: var(--step-number-text);
    display: flex;
    font-weight: var(--font-weight-bold);
    height: 36px;
    justify-content: center;
    margin: 0 auto 15px;
    width: 36px;
}

.step h3 {
    color: var(--text);
    font-family: var(--font);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);
    font-size: var(--font-size-base);
}

.step-arrow {
    color: var(--primary);
    font-size: var(--font-size-2xl);
    margin: 0 -5px;
}

.stats {
    background-color: var(--background-card);
    border-radius: 8px;
    margin: 40px 0;
    padding: 50px 0;
    text-align: center;
}

.stats h2 {
    color: var(--text);
    font-family: var(--font);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.stat-card {
    padding: 20px;
}

.stat-number {
    color: var(--primary);
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-size: var(--font-size-lg);
}

.cta {
    background: var(--cta-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin: 40px 0;
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    color: var(--text);
    font-family: var(--font);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 20px;
}

.cta p {
    color: var(--text-light);
    font-size: var(--font-size-lg);
    margin: 0 auto 30px;
    max-width: 800px;
}

.about-section {
    padding: 40px 0;
}

.about-section h2 {
    color: var(--primary);
    font-family: var(--font);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 30px;
}

.about-grid {
    align-items: center;
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: calc(var(--animation-order, 0) * 0.1s);
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
    opacity: 0;
}

.about-content {
    padding-right: 20px;
}

.about-content p {
    color: var(--text);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    margin-bottom: 20px;
}

.about-image {
    align-items: center;
    background-color: var(--background-card);
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    color: var(--text-light);
    display: flex;
    font-size: var(--font-size-lg);
    height: 300px;
    justify-content: center;
    overflow: hidden;
}

.about-grid:first-child .about-image {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.about-image > div {
    text-align: center;
}

.about-image img,
.about-image svg {
    height: auto;
    max-width: 100%;
}

.about-image svg .aws .aws-text {
    fill: var(--aws-text);
}

.about-image svg .zendesk {
    fill: var(--zendesk-logo);
}

.team-section {
    background-color: var(--background-card);
    border-radius: 8px;
    margin-bottom: 40px;
    padding: 40px 0;
}

.team-section h2 {
    color: var(--primary);
    font-family: var(--font);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 40px;
    text-align: center;
}

.team-section .about-content {
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
}

.support-options {
    padding: 40px 0;
}

.support-options h2 {
    color: var(--primary);
    font-family: var(--font);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 40px;
    text-align: center;
}

.support-card {
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: calc(var(--animation-order, 0) * 0.1s);
    background: var(--background-card);
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 30px;
    opacity: 0;
    padding: 40px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.support-card:hover {
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateY(-5px);
}

.support-card h3 {
    color: var(--primary);
    font-family: var(--font);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 20px;
}

.support-card p {
    color: var(--text);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    margin-bottom: 20px;
}

.support-card ul {
    color: var(--text);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    margin-bottom: 20px;
    margin-left: 20px;
}

.support-card li {
    margin-bottom: 10px;
}

.testimonials {
    background-color: var(--background-card);
    border-radius: 8px;
    margin-bottom: 40px;
    padding: 40px 0;
}

.testimonials h2 {
    color: var(--primary);
    font-family: var(--font);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 40px;
    text-align: center;
}

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

.testimonial-card {
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: calc(var(--animation-order, 0) * 0.1s);
    background: var(--background-card);
    border-radius: 8px;
    box-shadow: 0 4px 10px var(--shadow);
    opacity: 0;
    padding: 30px;
}

.testimonial-text {
    color: var(--text);
    font-size: var(--font-size-base);
    font-style: italic;
    line-height: var(--line-height-normal);
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--text);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
}

.testimonial-company {
    color: var(--text-light);
    font-size: var(--font-size-base);
}

.contact-form {
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: 0.3s;
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    margin: 0 auto 40px;
    max-width: 600px;
    opacity: 0;
    padding: 40px;
}

.contact-form h2 {
    color: var(--text);
    font-family: var(--font);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: var(--text);
    display: block;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font);
    font-size: var(--font-size-base);
    padding: 12px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    width: 100%;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
}

.form-group select option {
    background: var(--background);
    color: var(--text);
}

.form-submit {
    background-color: var(--primary);
    border: none;
    border-radius: 4px;
    color: var(--btn-text);
    cursor: pointer;
    font-family: var(--font);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    padding: 12px 24px;
    transition: background-color 0.15s ease;
    width: 100%;
}

.form-submit:hover {
    background-color: var(--primary-dark);
}

.form-message {
    border-radius: 4px;
    font-weight: var(--font-weight-medium);
    margin-top: 20px;
    padding: 15px;
    text-align: center;
}

.form-message.success {
    background-color: var(--success-bg);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

footer {
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: var(--font-size-base);
    padding: 30px 0;
    text-align: center;
}

footer a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.15s ease;
}

footer a:hover {
    text-decoration: underline;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    height: 48px;
    outline: none;
    padding: var(--spacing-sm);
    position: fixed;
    right: 15px;
    top: 15px;
    transition: all 0.3s ease;
    width: 48px;
    z-index: 1002;
}

.mobile-menu-toggle:focus {
    box-shadow: 0 0 0 2px var(--primary);
}

.mobile-menu-toggle .hamburger {
    display: flex;
    flex-direction: column;
    height: 18px;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
    width: 24px;
}

.mobile-menu-toggle .hamburger .line {
    background-color: var(--primary);
    border-radius: var(--border-radius-sm);
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    transition: all 0.3s ease;
    width: 100%;
}

.mobile-menu-toggle .hamburger .line-1 {
    top: 0;
}

.mobile-menu-toggle .hamburger .line-2 {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle .hamburger .line-3 {
    bottom: 0;
}

.hamburger.active .line-1 {
    top: 8px;
    transform: rotate(45deg);
}

.hamburger.active .line-2 {
    opacity: 0;
}

.hamburger.active .line-3 {
    bottom: 7px;
    transform: rotate(-45deg);
}

.nav-mobile-container {
    background: var(--background);
    bottom: 0;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    z-index: 1001;
}

.nav-mobile-container.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile {
    background-color: var(--background);
    box-shadow: -5px 0 15px var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 320px;
    overflow-y: auto;
    padding: 20px;
    padding-top: 60px;
    position: fixed;
    right: -320px;
    top: 0;
    transition: transform 0.3s ease;
    width: 85%;
    z-index: 1001;
}

.nav-mobile.active {
    transform: translateX(-320px);
}

.mobile-menu-header {
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    margin-bottom: 20px;
    padding: 20px 0;
}

.mobile-menu-header .logo {
    font-size: var(--font-size-xl);
    margin: 0;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-mobile li {
    margin: 0;
    opacity: 0;
    padding: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-mobile.active ul li {
    opacity: 1;
    transform: translateX(0);
}

.nav-mobile.active ul li:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile.active ul li:nth-child(2) { transition-delay: 0.15s; }
.nav-mobile.active ul li:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile.active ul li:nth-child(4) { transition-delay: 0.25s; }
.nav-mobile.active ul li:nth-child(5) { transition-delay: 0.3s; }

.nav-mobile li a {
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
    display: block;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    padding: 15px 0;
    text-decoration: none;
    transition: color 0.15s ease;
}

.nav-mobile li a:hover,
.nav-mobile li a:focus {
    color: var(--primary);
}

.nav-mobile li:last-child a {
    border-bottom: none;
}

.mobile-theme-switch-wrapper {
    align-items: center;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding: 20px 0;
}

.mobile-theme-switch-wrapper::before {
    color: var(--text);
    content: 'Switch Theme:';
    font-weight: var(--font-weight-medium);
}

@media (max-width: 768px) {
    body {
        padding: 0 15px;
    }

    header {
        align-items: center;
        display: flex;
        justify-content: center;
        padding: 15px 0;
        position: fixed;
    }

    header .header-container {
        display: flex;
        justify-content: center;
        position: relative;
        width: 100%;
    }

    .logo {
        margin: 0 auto;
        text-align: center;
    }

    .header-right {
        display: none;
    }

    .mobile-menu-toggle {
        align-items: center;
        display: flex !important;
        justify-content: center;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
    }

    .hero h1 {
        font-size: var(--font-size-3xl);
        padding: 0 10px;
    }

    .hero p {
        font-size: var(--font-size-base);
        padding: 0 15px;
    }

    .btn {
        display: block;
        margin: 15px auto;
        max-width: 250px;
        text-align: center;
    }

    section h2 {
        font-size: var(--font-size-2xl) !important;
        margin-bottom: 20px !important;
    }

    .feature-grid,
    .stats-grid,
    .testimonial-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        flex-direction: column;
    }

    .step {
        margin-bottom: 30px;
        padding: 10px;
        width: 100%;
    }

    .step-arrow {
        margin: 0 0 10px 0;
        transform: rotate(90deg);
    }

    .cta {
        padding: 40px 15px;
    }

    .cta h2 {
        font-size: var(--font-size-2xl);
    }

    .cta p {
        font-size: var(--font-size-base);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        order: 2;
        padding-right: 0;
    }

    .about-image {
        height: auto;
        margin-bottom: 30px;
        order: 1;
        padding: 20px 0;
    }

    .testimonials {
        padding: 30px 15px;
    }

    .testimonials h2 {
        font-size: var(--font-size-2xl) !important;
        margin-bottom: 25px !important;
    }

    .testimonial-grid {
        gap: 20px;
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .timeline-item {
        padding-left: 70px;
        padding-right: 25px;
        width: 100%;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::after {
        left: 21px;
        right: auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: var(--font-size-2xl);
    }

    nav ul {
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

    nav ul li {
        margin: 5px 0;
    }

    .feature-card,
    .support-card,
    .testimonial-card {
        padding: 20px 15px;
    }

    .feature-card h3 {
        font-size: var(--font-size-xl);
        margin: 10px 0 5px;
    }

    .feature-icon svg {
        height: 36px;
        width: 36px;
    }

    .support-card h3 {
        font-size: var(--font-size-xl);
    }

    .stat-number {
        font-size: var(--font-size-3xl);
    }

    .stat-label {
        font-size: var(--font-size-base);
    }
}

[data-theme="dark"] .cta {
    border-color: transparent;
}

[data-theme="dark"] header::before {
    background-color: var(--background);
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}