/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', Georgia, serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.logo-sub {
    font-size: 11px;
    color: #00a896;
    display: block;
    margin-top: -5px;
}

nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
    font-weight: 400;
    position: relative;
}

nav a:hover {
    color: #00a896;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    margin-top: 10px;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #00a896;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
}

.login-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #d8e9e6 0%, #e8f4f2 100%);
    padding: 50px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 44px;
    color: #2d5f5d;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 400;
}

.hero-text p {
    font-size: 15px;
    color: #5a7c7a;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

/* Find Caregiver Section */
.find-caregiver-section {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.find-caregiver {
    background: white;
    padding: 35px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
    max-width: 950px;
    margin: 0 auto;
}

.find-caregiver h2 {
    font-size: 30px;
    color: #2d5f5d;
    margin-bottom: 8px;
    font-weight: 400;
}

.find-caregiver > p {
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

.form-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.form-group {
    flex: 1;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.step-number {
    background: #2d5f5d;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    background: white;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #00a896;
}

.btn-primary {
    background: #00a896;
    color: white;
    border: none;
    padding: 13px 35px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

.btn-primary:hover {
    background: #008c7a;
}

/* Services Section */
.services-section {
    padding: 70px 0;
    background: white;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 38px;
    color: #2d5f5d;
    margin-bottom: 15px;
    font-weight: 400;
}

.section-header p {
    font-size: 15px;
    color: #666;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
}

.services-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.services-text {
    flex: 1;
}

.services-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.btn-secondary {
    background: #00a896;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #008c7a;
}

.services-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.services-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Care Needs Section */
.care-needs-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #e8f4f2 0%, #f5faf9 100%);
}

.care-needs-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.care-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    position: relative;
}

.care-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    flex: 1;
    max-width: 350px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.care-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    stroke: #00a896;
    stroke-width: 1.5;
}

.care-card h3 {
    font-size: 20px;
    color: #2d5f5d;
    font-weight: 400;
    line-height: 1.3;
}

.care-card ul {
    list-style: none;
}

.care-card li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    font-family: 'Arial', sans-serif;
    position: relative;
    padding-left: 15px;
}

.care-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00a896;
    font-weight: bold;
}

.connector-circle {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: #00a896;
    border-radius: 50%;
    z-index: 1;
}

/* Afford Section */
.afford-section {
    padding: 70px 0;
    background: white;
}

.afford-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.afford-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.afford-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.afford-text {
    flex: 1;
}

.afford-text h2 {
    font-size: 38px;
    color: #2d5f5d;
    margin-bottom: 25px;
    font-weight: 400;
}

.afford-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

/* Download Section */
.download-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #e8f4f2 0%, #d8e9e6 100%);
}

.download-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.download-text h2 {
    font-size: 38px;
    color: #2d5f5d;
    margin-bottom: 15px;
    font-weight: 400;
}

