/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #232b2b;
    background-color: #faf9f6;
}

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

/* Header Styles */
.header {
    background: #faf9f6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.5rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo {
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 120px;
}

.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav li {
    margin: 0;
}

.nav a {
    color: #3e517a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #FE5D26;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #3e517a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FE5D26;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3e517a 0%, #a3bac3 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Breadcrumbs - moved below hero section */
.breadcrumbs {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
}

.breadcrumbs a {
    color: #3e517a;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #FE5D26;
    text-decoration: none;
}

.breadcrumbs span {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0 0.5rem;
}

/* Client CTA Banner */
.client-cta {
    background: #fff7f3;
    border-bottom: 1px solid #ffe1d6;
    padding: 1rem 0;
    text-align: center;
}

.client-cta p {
    margin: 0;
    color: #232b2b;
    font-size: 1rem;
}

.client-cta a {
    color: #FE5D26;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.client-cta a:hover {
    color: #e54a1a;
    text-decoration: underline;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subheading,
#hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    margin-top: 0;
    opacity: 0.9;
    font-weight: 300;
}

.hero-content .cta-button {
    margin-top: 1rem;
}

.cta-button {
    display: inline-block;
    background: #FE5D26;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #e54a1a;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #FE5D26;
}

.cta-button.secondary:hover {
    background: #FE5D26;
}

/* Revenue Opportunities CTA */
.revenue-opportunities {
    background: #3e517a;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.revenue-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Listicle Section */
.listicle-section {
    padding: 2rem;
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
}

.listicle-section h2 {
    color: #3e517a;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.listicle-container {
    max-width: 800px;
    margin: 0 auto;
}

.listicle-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FE5D26;
}

.listicle-rank {
    background: #FE5D26;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.listicle-content h3 {
    color: #3e517a;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.listicle-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.listicle-link {
    color: #FE5D26;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.listicle-link:hover {
    color: #e54a1a;
    text-decoration: underline;
}

/* Inline CTA */
.inline-cta {
    background: #fff7f3;
    border: 1px solid #ffe1d6;
    border-left: 4px solid #FE5D26;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Section CTA (after every other section) */
.section-cta {
    text-align: center;
    margin: 3rem 0;
    padding: 1.5rem 0;
}

.section-cta-button {
    display: inline-block;
    background: #FE5D26;
    color: white;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.section-cta-button:hover {
    background: #e54a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(254, 93, 38, 0.3);
}

.inline-cta h3 {
    color: #3e517a;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.inline-cta p {
    margin-bottom: 1rem;
    color: #444;
}

/* Main Content */
.main-content {
    padding: 3rem 0;
    background: #fff;
}

.article {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}

.featured-image img,
#featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.introduction {
    padding: 3rem;
    border-bottom: 1px solid #e9ecef;
}

.introduction p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0;
}

.intro {
    padding: 3rem 3rem 2rem 3rem;
    margin-top: 0;
    clear: both;
}

.intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0;
}

.body-content {
    padding: 0 3rem 3rem 3rem;
    margin: 0;
    clear: both;
}

.body-content h2 {
    color: #3e517a;
    margin: 2.5rem 0 1.25rem 0;
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.3;
}

.body-content h3 {
    color: #3e517a;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.body-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
}

.content-section {
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
}

.article-content {
    padding: 0;
    margin: 0;
    clear: both;
    display: block;
    width: 100%;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.article-content h2 {
    color: #3e517a;
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.article-content h3 {
    color: #3e517a;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 500;
}

/* FAQs Section */
.faqs-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faqs-section h2 {
    color: #3e517a;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.faqs-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section {
    padding: 2rem 3rem 3rem 3rem;
    border-top: 1px solid #e9ecef;
}

.faq-section h2 {
    color: #3e517a;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.faq-container {
    max-width: 100%;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item {
    margin-bottom: 1.25rem;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.faq-question {
    background: #3e517a;
    color: white;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    text-align: left;
    line-height: 1.5;
}

.faq-question:hover {
    background: #2d3d5a;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 1rem;
}

.faq-question .faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-question::after {
    display: none;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    display: block;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.contact-section h2 {
    color: #3e517a;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-section > .container > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    color: #3e517a;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-content p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #3e517a;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FE5D26;
}

.submit-button {
    background: #FE5D26;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #e54a1a;
}

/* Footer */
.footer {
    background: #3e517a;
    color: white;
    padding: 3rem 0 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-info {
    flex: 1;
    min-width: 250px;
}

.footer-copyright {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

.footer-tagline {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-contact-item strong {
    font-weight: 600;
    margin-right: 0.5rem;
}

.footer-contact-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0.25rem 0;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.25rem 0;
    }
    
    .logo img {
        height: 35px;
        max-width: 100px;
    }
    
    .nav ul {
        gap: 1rem;
    }
    
    .nav a {
        font-size: 0.8rem;
    }

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

    .hero-subheading {
        font-size: 1.1rem;
    }

    .blog-post {
        max-width: 95%;
    }

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
        align-items: center;
    }

    .article-content,
    .introduction,
    .intro,
    .body-content,
    .faq-section,
    .faqs-section,
    .listicle-section,
    .contact-form {
        padding: 1rem;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .featured-image img,
    #featured-img {
        height: 100%;
    }

    .listicle-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .revenue-content h3 {
        font-size: 1.3rem;
    }
    
    .section-cta {
        margin: 2rem 0;
        padding: 1rem 0;
    }
    
    .section-cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .main-content {
        padding: 2rem 0;
    }

    .contact-section {
        padding: 2rem 0;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.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; }
