/* Option A Color Scheme - Trustworthy Tech */
:root {
    --primary: #1E3A5F;
    --accent: #FF6B35;
    --bg-light: #F7F9FC;
    --text-dark: #2f2f41;
    --text-gray: #5C5A5A;
}

/* Apply accent color to buttons and CTAs */
.button,
.button-primary,
.call .button {
    background-color: var(--accent);
    border-color: var(--accent);
    transition: all 0.3s ease;
}

.button:hover,
.button-primary:hover,
.call .button:hover {
    background-color: #E55A2B;
    border-color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Primary color for headings */
h1,
h2,
h3 {
    color: var(--primary);
}

/* Accent on links */
a {
    color: var(--primary);
}

a:hover {
    color: var(--accent);
}

/* Service cards styling */
.service {
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.service:hover {
    border-left-color: var(--accent);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.1);
    transform: translateY(-4px);
}

/* Hero section enhancement */
.intro {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.intro h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.intro p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
}

/* Pricing cards */
.pricing-card {
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.15);
}

.pricing-card h3 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Case study highlights */
.case-study-result {
    background: var(--bg-light);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.case-study-result strong {
    color: var(--accent);
    font-size: 1.25rem;
}

/* Blog post styling */
.blog-post-card {
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Contact form enhancement */
.contact-form input,
.contact-form textarea {
    border: 2px solid var(--bg-light);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

/* Footer styling */
.footer {
    background-color: var(--primary);
    color: #ffffff;
}

.footer a {
    color: #ffffff;
}

.footer a:hover {
    color: var(--accent);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .intro h1 {
        font-size: 2rem;
    }

    .intro p {
        font-size: 1.1rem;
    }
}

/* About Page - Clean Design */

/* Intro section with image next to Ricky paragraph */
.intro-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin: 2rem 0 3rem 0;
}

.intro-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
}

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: #2d3748;
}

/* Main content wrapper */
.content {
    max-width: 800px;
    margin: 0 auto;
}

/* Page title */
.content>h1:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

/* Main heading */
.content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1E3A5F;
    margin-top: 2rem;
}

/* Lead paragraphs after h1 */
.content h1+p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Section headers with orange underline */
.content h2 {
    color: #1E3A5F;
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #FF6B35;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.content h3 {
    color: #1E3A5F;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

/* Blockquote styling */
.content blockquote {
    font-size: 1.2rem;
    color: #1E3A5F;
    font-style: italic;
    border-left: 4px solid #FF6B35;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    margin: 2rem 0;
    line-height: 1.6;
    background: #f7fafc;
    border-radius: 0 8px 8px 0;
}

.content blockquote strong {
    font-weight: 600;
}

/* Regular paragraphs */
.content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

/* Benefits section - make bold text stand out */
.content strong {
    color: #1E3A5F;
    font-size: 1.1rem;
}

/* Gradient sections */
.gradient-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 12px;
}

.gradient-section-peach {
    background: linear-gradient(135deg, #fef5f1 0%, #fff5ed 100%);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 12px;
}

.gradient-section-navy {
    background: linear-gradient(135deg, #1E3A5F 0%, #2d5a8f 100%);
    color: white;
    padding: 3rem;
    margin: 3rem 0 0 0;
    border-radius: 12px;
}

/* Navy gradient section special styling */
.gradient-section-navy h2 {
    color: white;
    border-bottom: 3px solid #FF6B35;
    text-align: center;
    display: block;
}

.gradient-section-navy p {
    color: #e2e8f0;
    text-align: center;
}

/* Make sure h2 inside gradient sections don't have extra margin */
.gradient-section h2,
.gradient-section-peach h2,
.gradient-section-navy h2 {
    margin-top: 0;
}

/* CTA Button styling - fixed overflow */
.cta-button,
a.cta-button {
    display: inline-block;
    background: #FF6B35;
    color: white !important;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.cta-button:hover,
a.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    color: white !important;
    text-decoration: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .intro-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 0;
    }

    .intro-image {
        order: -1;
        text-align: center;
        margin-top: 0;
    }

    .intro-image img {
        max-width: 250px;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .gradient-section,
    .gradient-section-peach,
    .gradient-section-navy {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .content blockquote {
        font-size: 1.05rem;
        padding: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
}

.service-summary:hover,
.case-study-summary:hover,
.blog-article-summary:hover {
    border-color: #FF6B35 !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.15);
}

.feature-heading {
    color: #1E3A5F;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Homepage specific styles */

/* Hero section - already styled in template, but ensure button is centered */
.intro .cta-button {
    margin: 0 auto;
}