.download-text p {
    font-size: 15px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.ratings {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.rating-card {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.rating-score {
    font-size: 36px;
    color: #2d5f5d;
    font-weight: 400;
}

.rating-out {
    font-size: 14px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.stars {
    color: #00a896;
    font-size: 20px;
    margin: 10px 0;
}

.rating-count {
    font-size: 13px;
    color: #888;
    font-family: 'Arial', sans-serif;
}

.app-badge {
    margin-top: 20px;
}

.app-badge img {
    height: 40px;
}

/* Footer */
footer {
    background: #f8f8f8;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 13px;
    color: #666;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00a896;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #2d5f5d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 14px;
}

.social-icon:hover {
    background: #00a896;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-text {
    font-size: 12px;
    color: #888;
    font-family: 'Arial', sans-serif;
    max-width: 800px;
}

.certifications {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cert-badge {
    height: 40px;
}

/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 40px 20px;
}

.login-box {
    background: white;
    padding: 50px 60px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
}

.login-box h1 {
    font-size: 32px;
    color: #2d5f5d;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 400;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
}

.login-form input:focus {
    outline: none;
    border-color: #00a896;
}

.login-form button {
    width: 100%;
    padding: 14px;
    background: #00a896;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
    margin-top: 10px;
}

.login-form button:hover {
    background: #008c7a;
}

.signup-link {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    color: #666;
}

.signup-link a {
    color: #00a896;
    text-decoration: none;
    font-weight: 500;
}

.signup-link a:hover {
    text-decoration: underline;
}

.login-footer {
    background: white;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.login-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.contact-info h3,
.follow-section h3,
.download-section-footer h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.contact-info p,
.contact-info a {
    font-size: 14px;
    color: #666;
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    text-decoration: none;
}

.contact-info a:hover {
    color: #00a896;
}

.login-footer-links {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin: 40px 0;
}

.login-footer-links a {
    color: #00a896;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

.login-footer-links a:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
    padding: 70px 0;
    background: white;
}

.testimonials-section h2 {
    font-size: 38px;
    color: #2d5f5d;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 40px 50px;
    border-radius: 15px;
    position: relative;
}

.quote {
    font-size: 48px;
    color: #2d5f5d;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 17px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.testimonial-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: #00a896;
}

/* Reviews Section */
.reviews-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #e8f4f2 0%, #f5faf9 100%);
}

.reviews-section h2 {
    font-size: 38px;
    color: #2d5f5d;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.trustpilot-widget {
    text-align: center;
    margin-bottom: 40px;
}

.trustpilot-score {
    background: white;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.trust-stars {
    color: #00b67a;
    font-size: 24px;
    margin-bottom: 5px;
}

.trust-text {
    font-size: 16px;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.review-cards {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    flex: 1;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-stars {
    color: #00b67a;
    font-size: 18px;
}

.review-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.review-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.media-logos {
    text-align: center;
    margin-top: 50px;
}

.media-logos p {
    font-size: 12px;
    color: #2d5f5d;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.logo-img {
    height: 35px;
    opacity: 0.6;
  
}

/* Accessibility Button */
.accessibility-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #2d5f5d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    border: none;
}

.accessibility-btn:hover {
    background: #00a896;
}

/* Solution Mix Section */
.solution-tabs {
    text-align: center;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 25px;
    margin: 0 10px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s;
}

.tab-btn.active {
    border-color: #00a896;
    color: #00a896;
}

.tab-btn:hover {
    border-color: #00a896;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.solution-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.solution-card-content {
    padding: 25px;
}

.solution-card h3 {
    font-size: 22px;
    color: #2d5f5d;
    margin-bottom: 15px;
    font-weight: 400;
}

.solution-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .services-content,
    .afford-content,
    .download-content {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .care-cards,
    .ratings,
    .review-cards,
    .solution-cards {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    nav {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .section-header h2,
    .afford-text h2,
    .download-text h2 {
        font-size: 28px;
    }
    
    .login-box {
        padding: 40px 30px;
    }
}




























/* Additional Styles for New Pages */

/* Hero Alt Section */
.hero-alt {
    background: linear-gradient(135deg, #d8e9e6 0%, #e8f4f2 100%);
    padding: 60px 0 80px;
}

.hero-alt-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-alt-image {
    flex: 0 0 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-alt-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.hero-alt-text {
    flex: 1;
}

.hero-alt-text h1 {
    font-size: 42px;
    color: #2d5f5d;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 400;
}

.hero-alt-text p {
    font-size: 16px;
    color: #5a7c7a;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

/* Hero CTA Section */
.hero-cta {
    background: linear-gradient(135deg, #d8e9e6 0%, #e8f4f2 100%);
    padding: 50px 0;
}

.hero-cta-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-cta-image {
    flex: 0 0 320px;
    border-radius: 20px;
    overflow: hidden;
}

.hero-cta-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.hero-cta-text {
    flex: 1;
}

.hero-cta-text h1 {
    font-size: 40px;
    color: #2d5f5d;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-cta-text p {
    font-size: 16px;
    color: #5a7c7a;
    margin-bottom: 30px;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

.btn-large {
    padding: 15px 45px;
    font-size: 16px;
}

/* Content Section Utilities */
.content-section {
    padding: 70px 0;
}

.centered-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.centered-content h2 {
    font-size: 38px;
    color: #2d5f5d;
    margin-bottom: 20px;
    font-weight: 400;
}

.centered-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

/* Two Column Section */
.two-column-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

.two-column-section.reverse {
    flex-direction: row-reverse;
}

.text-column {
    flex: 1;
}

.text-column h2,
.text-column h3 {
    font-size: 32px;
    color: #2d5f5d;
    margin-bottom: 20px;
    font-weight: 400;
}

.text-column p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

.image-column {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.image-column img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Carousel Section */
.carousel-section {
    padding: 50px 0;
    background: white;
}

.carousel-item-large {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-image {
    flex: 0 0 350px;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.carousel-text {
    flex: 1;
}

.carousel-text h3 {
    font-size: 28px;
    color: #2d5f5d;
    margin-bottom: 15px;
    font-weight: 400;
}

.carousel-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

/* Network Grid */
.network-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4f2 0%, #f5faf9 100%);
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.network-item {
    text-align: center;
}

.network-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.network-icon svg {
    width: 40px;
    height: 40px;
    stroke: #00a896;
}

.network-item h4 {
    font-size: 15px;
    color: #2d5f5d;
    font-weight: 400;
    font-family: 'Arial', sans-serif;
    line-height: 1.4;
}

/* Feature Cards Grid */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-card-content {
    padding: 30px 25px;
}

.feature-card-content h3 {
    font-size: 22px;
    color: #2d5f5d;
    margin-bottom: 15px;
    font-weight: 400;
}

.feature-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

/* Customized Programs Section */
.customized-programs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4f2 0%, #f5faf9 100%);
    position: relative;
}

.programs-flow {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    flex-wrap: wrap;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    width: 220px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.program-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.program-card-content {
    padding: 20px;
}

.program-card h4 {
    font-size: 15px;
    color: #2d5f5d;
    font-weight: 500;
    line-height: 1.4;
    font-family: 'Arial', sans-serif;
}

.program-card.highlighted {
    background: #00a896;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.program-card.highlighted h4 {
    color: white;
    text-align: center;
}

.flow-connector {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: #00a896;
    border-radius: 50%;
    z-index: 1;
}

/* Outcomes Section */
.outcomes-section {
    padding: 80px 0;
    background: white;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.outcome-image-circle {
    flex: 0 0 180px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.outcome-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.outcome-content {
    flex: 1;
}

.outcome-content h3 {
    font-size: 26px;
    color: #2d5f5d;
    margin-bottom: 25px;
    font-weight: 400;
}

.outcome-stats {
    display: flex;
    gap: 60px;
}

.stat {
    flex: 1;
}

.stat-number {
    font-size: 48px;
    color: #00a896;
    font-weight: 400;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4f2 0%, #d8e9e6 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.contact-text h2 {
    font-size: 38px;
    color: #2d5f5d;
    font-weight: 400;
    line-height: 1.3;
}

.contact-form {
    background: transparent;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form select,
.contact-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    background: white;
}

.contact-form select:focus,
.contact-form input:focus {
    outline: none;
    border-color: #00a896;
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4f2 0%, #f5faf9 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #d8e9e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    stroke: #00a896;
}

.benefit-card h3 {
    font-size: 20px;
    color: #2d5f5d;
    margin-bottom: 15px;
    font-weight: 400;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
}

.step-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-number-circle {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #00a896;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.step-number-large {
    color: white;
    font-size: 28px;
    font-weight: 600;
}

.step-content {
    padding: 50px 30px 35px;
    text-align: center;
}

.step-content h3 {
    font-size: 22px;
    color: #2d5f5d;
    margin-bottom: 15px;
    font-weight: 400;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

/* Download Content Alt */
.download-content-alt {
    text-align: center;
    position: relative;
}

.download-text-alt {
    margin-bottom: 40px;
}

.download-text-alt h2 {
    font-size: 38px;
    color: #2d5f5d;
    margin-bottom: 15px;
    font-weight: 400;
}

.download-text-alt p {
    font-size: 15px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.ratings-horizontal {
    display: flex;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.connector-circle-large {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    background: #00a896;
    border-radius: 50%;
    z-index: 1;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .network-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .feature-cards-grid,
    .benefits-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-alt-content,
    .hero-cta-content,
    .two-column-section,
    .carousel-item-large,
    .outcome-item {
        flex-direction: column;
    }
    
    .hero-alt-image,
    .hero-cta-image,
    .carousel-image {
        flex: 1;
        width: 100%;
    }
    
    .network-grid,
    .feature-cards-grid,
    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .outcome-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .programs-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .outcome-image-circle {
        width: 120px;
        height: 120px;
        flex: 0 0 120px;
    }
}