/* ===========================
   Global Styles & Variables
   =========================== */

:root {
    --primary-color: #2c7a9e;
    --primary-dark: #1e5a7a;
    --secondary-color: #5eb17f;
    --accent-color: #f4a261;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --text-muted: #718096;
    --background-light: #f7fafc;
    --background-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

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(--background-white);
}

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

/* ===========================
   Typography
   =========================== */

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ===========================
   Header & Navigation
   =========================== */

header {
    background-color: var(--background-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.logo h1 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo h1 a:hover {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .cta-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
}

.nav-links .cta-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    background: linear-gradient(135deg, rgba(44, 122, 158, 0.85) 0%, rgba(94, 177, 127, 0.85) 100%), url('images/Buildingoverview1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-subtext {
    font-size: 1rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ===========================
   Buttons
   =========================== */

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

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

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

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ===========================
   Sections
   =========================== */

section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ===========================
   About Section
   =========================== */

.about {
    background-color: var(--background-light);
}

.about-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.about-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    transition: var(--transition);
}

.about-content a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

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

.feature {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===========================
   Programs Section
   =========================== */

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

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1400px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
}

.program-card {
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.program-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

.program-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.program-badge.coming-soon {
    background-color: var(--text-muted);
}

.program-card h3 {
    color: var(--primary-color);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.program-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.program-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.program-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.program-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.program-pricing {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.price-duration {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0.25rem 0;
}

.program-card .btn {
    width: 100%;
    text-align: center;
}

/* ===========================
   Providers Section
   =========================== */

.providers {
    background-color: var(--background-light);
}

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

.provider-card {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.provider-card:hover {
    box-shadow: var(--shadow-md);
}

.provider-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.provider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.provider-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.provider-bio {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===========================
   Signup Section
   =========================== */

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

.signup-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 122, 158, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    display: none;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===========================
   Footer
   =========================== */

footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-section p a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    transition: var(--transition);
}

.footer-section p a:hover {
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===========================
   Program Details Page
   =========================== */

.program-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(44, 122, 158, 0.9) 0%, rgba(94, 177, 127, 0.9) 100%), url('images/Buildingoverview1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.program-hero .hero-content h2 {
    font-size: 3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.program-hero .hero-content p {
    font-size: 1.4rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.syllabus-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1rem;
    font-style: italic;
}

.program-overview {
    background-color: var(--background-light);
}

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

.overview-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: var(--transition);
}

.overview-card:hover::before {
    opacity: 1;
}

.overview-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(44, 122, 158, 0.3);
}

.overview-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-card p {
    font-size: 1.5rem;
    color: white;
    margin: 0;
    font-weight: 600;
}

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

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

.component-card {
    background-color: var(--background-white);
    padding: 2.5rem;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--border-color);
    position: relative;
}

.component-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transition: var(--transition);
}

.component-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(44, 122, 158, 0.15);
    border-color: var(--primary-color);
}

.component-card:hover::after {
    opacity: 1;
}

.component-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1.3;
}

.component-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.weekly-schedule {
    background-color: var(--background-light);
}

.schedule-intro {
    margin-bottom: 3rem;
}

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

.highlight-item {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(244, 162, 97, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--accent-color);
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(244, 162, 97, 0.25);
    border-color: var(--primary-color);
}

.highlight-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.highlight-item p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.6;
}

.schedule-timeline {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.week-card {
    background-color: var(--background-white);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.week-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    border-radius: 16px 0 0 16px;
}

.week-card:hover {
    box-shadow: 0 16px 32px rgba(44, 122, 158, 0.15);
    transform: translateX(5px);
    border-color: var(--primary-color);
}

.week-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(44, 122, 158, 0.3);
    letter-spacing: 0.5px;
}

.week-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.week-intro {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(94, 177, 127, 0.08) 0%, rgba(44, 122, 158, 0.08) 100%);
    border-radius: 12px;
    font-style: italic;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.medical-bookend {
    background: linear-gradient(135deg, rgba(44, 122, 158, 0.05) 0%, rgba(94, 177, 127, 0.05) 100%);
    border: 3px solid var(--primary-color);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 4px 8px rgba(44, 122, 158, 0.1);
}

.medical-bookend::before {
    content: '🏥';
    font-size: 2rem;
    position: absolute;
    right: 2rem;
    top: 2rem;
    opacity: 0.3;
}

.medical-bookend h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.medical-bookend > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.medical-bookend ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.medical-bookend li {
    padding: 1rem 1rem 1rem 3rem;
    color: var(--text-light);
    background-color: white;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
}

.medical-bookend li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.medical-bookend li strong {
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.week-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.detail-section.full-width {
    grid-column: 1 / -1;
}

.detail-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-section p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
}

.detail-section p:last-child {
    margin-bottom: 0;
}

.detail-section p::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.detail-section p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.week-takeaway {
    background: linear-gradient(135deg, #1e5a7a 0%, #4a9d6f 100%);
    color: white;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    box-shadow: 0 8px 16px rgba(44, 122, 158, 0.25);
    position: relative;
    overflow: hidden;
}

.week-takeaway::before {
    content: '💡';
    font-size: 3rem;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.2;
}

.week-takeaway strong {
    font-weight: 800;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.outcome-card {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: left;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.outcome-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.outcome-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.outcome-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.before-start {
    background-color: var(--background-light);
}

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

.before-column h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ===========================
   GLP-1 Section
   =========================== */

.glp1-section {
    background-color: var(--background-white);
    padding: 5rem 0;
}

.glp1-content {
    max-width: 1000px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.glp1-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary-color);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   Process Section
   =========================== */

.process-section {
    background-color: var(--background-light);
    padding: 5rem 0;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.process-step {
    background-color: var(--background-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    margin-left: 4rem;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    left: -4rem;
    top: 2.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.process-note {
    background: linear-gradient(135deg, rgba(44, 122, 158, 0.05) 0%, rgba(94, 177, 127, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.process-note p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.process-note strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ===========================
   Why Choose Section
   =========================== */

.why-choose {
    background-color: var(--background-white);
    padding: 5rem 0;
}

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

.why-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 3px solid var(--secondary-color);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-color);
}

.why-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.why-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   Group Programs CTA
   =========================== */

.group-programs-cta {
    background-color: var(--background-light);
    padding: 4rem 0;
}

.group-programs-cta .cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.group-programs-cta h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.group-programs-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero,
    .program-hero {
        padding: 4rem 0;
        background-attachment: scroll;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .signup-form {
        padding: 1.5rem;
    }

    .process-step {
        margin-left: 0;
        padding-left: 4rem;
    }

    .process-timeline::before {
        left: 20px;
    }

    .step-number {
        left: -3rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .glp1-benefits {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

