:root {
    --navy-blue: #2B4570;
    --dark-navy: #1E3A5F;
    --yellow: #FDB813;
    --yellow-dark: #E5A512;
    --light-bg: #F5F5F5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-radius: 15px;
}

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

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

/* Header */
.site-header {
    background: var(--navy-blue);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--yellow);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle:hover {
    color: var(--yellow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--yellow);
    color: var(--navy-blue);
}

.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 184, 19, 0.4);
}

/* Hero Section */
.hero {
    background: var(--navy-blue);
    background-image: url('https://advisly.com/wp-content/uploads/2025/05/group-of-business-people-working-as-team-in-office-TRCKLYU-768x512.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 69, 112, 0.95) 0%, rgba(30, 58, 95, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-label {
    color: var(--yellow);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Blog Grid */
.blog-grid {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: var(--navy-blue);
}

.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
    background: var(--yellow);
    min-height: 120px;
}

.blog-card h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
    color: var(--navy-blue);
}

.blog-card a {
    color: var(--navy-blue);
    text-decoration: none;
}

.blog-card p {
    font-size: 0.9rem;
    margin-top: 10px;
    color: var(--navy-blue);
    line-height: 1.5;
}

/* Center Column - Featured Cards */
.center-column {
    background: var(--navy-blue);
    border-radius: var(--border-radius);
    padding: 10px;
}

.center-column .blog-card {
    margin-bottom: 15px;
}

.center-column .blog-card:last-child {
    margin-bottom: 0;
}

.center-column .blog-card-content {
    background: var(--yellow);
}

/* Values Section */
.values {
    padding: 80px 0;
    background: var(--navy-blue);
    color: var(--white);
    text-align: center;
}

.values h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.values-subtitle {
    color: var(--yellow);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 60px;
}

.values-divider {
    width: 80px;
    height: 3px;
    background: var(--yellow);
    margin: 30px auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--yellow);
    font-size: 40px;
}

.value-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

/* Footer */
.site-footer {
    background: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

    max-width: 150px;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-col h4 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--navy-blue);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-blue);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--yellow);
    color: var(--navy-blue);
}

    border-top: 1px solid #e0e0e0;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--navy-blue);
    text-decoration: underline;
}

/* Legal Pages */
.page-header {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(253,184,19,0.05)"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    z-index: 1;
}

