/* Galaxy SaaS Agency - Main Stylesheet */

/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #3b82f6;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

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

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

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

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

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

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--bg-light);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    background-color: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

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

.logo span {
    color: var(--primary-color);
}

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

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

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

.nav-cta {
    background-color: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--bg-white);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.reassurance-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.compliance-disclaimer {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--warning-color);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--bg-white);
}

.compliance-disclaimer strong {
    color: var(--bg-white);
    font-weight: 700;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

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

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

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

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

/* ============================================
   SOCIAL PROOF STRIP
   ============================================ */
.social-proof {
    background-color: var(--bg-light);
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.social-proof p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ============================================
   TRUST BLOCK
   ============================================ */
.trust-block {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 2.5rem 0;
    text-align: center;
}

.trust-block h2,
.trust-block p {
    color: var(--bg-white);
}

.trust-block p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.content-section h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

/* ============================================
   PROBLEM & SOLUTION SECTIONS
   ============================================ */
.problem-section,
.solution-section {
    padding: 5rem 0;
}

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

.solution-section {
    background-color: var(--bg-light);
}

.problem-list,
.solution-list {
    max-width: 800px;
    margin: 2rem auto;
}

.problem-list li,
.solution-list li {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    background-color: var(--bg-white);
    padding: 5rem 0;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 1rem;
    transition: var(--transition);
}

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

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1rem;
}

.step h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p {
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   INDUSTRY CARDS
   ============================================ */
.industry-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.industry-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.industry-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.industry-card p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

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

.comparison-column {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.comparison-column h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.comparison-column.automated h3 {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.comparison-column ul {
    list-style: none;
    padding: 0;
}

.comparison-column li {
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    position: relative;
}

.comparison-column li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* ============================================
   OUTCOMES SECTION
   ============================================ */
.outcomes {
    background-color: var(--bg-white);
    padding: 5rem 0;
}

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

.outcome-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
}

.outcome-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.outcome-item p {
    margin: 0;
    font-size: 1rem;
}

/* ============================================
   WHO IT'S FOR SECTION
   ============================================ */
.who-its-for {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

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

.who-column {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
}

.who-column.for {
    border: 2px solid var(--success-color);
}

.who-column.not-for {
    border: 2px solid var(--warning-color);
}

.who-column h3 {
    margin-bottom: 1.5rem;
}

.who-column.for h3 {
    color: var(--success-color);
}

.who-column.not-for h3 {
    color: var(--warning-color);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    background-color: var(--bg-white);
    padding: 5rem 0;
}

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

.pricing-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

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

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

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

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

.pricing-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1rem;
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pricing-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0.75rem;
    text-align: center;
}

.pricing-note p {
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

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

.cta-section h2,
.cta-section p {
    color: var(--bg-white);
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    padding: 6rem 0 4rem;
    text-align: center;
}

.policy-hero h1 {
    color: var(--bg-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.policy-intro {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.policy-updated {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.policy-content {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.policy-text {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-text h2 {
    color: var(--secondary-color);
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}

.policy-text h2:first-child {
    margin-top: 0;
}

.policy-text h3 {
    color: var(--text-dark);
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-text ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-text li {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.policy-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.policy-text a:hover {
    color: var(--primary-dark);
}

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

.contact-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}

.contact-box p {
    margin-bottom: 0;
}

.contact-box a {
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.policy-footer-note {
    background-color: #f0f9ff;
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 0.5rem;
}

.policy-footer-note p {
    margin-bottom: 0.5rem;
}

.policy-footer-note p:last-child {
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--bg-white);
    text-decoration: underline;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: #0f172a !important;
    background: #0f172a !important;
    color: #ffffff !important;
    padding: 4rem 0 2rem !important;
    margin-top: 0 !important;
    width: 100% !important;
    clear: both !important;
    position: relative !important;
    border-top: 4px solid #2563eb !important;
    display: block !important;
    min-height: 300px !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 3rem !important;
    margin-bottom: 3rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-section h3 {
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-section p,
.footer-section li {
    color: #ffffff !important;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section a {
    color: #ffffff !important;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: #3b82f6 !important;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

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

.footer-bottom p {
    color: #ffffff !important;
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.about-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-info {
    max-width: 700px;
    margin: 3rem auto;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 1rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-info strong {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

/* ============================================
   THANK YOU PAGE SPECIFIC
   ============================================ */
.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-content h1 {
    color: var(--success-color);
}

.thank-you-steps {
    text-align: left;
    margin: 3rem 0;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 1rem;
}

.thank-you-steps h3 {
    margin-bottom: 1.5rem;
}

.thank-you-steps ol {
    list-style-position: outside;
}

.thank-you-steps li {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    h3 {
        font-size: 1.5rem;
    }

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

    .hero p {
        font-size: 1.125rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 3rem 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .steps,
    .industry-cards,
    .comparison-grid,
    .outcomes-grid,
    .who-its-for-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-section {
        flex-direction: column;
        text-align: center;
    }

    .founder-image {
        flex: 0 0 auto;
        max-width: 300px;
    }

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

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

    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background-color: var(--bg-white);
    padding: 5rem 0;
}

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

.testimonial-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-dark);
}

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

.testimonial-rating {
    color: var(--warning-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* ============================================
   HERO IMAGES
   ============================================ */
.hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    margin: 2rem auto;
    display: block;
}

/* ============================================
   FOUNDER IMAGE
   ============================================ */
.founder-section {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.founder-image {
    flex: 0 0 300px;
    border-radius: 1rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.founder-content {
    flex: 1;
    min-width: 300px;
}

/* ============================================
   FEATURE IMAGES
   ============================================ */
.feature-image-section {
    padding: 3rem 0;
    text-align: center;
}

.feature-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    display: block;
}
