/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #A4D65E;
    --primary-red: #FF3838;
    --primary-orange: #FFB74D;
    --text-dark: #1d1d1f;
    --text-gray: #6e6e73;
    --bg-light: #fbfbfd;
    --bg-cream: #f5f5f7;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    display: block;
    height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-green);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 0;
    text-align: center;
}

.hero-logo {
    height: 200px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #8fc547;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--text-dark);
    color: var(--white);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background-color: #000000;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Problem Section */
.problem-section {
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background-color: var(--bg-cream);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

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

.stat-icon {
    font-size: 32px;
    margin-bottom: 20px;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #FF3838 0%, #D32F2F 100%);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 56, 56, 0.3);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(255, 56, 56, 0.5);
}

.stat-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.stat-card p {
    color: var(--text-gray);
    font-size: 16px;
}

.survey-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    color: var(--white);
    text-align: center;
}

.survey-question {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

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

.survey-result span {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.survey-result span i {
    font-size: 28px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.survey-yes i {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.survey-no i {
    background: linear-gradient(135deg, #f44336 0%, #D32F2F 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
}

.survey-maybe i {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
}

.survey-result span:hover i {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.survey-note {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 20px;
}

.survey-intro {
    font-size: 18px;
    margin-bottom: 10px;
}

.survey-bars {
    margin: 30px 0;
}

.survey-bar-item {
    margin-bottom: 20px;
}

.survey-bar-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 10px;
}

.survey-bar-label span {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}

.survey-bar-label strong {
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.survey-bar-track {
    width: 100%;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.survey-bar-fill {
    height: 100%;
    border-radius: 16px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.survey-bar-yes {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

.survey-bar-maybe {
    background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
}

.survey-bar-no {
    background: linear-gradient(135deg, #f44336 0%, #EF5350 100%);
}

.survey-conclusion {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Solution Section */
.solution-section {
    background-color: var(--bg-cream);
}

.comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.comparison-column h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.comparison-column ul {
    list-style: none;
    margin-bottom: 20px;
}

.comparison-column li {
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--bg-cream);
}

.comparison-column li:last-child {
    border-bottom: none;
}

.without li::before {
    content: "❌ ";
    margin-right: 10px;
}

.with {
    background: linear-gradient(135deg, #f5f7fa 0%, #e3ffe7 100%);
}

.with li::before {
    content: "✅ ";
    margin-right: 10px;
}

.boost-badge {
    background-color: var(--primary-green);
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}

/* How It Works */
.how-it-works {
    background-color: var(--white);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 0 0 160px;
    text-align: center;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #A4D65E 0%, #7CB342 100%);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(164, 214, 94, 0.35);
}

.step:hover .step-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(164, 214, 94, 0.5);
}

.step h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.step p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.step-connector {
    font-size: 24px;
    color: var(--primary-green);
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

/* Features Section */
.features-section {
    background-color: var(--bg-cream);
}

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

.feature-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

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

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #FFB74D 0%, #FF9800 100%);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 183, 77, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 183, 77, 0.5);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--text-dark);
}

.cta-section .btn-primary:hover {
    background-color: var(--bg-cream);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-top {
    text-align: center;
    margin-bottom: 50px;
}

.footer-brand {
    display: inline-block;
}

.footer-logo {
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand p {
    font-size: 18px;
    opacity: 0.9;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 14px;
}

/* Why Us Page Styles */
.hero-small {
    padding: 80px 0;
}

.hero-small h1 {
    font-size: 48px;
}

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

.benefit-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 20px;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #A4D65E 0%, #7CB342 100%);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(164, 214, 94, 0.3);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(164, 214, 94, 0.5);
    background: linear-gradient(135deg, #7CB342 0%, #A4D65E 100%);
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

.vendor-benefits {
    background-color: var(--bg-cream);
}

.differentiators {
    background-color: var(--white);
}

.differentiator-list {
    max-width: 900px;
    margin: 0 auto;
}

.differentiator-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--bg-cream);
    border-radius: 20px;
}

.diff-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    flex-shrink: 0;
}

.diff-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.diff-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

.proof-section {
    background-color: var(--bg-cream);
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-showcase-item {
    text-align: center;
    padding: 40px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.stat-large {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.stat-showcase-item p {
    font-size: 18px;
    color: var(--text-gray);
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item-content p,
.contact-item-content a {
    color: var(--text-gray);
    text-decoration: none;
}

.contact-item-content a:hover {
    color: var(--primary-green);
}

.form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--bg-cream);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-gray);
    text-align: center;
}

.business-hours {
    margin-top: 30px;
    padding: 25px;
    background-color: var(--bg-cream);
    border-radius: 15px;
}

.business-hours h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.business-hours p {
    color: var(--text-gray);
    line-height: 1.8;
}

.info-section {
    background-color: var(--bg-cream);
}

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

.info-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

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

.info-icon {
    font-size: 32px;
    margin-bottom: 20px;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.info-card:hover .info-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

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

.form-submit {
    width: 100%;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content strong {
    color: var(--text-dark);
}

.legal-updated {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid var(--bg-cream);
    }

    .nav-menu a {
        font-size: 18px;
        display: block;
        padding: 10px 20px;
        min-height: 44px;
        line-height: 24px;
    }

    /* Logo sizes */
    .logo img {
        height: 50px;
    }

    .hero-logo {
        height: 150px;
    }

    /* Hero sections */
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-small {
        padding: 50px 0;
    }

    .hero-small h1 {
        font-size: 32px;
    }

    /* Section adjustments */
    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 32px;
    }

    .section-intro {
        font-size: 18px;
    }

    /* Better touch targets for buttons */
    .btn {
        padding: 16px 40px;
        font-size: 18px;
        min-height: 48px;
    }

    /* Content adjustments */
    .content-block p {
        font-size: 17px;
    }

    /* Timeline layout for mobile */
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-width: 450px;
        margin: 0 auto;
        padding: 0 10px;
    }

    .step {
        display: block;
        text-align: center;
        width: 100%;
        padding: 20px 0;
    }

    .step-icon {
        font-size: 28px;
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .step h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .step p {
        font-size: 15px;
        line-height: 1.6;
        color: var(--text-gray);
    }

    .step-connector {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        transform: rotate(90deg);
        margin: 10px 0;
    }

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

    .survey-result {
        flex-direction: column;
        gap: 15px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legal-content {
        padding: 40px 30px;
    }

    .differentiator-item {
        flex-direction: column;
        gap: 20px;
    }

    /* Form improvements for mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    /* Logo sizes */
    .logo img {
        height: 45px;
    }

    .hero-logo {
        height: 120px;
    }

    /* Hero sections */
    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-small h1 {
        font-size: 26px;
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }

    .section h2 {
        font-size: 28px;
    }

    .section-intro {
        font-size: 16px;
    }

    /* Buttons */
    .btn {
        padding: 14px 32px;
        font-size: 17px;
        min-height: 48px;
    }

    /* Content */
    .content-block p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    /* Benefit cards */
    .benefit-icon {
        font-size: 40px;
    }

    /* Footer adjustments */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-grid {
        gap: 30px;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .section h2 {
        font-size: 24px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 16px;
    }
}

/* About Page Content Blocks */
.content-block {
    max-width: 900px;
    margin: 0 auto;
}

/* Vision Cards */
.vision-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vision-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.vision-card-icon {
    font-size: 38px;
    margin-bottom: 20px;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #FFB74D 0%, #FF9800 100%);
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 183, 77, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vision-card:hover .vision-card-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(255, 183, 77, 0.5);
}

.vision-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.vision-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

.content-block p {
    font-size: 18px;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 28px;
}

.content-block strong {
    color: var(--text-dark);
    font-weight: 600;
}

.vision-section,
.founder-section {
    background-color: var(--bg-cream);
}

.promise-section {
    background-color: var(--white);
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 20px;
}