.page-header p {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.legal-content {
    padding: 100px 0;
    background: var(--light-bg);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 70px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.legal-wrapper h2 {
    color: var(--navy-blue);
    font-size: 2rem;
    font-weight: 800;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 4px solid var(--yellow);
    text-transform: uppercase;
}

.legal-wrapper h2:first-of-type {
    margin-top: 30px;
}

.legal-wrapper h3 {
    color: var(--navy-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 20px;
}

.legal-wrapper p {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.legal-wrapper ul {
    margin: 25px 0 30px 40px;
    line-height: 1.9;
}

.legal-wrapper ul li {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.legal-wrapper a {
    color: var(--navy-blue);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.legal-wrapper a:hover {
    color: var(--yellow-dark);
}

.legal-wrapper strong {
    color: var(--navy-blue);
    font-weight: 700;
}

/* Modern Contact Page */
.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-modern {
    background: var(--light-bg);
    padding: 80px 0 60px;
    text-align: center;
}

.contact-label {
    color: var(--navy-blue);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-hero-modern h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.contact-form-section {
    background: var(--light-bg);
    padding: 0 0 80px 0;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
}

.form-group-modern label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
}

.modern-form input[type="text"],
.modern-form input[type="email"],
.modern-form input[type="tel"],
.modern-form textarea {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.modern-form input::placeholder,
.modern-form textarea::placeholder {
    color: #999;
}

.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 3px rgba(43, 69, 112, 0.1);
}

.modern-form textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-button-modern {
    background: var(--navy-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-button-modern:hover {
    background: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 69, 112, 0.3);
}

.success-message-modern {
    text-align: center;
    padding: 40px;
}

.success-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 25px;
}

.success-message-modern h3 {
    color: var(--navy-blue);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.success-message-modern p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.error-message-modern {
    background: #ffe6e6;
    border: 2px solid #ff4444;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #c00;
    margin-top: 20px;
}

.error-message-modern i {
    font-size: 24px;
    margin-bottom: 10px;
}

.error-message-modern a {
    color: #c00;
    text-decoration: underline;
    font-weight: 600;
}

.contact-info-section {
    background: var(--white);
    padding: 80px 0;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card-modern {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
}

.info-card-modern h3 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card-modern p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.info-card-modern a {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 600;
}

.info-card-modern a:hover {
    color: var(--yellow-dark);
    text-decoration: underline;
}

/* Modern Blog Article Styles */
.blog-article-modern {
    background: var(--light-bg);
}

/* Hero Section with Background Image */
.article-hero {
    background: linear-gradient(rgba(43, 69, 112, 0.85), rgba(30, 58, 95, 0.9)), 
                url('https://advisly.com/wp-content/uploads/2025/05/group-of-business-people-working-as-team-in-office-TRCKLYU-768x512.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0 100px;
    position: relative;
}

.article-hero-overlay {
    position: relative;
    z-index: 1;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.back-to-blog:hover {
    gap: 12px;
}

.article-category-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy-blue);
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.article-hero h1 {
    color: var(--white);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.article-meta {
    color: rgba(255,255,255,0.95);
    font-size: 1.05rem;
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.article-meta i {
    margin-right: 8px;
    color: var(--yellow);
}

/* Article Body */
.article-body {
    padding: 80px 0;
}

.article-content-card {
    background: var(--white);
    padding: 60px 80px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.08);
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

/* Lead Section with Icon */
.lead-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFF 100%);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--yellow);
    margin-bottom: 50px;
}

.lead-icon {
    font-size: 50px;
    color: var(--yellow);
    flex-shrink: 0;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* Content Sections */
.content-section {
    margin: 45px 0;
}

.content-section h2 {
    color: var(--navy-blue);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 4px solid var(--yellow);
}

.content-section h2 i {
    color: var(--yellow);
}

/* Section with Side Image */
.section-with-image {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 30px 0;
}

.section-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

/* Content with Icon */
.content-with-icon {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin: 30px 0;
}

.section-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--yellow);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(43, 69, 112, 0.3);
}

.section-text-block {
    flex: 1;
}

/* Stats Callout */
.stats-callout {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 45px 50px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(43, 69, 112, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

.stat-divider {
    width: 2px;
    height: 80px;
    background: rgba(255,255,255,0.3);
}

.emphasis-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin: 30px 0;
}

/* Document Cards */
.document-card {
    display: flex;
    gap: 35px;
    background: var(--light-bg);
    padding: 35px 40px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid var(--navy-blue);
}

.document-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    flex-shrink: 0;
    background: var(--navy-blue);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-content {
    flex: 1;
}

.document-content h3 {
    color: var(--navy-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.document-image-small {
    float: right;
    width: 280px;
    margin: 0 0 20px 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.document-image-small img {
    width: 100%;
    height: auto;
    display: block;
}

/* Icon Lists */
.icon-list {
    margin: 25px 0;
}

.icon-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.icon-list-item i {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.info-note {
    background: #E8F4F8;
    border-left: 4px solid #3498db;
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-note i {
    color: #3498db;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-note p {
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.benefit-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.benefit-box i {
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 15px;
    display: block;
}

.benefit-box h4 {
    color: var(--navy-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* Two Column Lists */
.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 25px 0;
}

.two-column-list ul {
    margin: 0;
    padding-left: 25px;
}

.two-column-list li {
    margin-bottom: 12px;
}

/* Checklist Items */
.checklist-items {
    margin: 25px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.checklist-item i {
    color: var(--yellow);
    font-size: 1.2rem;
}

/* Mistakes Grid */
.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.mistake-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.mistake-card:hover {
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.mistake-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.mistake-card h4 {
    color: var(--navy-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.important-reminder {
    background: linear-gradient(135deg, #FFE8E8 0%, #FFF 100%);
    border-left: 5px solid #e74c3c;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 40px;
}

.important-reminder i {
    font-size: 2rem;
    color: #e74c3c;
    flex-shrink: 0;
}

.important-reminder h4 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.important-reminder p {
    margin: 0;
}

/* Integration Section */
.integration-section {
    background: linear-gradient(135deg, #F0F8FF 0%, #FFF 100%);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid var(--navy-blue);
}

.integration-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 35px;
}

.integration-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.integration-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.integration-card h4 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.integration-card p {
    margin: 0;
    color: var(--text-light);
}

/* Action Steps */
.action-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.step-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s;
}

.step-card:hover {
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--yellow);
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--navy-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    margin: 0;
    color: var(--text-light);
}

/* Article CTA Box */
.article-cta-box {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    border-radius: 20px;
    padding: 50px 60px;
    margin: 45px 0;
    box-shadow: 0 15px 50px rgba(43, 69, 112, 0.3);
}

.cta-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.cta-icon {
    font-size: 5rem;
    color: var(--yellow);
    flex-shrink: 0;
}

.cta-text h3 {
    color: #ffffff !important;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-text p {
    color: #ffffff !important;
    font-size: 1.15rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Conclusion */
.conclusion-section {
    margin-top: 45px;
    padding-top: 45px;
    border-top: 3px solid var(--yellow);
}

.conclusion-section h2 {
    color: var(--navy-blue);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.conclusion-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 25px;
}

/* Related Articles */
.related-articles {
    background: var(--navy-blue);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.related-articles h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.related-articles p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Typography */
.article-content-card p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.article-content-card h3 {
    color: var(--navy-blue);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 35px 0 20px;
}

/* Blog Listing Page */
.blog-listing-hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.section-label {
    color: var(--yellow);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blog-listing-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

.blog-listing-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.blog-grid-listing {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card-listing {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-card-listing:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card-listing:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--yellow);
    color: var(--navy-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content-listing {
    padding: 35px;
}

.blog-card-content-listing h2 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-content-listing p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.blog-card-meta i {
    margin-right: 6px;
    color: var(--yellow);
}

.read-more {
    color: var(--navy-blue);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.blog-card-listing:hover .read-more i {
    transform: translateX(5px);
}

.blog-card-listing.coming-soon {
    opacity: 0.7;
}

.coming-soon-overlay {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.coming-soon-overlay i {
    font-size: 50px;
    color: var(--yellow);
    margin-bottom: 15px;
}

.coming-soon-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

.blog-cta-section {
    background: var(--white);
    padding: 80px 0;
}

.cta-box-large {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 70px 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(43, 69, 112, 0.3);
}

.cta-box-large h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-box-large p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 968px) {
    .grid-3col {
        grid-template-columns: 1fr;
    }
    
    .center-column {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* Compact Mobile Header */
    .site-header {
        padding: 10px 0;
    }
    
    .logo img {
        height: 35px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--navy-blue);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu .btn {
        width: 100%;
        margin-top: 10px;
    }
    
    /* Contact page mobile */
    .contact-card {
        padding: 40px 30px;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-hero-modern h1 {
        font-size: 2.2rem;
    }
    
    .legal-wrapper {
        padding: 30px;
    }
    
    /* Blog mobile styles */
    .article-hero {
        padding: 100px 0 60px;
        background-attachment: scroll;
    }
    
    .article-hero h1 {
        font-size: 2.2rem;
    }
    
    .article-content-card {
        padding: 40px 25px;
        margin-top: -60px;
    }
    
    .lead-section {
        flex-direction: column;
        gap: 20px;
        padding: 30px 25px;
    }
    
    .lead-icon {
        font-size: 35px;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
        gap: 10px;
    }
    
    .section-with-image {
        grid-template-columns: 1fr;
    }
    
    .content-with-icon {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }
    
    .section-icon-large {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .stats-callout {
        flex-direction: column;
        gap: 30px;
        padding: 35px 25px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-divider {
        width: 80px;
        height: 2px;
    }
    
    .document-card {
        flex-direction: column;
        gap: 20px;
        padding: 30px 25px;
    }
    
    .document-number {
        width: 70px;
        height: 70px;
        font-size: 3rem;
    }
    
    .document-image-small {
        float: none;
        width: 100%;
        margin: 20px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column-list {
        grid-template-columns: 1fr;
    }
    
    .mistakes-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-cards {
        grid-template-columns: 1fr;
    }
    
    .action-steps {
        grid-template-columns: 1fr;
    }
    
    .article-cta-box {
        padding: 40px 25px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-icon {
        font-size: 3.5rem;
    }
    
    .cta-text h3 {
        font-size: 1.7rem;
    }
    
    .article-meta {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    /* Blog listing mobile */
    .blog-listing-hero h1 {
        font-size: 2.2rem;
    }
    
    .blog-grid-listing {
        grid-template-columns: 1fr;
    }
    
    .cta-box-large {
        padding: 50px 30px;
    }
    
    .cta-box-large h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Updated Contact Section - h2 titles outside white boxes */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper h2,
.contact-info h2 {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

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

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 3px rgba(43, 69, 112, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

/* Contact info wrapper to separate h2 from white box */
.contact-info-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.contact-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    color: var(--navy-blue);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-details a {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--golden-yellow);
}

.social-media-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.social-media-section h3 {
    font-size: 1.1rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-links-large a {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links-large a:hover {
    background: var(--navy-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.form-success,
.form-error {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-success {
    border: 2px solid #4CAF50;
}

.form-success h3 {
    color: #4CAF50;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.form-error {
    border: 2px solid #e74c3c;
}

.form-error p {
    color: #e74c3c;
    font-size: 1.1rem;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* Footer Disclaimer Section - SmartAsset Style */
    background: #1a3a52;
    margin: 0 -9999px;
    padding: 30px 9999px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.15);

/* ========================================
   FOOTER DISCLAIMER - READABLE WHITE VERSION
   ======================================== */

.footer-disclaimer {
    margin-top: 0 !important;
    padding: 40px 0 !important;
    background: #ffffff !important;
    width: 100% !important;
    display: block !important;
    border-top: none !important;
}

.footer-disclaimer p {
    font-size: 0.85rem !important;
    line-height: 1.7 !important;
    color: #666666 !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-disclaimer a {
    color: #2b4570 !important;
    text-decoration: underline !important;
}

.footer-disclaimer a:hover {
    color: #1a2d47 !important;
}

.footer-bottom {
    padding: 25px 0 !important;
    background: #ffffff !important;
    text-align: center !important;
    margin-top: 0 !important;
    display: block !important;
    border-top: 1px solid #e0e0e0 !important;
}

.footer-bottom .footer-links {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    margin: 0 !important;
}

.footer-bottom .footer-links a {
    color: #666666 !important;
    font-size: 0.9rem !important;
}

.footer-bottom .footer-links a:hover {
    color: #2b4570 !important;
}

@media (max-width: 768px) {
    .footer-disclaimer p {
        font-size: 0.75rem !important;
    }
}

/* ========================================
   CONTACT PAGE SPACING FIX
   ======================================== */

.contact-info-wrapper > p {
    margin-bottom: 40px !important;
}


/* ========================================
   CONTACT PAGE - IMPROVED SPACING
   ======================================== */

.contact-info-wrapper > p {
    margin-bottom: 45px !important;
}

.contact-info-item {
    display: flex !important;
    gap: 20px !important;
    margin-bottom: 45px !important;
    padding-bottom: 45px !important;
    border-bottom: 1px solid #eee !important;
}

.contact-info-item:last-of-type {
    border-bottom: none !important;
    margin-bottom: 30px !important;
    padding-bottom: 30px !important;
}

.social-media-section {
    margin-top: 45px !important;
    padding-top: 35px !important;
    border-top: 1px solid #eee !important;
}


/* ========================================
   CONTACT PAGE - HEADER TO CONTENT SPACING
   ======================================== */

.contact-section {
    padding-top: 100px !important;
}

@media (max-width: 768px) {
    .contact-section {
        padding-top: 60px !important;
    }
}


/* ========================================
   FOOTER DISCLAIMER - BORDER ON TOP
   ======================================== */

.footer-disclaimer {
    margin-top: 50px !important;
    padding: 40px 0 30px 0 !important;
    background: #ffffff !important;
    width: 100% !important;
    display: block !important;
    border-top: 1px solid #e0e0e0 !important;
    border-bottom: none !important;
}

.footer-bottom {
    padding: 0 !important;
    background: #ffffff !important;
    text-align: center !important;
    margin-top: 0 !important;
    display: none !important;
    border-top: none !important;
}


/* ========================================
   HEADER & FOOTER LOGO SIZE ADJUSTMENTS
   ======================================== */

    height: 150px !important;
    width: auto !important;
}

    height: 80px !important;
    width: auto !important;
    margin-bottom: 20px !important;
}


/* ========================================
   FOOTER CLEANUP & SPACING
   ======================================== */

.footer-col-logo {
    padding-right: 30px !important;
}

.footer-col h4 {
    margin-bottom: 20px !important;
    font-size: 1.1rem !important;
}

.footer-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-col ul li {
    margin-bottom: 12px !important;
}

.footer-col ul li a {
    color: var(--text-light) !important;
    transition: color 0.3s ease !important;
}

.footer-col ul li a:hover {
    color: var(--navy-blue) !important;
}


/* ========================================
   HEADER & FOOTER LOGO - ORIGINAL SIZES
   ======================================== */

    height: auto !important;
    width: auto !important;
}

    height: auto !important;
    width: auto !important;
    margin-bottom: 20px !important;
}


/* ========================================
   SIMPLE BLOG CARDS (NO IMAGES)
   ======================================== */

.grid-3col-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card-simple {
    background: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--golden-yellow);
}

.blog-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.blog-category {
    display: inline-block;
    background: var(--golden-yellow);
    color: var(--navy-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.blog-card-simple h3 {
    font-size: 1.3rem;
    margin: 15px 0;
    line-height: 1.4;
}

.blog-card-simple h3 a {
    color: var(--navy-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-simple h3 a:hover {
    color: var(--golden-yellow);
}

.blog-card-simple p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 15px 0;
}

.read-more {
    display: inline-block;
    color: var(--navy-blue);
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--golden-yellow);
    transform: translateX(5px);
}

@media (max-width: 968px) {
    .grid-3col-simple {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .grid-3col-simple {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   HEADER & FOOTER LOGO - HEADER 75PX
   ======================================== */

.site-header .logo img {
    height: auto !important;
    width: auto !important;
    max-height: 75px !important;
}

.footer-logo {
    max-width: 180px !important;
    height: auto !important;
    width: auto !important;
    margin-bottom: 20px !important;
}


/* ========================================
   CLICKABLE BLOG CARDS
   ======================================== */

.blog-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.blog-card-link .blog-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-card-link .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-card-link h3 a {
    color: inherit;
    text-decoration: none;
}


/* ========================================
   HOMEPAGE BLOG GRID - ALIGNED CARDS
   ======================================== */

.blog-grid .grid-3col > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-grid .grid-3col .blog-card-link {
    margin-top: 0 !important;
}

.blog-grid .grid-3col .blog-card {
    margin-top: 0 !important;
    height: 100%;
}

/* Remove center column navy background for homepage */
.blog-grid .center-column {
    background: transparent !important;
    padding: 0 !important;
}

.blog-grid .center-column .blog-card {
    background: white !important;
}


/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.page-hero {
    background: var(--navy-blue);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.about-intro,
.about-story,
.what-we-do,
.our-approach {
    margin-bottom: 60px;
}

.about-intro h2,
.about-story h2,
.what-we-do h2,
.our-approach h2 {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-story p,
.our-approach p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--golden-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--navy-blue);
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-large {
    padding: 16px 50px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* ========================================
   CONTACT PAGE - TWO CARD LAYOUT
   ======================================== */

.info-cards-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

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


/* ========================================
   CONTACT PAGE - SIDE BY SIDE LAYOUT
   ======================================== */

.contact-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-sidebar .info-card-modern {
    background: #f8f9fa;
}

@media (max-width: 968px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   MAGAZINE-STYLE ARTICLE
   ======================================== */

.magazine-article {
    background: #ffffff;
}

.article-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: #f8f9fa;
}

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

.article-category {
    display: inline-block;
    color: var(--golden-yellow);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.article-header h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--navy-blue);
    margin-bottom: 25px;
    font-weight: 800;
}

.article-deck {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    font-weight: 400;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #777;
}

.article-meta .divider {
    color: #ccc;
}

.article-hero-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.article-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.article-content {
    padding: 60px 0;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 28px;
}

.drop-cap::first-letter {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 0.9;
    float: left;
    margin: 8px 10px 0 0;
    color: var(--navy-blue);
}

.article-content h2 {
    font-size: 1.75rem;
    color: var(--navy-blue);
    margin: 50px 0 25px;
    font-weight: 700;
    line-height: 1.3;
}

.article-callout {
    background: #f8f9fa;
    border-left: 4px solid var(--golden-yellow);
    padding: 25px 30px;
    margin: 40px 0;
}

.article-callout h3 {
    font-size: 1.1rem;
    color: var(--navy-blue);
    margin: 0 0 12px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-callout p {
    margin: 0;
    font-size: 1.05rem;
    color: #555;
}

.article-pullquote {
    font-size: 1.5rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--navy-blue);
    margin: 50px 0;
    padding: 0 40px;
    border-left: 3px solid var(--golden-yellow);
    font-weight: 500;
}

.article-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 50px 0;
}

.article-content em {
    font-style: italic;
    color: #555;
}

.article-footer {
    padding: 40px 0 60px;
    border-top: 1px solid #eee;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    background: #f0f0f0;
    color: var(--navy-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-deck {
        font-size: 1.1rem;
    }
    
    .article-content {
        font-size: 1.05rem;
        padding: 40px 0;
    }
    
    .article-pullquote {
        font-size: 1.25rem;
        padding: 0 20px;
    }
    
    .drop-cap::first-letter {
        font-size: 3.5rem;
    }
}


/* ========================================
   MAGAZINE-STYLE ARTICLE
   ======================================== */

.magazine-article {
    background: white;
}

.article-header-magazine {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    text-align: center;
}

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

.article-category-badge {
    display: inline-block;
    background: var(--golden-yellow);
    color: var(--navy-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.article-header-magazine h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.article-deck {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 30px;
}

.article-meta-magazine {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.article-meta-magazine .divider {
    opacity: 0.5;
}

.article-hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.article-content-magazine {
    padding: 60px 0 80px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2d3748;
}

.article-content-magazine p {
    margin-bottom: 1.5em;
}

.drop-cap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.85;
    font-weight: 700;
    color: var(--navy-blue);
    margin: 8px 12px 0 0;
}

.article-content-magazine h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin: 2.5em 0 1em;
    line-height: 1.3;
}

.article-content-magazine h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin: 2em 0 1em;
}

.pullquote-box {
    background: #f7fafc;
    border-left: 5px solid var(--golden-yellow);
    padding: 40px;
    margin: 3em 0;
}

.pullquote-icon {
    color: var(--golden-yellow);
    font-size: 2rem;
    margin-bottom: 15px;
}

.pullquote-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--navy-blue);
    font-weight: 500;
    margin: 0;
}

.callout-box {
    background: #fff5e6;
    border: 2px solid var(--golden-yellow);
    border-radius: 8px;
    padding: 30px;
    margin: 3em 0;
}

.callout-box h3 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.callout-box h3 i {
    color: var(--golden-yellow);
}

.callout-box p {
    margin-bottom: 1em;
}

.callout-box p:last-child {
    margin-bottom: 0;
}

.insight-box {
    background: #e6f3ff;
    border-left: 5px solid #3182ce;
    padding: 30px;
    margin: 3em 0;
}

.insight-box h3 {
    color: #2c5282;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.insight-box p {
    margin-bottom: 0;
    color: #2d3748;
}

.article-footer-cta {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin: 4em 0 3em;
}

.article-footer-cta h3 {
    color: white;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.article-footer-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.article-disclaimer {
    background: #f7fafc;
    border-top: 3px solid #e2e8f0;
    padding: 30px;
    margin-top: 3em;
    font-size: 0.95rem;
    color: #4a5568;
}

.article-disclaimer h4 {
    color: var(--navy-blue);
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.article-disclaimer p {
    margin-bottom: 1em;
    line-height: 1.6;
}

.article-disclaimer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .article-header-magazine h1 {
        font-size: 2rem;
    }
    
    .article-deck {
        font-size: 1.1rem;
    }
    
    .article-hero-image {
        height: 300px;
    }
    
    .article-content-magazine {
        font-size: 1.05rem;
        padding: 40px 0 60px;
    }
    
    .drop-cap::first-letter {
        font-size: 3rem;
    }
    
    .pullquote-text {
        font-size: 1.2rem;
    }
    
    .pullquote-box,
    .callout-box,
    .article-footer-cta {
        padding: 25px;
    }
}


/* ========================================
   HIDE BACK BUTTON AND CATEGORY BADGE ON BLOG ARTICLES
   ======================================== */

/* Hide the back to blog button */
.back-to-blog,
.blog-back-link,
.breadcrumb-back,
a[href*="back"],
.article-header .btn-back {
    display: none !important;
}

/* Hide category badge in article headers */
.article-header .category-badge,
.blog-header .category-badge,
.article-category,
.post-category {
    display: none !important;
}

/* Reduce top padding on blog article headers to eliminate dead space */
.blog-article-header,
.article-header,
.post-header {
    padding-top: 60px !important;
}


/* ========================================
   IMPROVE BLOG HEADER READABILITY
   ======================================== */

/* Make date and read time more visible */
.blog-article-header .article-meta,
.article-header .article-meta,
.post-header .post-meta,
.blog-meta,
.article-meta-info {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
}

.blog-article-header .article-meta i,
.article-header .article-meta i {
    color: var(--golden-yellow) !important;
    margin-right: 5px;
}

/* Fix category badge to be more visible */
.blog-article-header .category-badge,
.article-header .category-badge,
.post-category-badge {
    background: var(--golden-yellow) !important;
    color: var(--navy-blue) !important;
    padding: 8px 20px !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    display: inline-block !important;
    margin-bottom: 20px !important;
}

/* If category badge should remain visible, remove from hide rules */
/* Override previous hide rule for category if you want to keep it visible */
.article-header .category-badge.show-badge,
.blog-header .category-badge.show-badge {
    display: inline-block !important;
}


/* ========================================
   BLOG HEADER - FINAL CLEAN VERSION
   ======================================== */

/* HIDE category badge completely */
.blog-article-header .category-badge,
.article-header .category-badge,
.post-category-badge,
.category-badge,
.post-category {
    display: none !important;
}

/* Make date and read time simple white text */
.blog-article-header .article-meta,
.article-header .article-meta,
.post-header .post-meta,
.blog-meta,
.article-meta-info {
    color: white !important;
    font-weight: 400 !important;
    opacity: 1 !important;
}

/* Icons also white */
.blog-article-header .article-meta i,
.article-header .article-meta i,
.post-meta i {
    color: white !important;
}

/* Reduce top padding to remove dead space */
.blog-article-header,
.article-header,
.post-header {
    padding-top: 60px !important;
}


/* ========================================
   HIDE ALL CATEGORY BADGES - COMPREHENSIVE
   ======================================== */

/* Hide category badge with all possible class names */
.category-badge,
.post-category,
.article-category,
.blog-category,
.category-label,
.post-category-badge,
.article-category-badge,
.blog-category-badge,
.category-tag,
.post-tag,
[class*="category"],
[class*="badge"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Target specific text content */
.blog-article-header > *:first-child,
.article-header > *:first-child,
.post-header > *:first-child {
    display: none !important;
}

/* Make date and time white */
.blog-article-header .article-meta,
.article-header .article-meta,
.post-header .post-meta,
.blog-meta,
.article-meta-info {
    color: white !important;
    font-weight: 400 !important;
    opacity: 1 !important;
}

.blog-article-header .article-meta i,
.article-header .article-meta i,
.post-meta i {
    color: white !important;
}

/* Reduce top padding */
.blog-article-header,
.article-header,
.post-header {
    padding-top: 60px !important;
}


/* ========================================
   MAKE DATE AND READ TIME MORE VISIBLE
   ======================================== */

/* Brighter white for date and read time */
.blog-article-header .article-meta,
.article-header .article-meta,
.post-header .post-meta,
.blog-meta,
.article-meta-info,
.article-meta span {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 400 !important;
    opacity: 1 !important;
    font-size: 1.05rem !important;
}

/* Icons also bright white/yellow */
.blog-article-header .article-meta i,
.article-header .article-meta i,
.post-meta i {
    color: rgba(255, 255, 255, 0.95) !important;
}


/* ========================================
   UNIFIED BLOG ARTICLE HEADER STYLE
   ======================================== */

/* Magazine article header - unified style */
.article-header-magazine,
.blog-article-header,
.article-header,
.post-header {
    padding: 80px 0 40px !important;
    background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%) !important;
    color: white !important;
    text-align: center !important;
}

/* Main title styling */
.article-header-magazine h1,
.blog-article-header h1,
.article-header h1,
.post-header h1,
.blog-title,
.article-title {
    font-size: 3rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    margin-bottom: 20px !important;
    color: white !important;
    padding: 0 20px !important;
}

/* Subtitle/deck styling */
.article-deck,
.article-subtitle,
.post-subtitle {
    font-size: 1.4rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400 !important;
    margin-bottom: 30px !important;
    padding: 0 20px !important;
}

/* Meta information (author, date, read time) */
.article-meta-magazine,
.article-meta,
.post-meta,
.blog-meta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: 1rem !important;
    color: white !important;
    margin-top: 20px !important;
}

/* Individual meta items */
.article-meta-magazine span,
.article-meta span,
.post-meta span {
    color: white !important;
    opacity: 1 !important;
    font-weight: 400 !important;
}

/* Icons in meta */
.article-meta-magazine i,
.article-meta i,
.post-meta i {
    color: var(--golden-yellow) !important;
    margin-right: 5px !important;
}

/* Dividers between meta items */
.article-meta-magazine .divider,
.divider {
    opacity: 0.5 !important;
    color: white !important;
}

/* Author name */
.author {
    color: white !important;
}

/* Ensure no category badges show */
.article-category-badge,
.category-badge,
.post-category {
    display: none !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .article-header-magazine h1,
    .blog-article-header h1,
    .article-header h1 {
        font-size: 2rem !important;
    }
    
    .article-deck {
        font-size: 1.1rem !important;
    }
    
    .article-meta-magazine {
        font-size: 0.9rem !important;
    }
}


/* ========================================
   FORCE ALL BLOG HEADERS TO MATCH MAGAZINE TEMPLATE
   ======================================== */

/* Force gradient background on ALL blog headers */
.blog-article-header,
.article-header,
.post-header,
.article-header-magazine,
section[class*="header"],
.blog-header {
    padding: 80px 0 40px !important;
    background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%) !important;
    color: white !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Force all titles to be centered white */
.blog-article-header h1,
.article-header h1,
.post-header h1,
.article-header-magazine h1,
.blog-title,
h1.article-title,
section[class*="header"] h1 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    margin: 0 auto 20px auto !important;
    color: white !important;
    text-align: center !important;
    padding: 0 20px !important;
    max-width: 900px !important;
}

/* Force subtitle/deck to be centered */
.article-deck,
.article-subtitle,
.post-subtitle,
.hero-subtitle,
p.subtitle {
    font-size: 1.4rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400 !important;
    margin: 0 auto 30px auto !important;
    text-align: center !important;
    padding: 0 20px !important;
    max-width: 800px !important;
}

/* Force meta (date/time) to be centered with icons */
.article-meta,
.post-meta,
.blog-meta,
.article-meta-magazine,
.article-meta-info {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    font-size: 1rem !important;
    color: white !important;
    margin: 20px auto 0 auto !important;
    text-align: center !important;
}

/* Force meta text to be white */
.article-meta span,
.post-meta span,
.article-meta-magazine span,
.blog-meta span {
    color: white !important;
    opacity: 1 !important;
    font-weight: 400 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}

/* Force icons to be golden yellow */
.article-meta i,
.post-meta i,
.article-meta-magazine i,
.blog-meta i,
.far,
.fas {
    color: #f7b32b !important;
}

/* Hide category badges everywhere */
.category-badge,
.article-category-badge,
.post-category,
.blog-category,
[class*="category-badge"],
[class*="category-label"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide "Back to Blog" buttons */
.back-to-blog,
.blog-back-link,
a[href*="back"] {
    display: none !important;
}

/* Force author name to be white */
.author,
.article-author,
.post-author {
    color: white !important;
}

/* Dividers */
.divider {
    opacity: 0.5 !important;
    color: white !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .blog-article-header h1,
    .article-header h1,
    .article-header-magazine h1 {
        font-size: 2rem !important;
    }
    
    .article-deck,
    .article-subtitle {
        font-size: 1.1rem !important;
    }
    
    .article-meta,
    .article-meta-magazine {
        font-size: 0.9rem !important;
    }
}


/* ========================================
   CHART STYLING FOR ARTICLES
   ======================================== */

.chart-container {
    max-width: 900px;
    width: 100%;
    margin: 3em auto;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chart-container canvas {
    min-height: 500px !important;
    max-height: 600px !important;
}

@media (max-width: 768px) {
    .chart-container {
        padding: 20px;
        margin: 2em 0;
    }
    
    .chart-container canvas {
        min-height: 350px !important;
        max-height: 400px !important;
    }
}

