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

:root {
    --primary-blue: #2563eb;
    --primary-green: #10b981;
    --dark-blue: #1e40af;
    --light-blue: #dbeafe;
    --dark-green: #059669;
    --light-green: #d1fae5;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
nav {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo img {
    height: 80px;
    width: auto;
    flex-shrink: 0;
}

.logo svg {
    flex-shrink: 0;
}

.logo span {
    line-height: 1.2;
}

.nav-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Hero Section */
.hero-background {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(16, 185, 129, 0.85) 100%), url('images/img2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-background h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-background .tagline {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-background .subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-image {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.floating-image {
    max-width: 350px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.floating-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    font-family: inherit;
}

.cta-primary {
    background: var(--white);
    color: var(--primary-blue);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-blue), var(--light-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.benefit-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Solutions Section */
.solutions {
    background: var(--bg-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.solution-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.solution-item h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.solution-item p {
    color: var(--text-light);
}

/* Founder Message */
.founder-message {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 4rem auto;
    max-width: 900px;
}

.founder-message h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.founder-message p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.founder-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
}

/* Why Choose Us */
.why-choose {
    background: var(--bg-light);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item p {
    color: var(--text-dark);
    font-weight: 500;
}

/* Pricing Table */
.pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-blue);
}

.pricing-card.featured {
    border-color: var(--primary-green);
    background: linear-gradient(180deg, var(--white) 0%, var(--light-green) 100%);
}

.pricing-tier {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-tier {
    color: var(--primary-green);
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1rem 0;
}

.pricing-amount span {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-blue);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-select {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    transition: transform 0.2s;
}

.pricing-select:hover {
    transform: scale(1.05);
}

.remote-support {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.remote-support h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.remote-support p {
    color: var(--text-dark);
    font-weight: 600;
}

/* Support Section Styles */
.support-intro {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.support-intro p {
    color: var(--text-dark);
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.8;
}

.support-features {
    margin: 3rem 0;
}

.support-features h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.support-responsibilities {
    margin: 3rem 0;
}

.responsibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.responsibility-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.responsibility-card h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.responsibility-card ul {
    list-style: none;
    padding: 0;
}

.responsibility-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.responsibility-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Aging in Place Section */
.aging-content {
    margin-top: 2rem;
}

.aging-intro {
    background: var(--light-blue);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.aging-intro p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.aging-goal {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.aging-technology {
    margin: 3rem 0;
}

.aging-technology h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.tech-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary-green);
}

.tech-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tech-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.aging-benefits {
    background: var(--light-green);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.aging-benefits h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.benefit-row {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.check-green {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-row strong {
    color: var(--primary-green);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.benefit-row p {
    color: var(--text-dark);
    margin: 0;
}

.caps-certification {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin: 3rem 0;
}

.caps-certification h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.caps-certification p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.caps-certification strong {
    color: var(--primary-green);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-item {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

footer p {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-background {
        background-attachment: scroll;
        padding: 4rem 1rem;
        min-height: 70vh;
    }

    .hero-background h1 {
        font-size: 2.5rem;
    }

    .hero-background .tagline {
        font-size: 1.3rem;
    }

    .floating-image {
        max-width: 280px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .nav-container {
        padding: 1rem;
    }

    .logo img {
        height: 60px;
    }
}