/*
Theme Name: APJ Technologies Pvt. Ltd.
Theme URI: https://apjtech.com
Author: APJ Technologies Pvt. Ltd.
Author URI: https://apjtech.com
Description: A modern WordPress theme for APJ Technologies Pvt. Ltd. with custom color scheme (#04476e, #f58615) and Didact Gothic typography. Clean, professional, and fully responsive.
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: apj-tech
Tags: custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-width-template, threaded-comments, translation-ready, blog, portfolio, business

APJ Technologies Pvt. Ltd. WordPress Theme, Copyright 2024 APJ Technologies Pvt. Ltd.
*/

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

body {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Didact Gothic', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #04476e;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.6rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.2rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #04476e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #f58615;
}

/* ============================================
   Header Styles - Modern & Compact
   ============================================ */
.site-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #04476e;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 120px;
    /* Increased height for larger logo */
}

.site-branding {
    flex-shrink: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    height: 100%;
}

.logo-link img {
    height: 95px;
    /* Increased logo size */
    width: auto;
    max-width: 320px;
    display: block;
    transition: transform 0.3s ease;
}

.site-logo,
.custom-logo {
    height: 95px;
    /* Increased logo size */
    width: auto;
    max-width: 320px;
    display: block;
}

.logo-link:hover img {
    transform: scale(1.05);
}

.site-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    color: #04476e;
    letter-spacing: -0.5px;
}

.site-title a {
    color: #04476e;
    text-decoration: none;
}

.site-title a:hover {
    color: #f58615;
}

.site-description {
    font-size: 1rem;
    color: rgba(4, 71, 110, 0.8);
    margin: 0;
}

/* ============================================
   Navigation
   ============================================ */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
}

.menu-toggle:focus {
    outline: none;
    background-color: transparent;
}

.menu-toggle:hover,
.menu-toggle:active {
    background-color: transparent;
    transform: none;
    box-shadow: none;
}

.menu-toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 18px;
}

.menu-toggle-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #04476e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.main-navigation>ul>li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-navigation>ul>li>a {
    color: #04476e;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.6rem 1.25rem;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    font-weight: 500;
    border-radius: 12px;
}



/* Active & Hover Highlight */
.main-navigation>ul>li>a:hover,
.main-navigation>ul>li>a:focus,
.main-navigation .current-menu-item>a,
.main-navigation .current-menu-ancestor>a,
.main-navigation .current-menu-parent>a,
.main-navigation .current-page-ancestor>a,
.main-navigation .current_page_item>a {
    color: #f58615 !important;
    font-weight: 600 !important;
}

.main-navigation .current-menu-item>a,
.main-navigation .current-menu-ancestor>a,
.main-navigation .current-menu-parent>a,
.main-navigation .current-page-ancestor>a,
.main-navigation .current_page_item>a {
    background-color: transparent;
    box-shadow: none;
}

/* Dropdown Menu Styles */
.main-navigation .menu-item-has-children>a {
    padding-right: 1.5rem;
}

.main-navigation .menu-item-has-children>a::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    position: absolute;
    right: 0.25rem;
    /* Moved slightly closer/adjusted */
    top: 50%;
    /* Centered vertically */
    transform: translateY(-50%) rotate(45deg);
    margin-top: -3px;
    /* Visual correction for the arrow center of mass */
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 1;
}

.main-navigation .menu-item-has-children:hover>a::before {
    transform: translateY(-20%) rotate(225deg);
    margin-top: 0;
}

/* Hide default after that was there */
.main-navigation .menu-item-has-children>a::after {
    content: none;
}

.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 240px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
    padding: 0.75rem 0;
    /* Adjusted padding */
    margin: 0;
    list-style: none;
    display: block;
    height: auto !important;
    /* Force auto height to wrap content */
    border-radius: 0 0 12px 12px;
}

.main-navigation .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li {
    display: block;
    width: 100%;
    height: auto;
}

.main-navigation .sub-menu a {
    color: #334155;
    padding: 0.75rem 1rem;
    display: block;
    font-size: 1rem;
    transition: all 0.2s ease;
    border-radius: 8px;
    height: auto;
    position: relative;
    /* Determine context for absolute arrow */
}

.main-navigation .sub-menu a:hover,
.main-navigation .sub-menu a:focus {
    color: #f58615;
    background-color: transparent;
    transform: translateX(5px);
}

.main-navigation .sub-menu .current-menu-item>a {
    color: #f58615 !important;
    background-color: transparent;
    font-weight: 600 !important;
}

.main-navigation .sub-menu .current-menu-item>a:after {
    display: none;
}

/* ============================================
   Main Content Area
   ============================================ */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.content-area {
    width: 100%;
}

/* ============================================
   Posts & Pages
   ============================================ */
.post,
.page {
    border-bottom: 1px solid #e0e0e0;
}

.post:last-child,
.page:last-child {
    border-bottom: none;
}

.entry-title {
    color: #04476e;
    margin-bottom: 1rem;
}

.entry-title a {
    color: #04476e;
    text-decoration: none;
}

.entry-title a:hover {
    color: #f58615;
}

.entry-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.entry-content {
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1rem;
}

.entry-content a {
    color: #04476e;
    text-decoration: underline;
}

.entry-content a:hover {
    color: #f58615;
}

/* ============================================
   Buttons
   ============================================ */
.button,
button,
input[type="submit"],
input[type="button"] {
    background-color: #04476e;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #f58615;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button-outline-primary {
    background-color: transparent;
    color: #04476e;
    border: 2px solid #04476e;
}

.button-outline-primary:hover {
    background-color: #04476e;
    color: #ffffff;
    border-color: #04476e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background-color: #0f172a;
    /* Darker, more premium navy/slate */
    color: #cbd5e1;
    padding: 3rem 0 1.5rem;
    /* Reduced padding */
    font-size: 0.9rem;
    /* Slightly smaller text */
    margin-top: auto;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.5rem;
    /* Reduced gap */
    margin-bottom: 2.5rem;
    /* Reduced margin */
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 0.75rem;
    text-decoration: none;
}

.footer-logo {
    height: 95px;
    /* Increased size to match header logo */
    width: auto;
    display: block;
}

.footer-logo-title {
    color: #ffffff;
    font-size: 1.5rem;
    /* Reduced size */
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-desc {
    max-width: 320px;
    line-height: 1.6;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-heading {
    color: #ffffff;
    font-size: 1rem;
    /* Reduced size */
    font-weight: 600;
    margin-bottom: 1rem;
    /* Reduced margin */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
    /* Reduced spacing */
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #f58615;
    transform: translateX(4px);
}

.social-icons-wrapper {
    display: flex;
    gap: 0.75rem;
    /* Reduced gap */
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    /* Smaller icons */
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    background-color: #f58615;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px -5px rgba(245, 134, 21, 0.4);
    border-color: #f58615;
}

.social-icon svg {
    width: 18px;
    /* Smaller icon size */
    height: 18px;
}

.site-info-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    /* Reduced padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}

.copyright-text {
    font-weight: 400;
}

.developer-credit a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.developer-credit a:hover {
    color: #f58615;
}

/* ============================================
   Widgets & Sidebar (Kept for compatibility)
   ============================================ */
.widget {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 3px solid #f58615;
}

.widget-title {
    color: #04476e;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.widget ul {
    list-style: none;
}

.widget li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .site-footer {
        padding: 3rem 0;
    }

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

    .footer-brand {
        text-align: center;
        align-items: center;
    }

    .footer-desc {
        text-align: center;
        margin: 0 auto;
    }

    .footer-links {
        text-align: center;
    }

    .footer-social {
        align-items: center;
        text-align: center;
    }

    .social-icons-wrapper {
        justify-content: center;
    }

    .site-info-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ============================================
   Blog & Single Post Styles - Modern Redesign
   ============================================ */

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, #0f172a 0%, #04476e 100%);
    padding: 6rem 0 4rem;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(245, 134, 21, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(4, 71, 110, 0.4) 0%, transparent 40%);
    z-index: 0;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -1px;
}

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

/* Blog Grid */
.blog-grid-section {
    padding-bottom: 5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(4, 71, 110, 0.1);
    border-color: rgba(245, 134, 21, 0.2);
}

.blog-card-image-wrapper {
    position: relative;
    padding-top: 60%;
    /* Aspect ratio 5:3 */
    overflow: hidden;
    background-color: #f1f5f9;
}

.blog-card-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #04476e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.blog-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #0f172a;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    background: linear-gradient(to right, #04476e, #04476e);
    background-size: 0% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease;
}

.blog-card:hover .blog-card-title a {
    color: #04476e;
    background-size: 100% 2px;
}

.blog-card-excerpt {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.read-more-link {
    color: #04476e;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s ease;
}

.read-more-link:hover {
    color: #f58615;
}

/* Single Post Styles */
.single-post-wrapper {
    background-color: #ffffff;
    padding: 4rem 0;
}

.single-post-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.single-post-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

/* Post Content Column */
.single-post-main {
    min-width: 0;
}

.single-post-header {
    margin-bottom: 2rem;
    text-align: left;
}

.single-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.single-post-meta .meta-separator {
    color: #cbd5e1;
}

.single-post-meta svg {
    color: #f58615;
}

.single-post-title {
    font-size: 2.75rem;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 0;
    font-weight: 800;
}

.single-featured-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.single-post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #334155;
    padding-bottom: 3rem;
}

.single-post-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #0f172a;
    font-weight: 700;
}

.single-post-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
    font-weight: 600;
}

.single-post-content p {
    margin-bottom: 1.5rem;
}

.single-post-content blockquote {
    border-left: 4px solid #f58615;
    margin: 2rem 0;
    font-size: 1.25rem;
    font-style: italic;
    color: #0f172a;
    background: #fff8f1;
    padding: 2rem;
    border-radius: 0 12px 12px 0;
}

.single-post-content ul,
.single-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.single-post-content li {
    margin-bottom: 0.5rem;
}

/* Sidebar Styles */
.single-post-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #f58615;
}

/* Related Posts Widget */
.related-post-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: center;
}

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

.related-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-thumb:hover img {
    transform: scale(1.05);
}

.related-post-info {
    flex: 1;
}

.related-post-date {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.related-post-title {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
}

.related-post-title a {
    color: #334155;
    text-decoration: none;
    transition: color 0.2s ease;
}

.related-post-title a:hover {
    color: #04476e;
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.categories-list li:last-child a {
    border-bottom: none;
}

.categories-list li a:hover {
    color: #04476e;
    padding-left: 0.5rem;
}

.categories-list li a .count {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.1rem 0.6rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.categories-list li a:hover .count {
    background: #e0f2fe;
    color: #04476e;
}

/* Post Navigation */
.single-post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    gap: 1rem;
}

.nav-link {
    display: flex;
    flex-direction: column;
    max-width: 48%;
    text-decoration: none;
    padding: 1rem;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.nav-link:hover {
    background: #f8fafc;
}

.nav-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.nav-title {
    font-size: 1rem;
    color: #0f172a;
    font-weight: 600;
    line-height: 1.4;
}

.nav-next {
    text-align: right;
    align-items: flex-end;
}

.nav-previous {
    text-align: left;
    align-items: flex-start;
}

/* Responsive */
@media (max-width: 1024px) {
    .single-post-grid {
        gap: 2rem;
        grid-template-columns: 1fr 300px;
    }
}

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

    .single-post-sidebar {
        position: static;
        margin-top: 3rem;
    }

    .single-post-title {
        font-size: 2rem;
    }
}

/* Pagination */
.pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 600;
}

.page-numbers.current,
.page-numbers:hover {
    background: #04476e;
    color: #fff;
    border-color: #04476e;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(4, 71, 110, 0.2);
}

@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2.25rem;
    }

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

    .single-post-title {
        font-size: 2rem;
    }

    .single-post-content {
        font-size: 1rem;
    }
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(4, 71, 110, 0.1);
        max-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: block;
        /* Override flex */
        height: auto;
    }

    .main-navigation.toggled {
        max-height: 80vh;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        height: auto;
    }

    .main-navigation>ul>li {
        width: 100%;
        height: auto;
        border-bottom: 1px solid rgba(4, 71, 110, 0.05);
        display: block;
        /* Override desktop flex/align-items */
    }

    .main-navigation>ul>li:last-child {
        border-bottom: none;
    }

    .main-navigation>ul>li>a {
        padding: 1rem 1.5rem;
        width: 100%;
        height: auto;
        line-height: 1.5;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-navigation>ul>li>a::after {
        display: none;
        /* Remove hover indicator */
    }

    .main-navigation .menu-item-has-children>a::before {
        content: '';
        /* Restore desktop arrow */
        display: block;
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        margin-top: -3px;
        transition: transform 0.3s ease;
    }

    .main-navigation .menu-item-has-children.active>a::before {
        transform: translateY(-50%) rotate(225deg);
        margin-top: 1px;
    }

    .main-navigation .menu-item-has-children>a::after {
        content: none;
    }

    .main-navigation .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(4, 71, 110, 0.03);
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin: 0;
        min-width: 100%;
        border-radius: 0;
    }

    .main-navigation .menu-item-has-children.active .sub-menu {
        max-height: 500px;
    }

    .main-navigation .sub-menu a {
        padding-left: 2.5rem;
        background-color: transparent;
    }

    .main-navigation .sub-menu a:hover {
        background-color: rgba(4, 71, 110, 0.05);
    }

    .site-logo,
    .logo-link img {
        height: 70px;
        /* Even smaller for mobile */
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        height: auto;
    }

    .site-branding {
        padding: 0.75rem 0;
    }

    .site-logo,
    .logo-link img {
        height: 75px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .site-main {
        padding: 1rem 15px;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

.text-primary {
    color: #04476e;
}

.text-secondary {
    color: #f58615;
}

.bg-primary {
    background-color: #04476e;
}

.bg-secondary {
    background-color: #f58615;
}

/* ============================================
   Comments
   ============================================ */
/* ============================================
   Comments
   ============================================ */
.comments-area {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.comments-title {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-body {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.comment-author {
    color: #0f172a;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    display: block;
}

.comment-author .avatar {
    margin-right: 0.75rem;
    border-radius: 50%;
    vertical-align: middle;
    width: 40px;
    height: 40px;
}

.comment-metadata {
    color: #64748b;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comment-metadata a {
    color: inherit;
    text-decoration: none;
}

.comment-content {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.5;
}

.reply {
    margin-top: 0.75rem;
}

.comment-reply-link {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: #fff;
    color: #04476e;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.comment-reply-link:hover {
    background-color: #04476e;
    color: #fff;
    border-color: #04476e;
}

/* Comment Form Redesign - Ultra Compact */
.comment-respond {
    margin-top: 1.5rem;
    background: #ffffff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

.comment-reply-title {
    font-size: 1.15rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1.2;
}

.comment-reply-title small a {
    font-size: 0.75rem;
    color: #ef4444;
    font-weight: normal;
}

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

.comment-form-comment {
    grid-column: 1 / -1;
}

.logged-in-as {
    grid-column: 1 / -1;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
}

.logged-in-as a {
    color: #04476e;
    font-weight: 600;
}

.comment-notes {
    grid-column: 1 / -1;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 600;
    color: #334155;
    font-size: 0.8rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.4rem 0.6rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.85rem;
    color: #0f172a;
    transition: all 0.2s ease;
    background-color: #f8fafc;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #04476e;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(4, 71, 110, 0.1);
}

.comment-form textarea {
    min-height: 60px;
    resize: vertical;
}

.form-submit {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.submit {
    background: #04476e;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(4, 71, 110, 0.1);
}

.submit:hover {
    background: #022a42;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(4, 71, 110, 0.2);
}

/* Checkbox for cookies */
.comment-form-cookies-consent {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-form-cookies-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #e2e8f0;
}

.comment-form-cookies-consent label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
    color: #64748b;
}

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

    .comment-respond {
        padding: 1.5rem;
    }
}

/* ============================================
   Search Form
   ============================================ */
.search-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    font-family: 'Didact Gothic', sans-serif;
}

.search-form input[type="submit"] {
    padding: 0.75rem 1.5rem;
}

/* ============================================
   Home Page Styles
   ============================================ */

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

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

.bg-light {
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.6rem;
    color: #04476e;
    margin-bottom: 0.75rem;
}

.section-description {
    font-size: 0.95rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 0.75rem;
    line-height: 1.6;
}

/* Hero Section - Full Width Redesign */
.hero-section {
    background: linear-gradient(135deg, #022a42 0%, #04476e 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem 0 2rem;
    /* Compact padding */
    color: #ffffff;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(245, 134, 21, 0.05) 0%, transparent 25%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: center;
}

.hero-content {
    text-align: left;
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 134, 21, 0.15);
    color: #f58615;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(245, 134, 21, 0.3);
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.highlight-text {
    color: #f58615;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(245, 134, 21, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.button-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button-outline-light:hover {
    background: #ffffff;
    color: #04476e;
    border-color: #ffffff;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Side Visuals */
.hero-visual {
    position: relative;
    height: 400px;
    perspective: 1000px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: absolute;
}

.main-card {
    width: 380px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(-10deg);
    padding: 1.5rem;
    z-index: 2;
    transition: transform 0.5s ease;
}

.hero-visual:hover .main-card {
    transform: translate(-50%, -55%) rotateY(0deg);
}

.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.line {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.w-75 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

.w-100 {
    width: 100%;
}

.w-60 {
    width: 60%;
}

.chart-area {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 120px;
    margin-top: 2rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bar {
    width: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.bar.highlight {
    background: #f58615;
    box-shadow: 0 0 15px rgba(245, 134, 21, 0.4);
}

.h-40 {
    height: 40%;
}

.h-60 {
    height: 60%;
}

.h-80 {
    height: 80%;
}

.h-100 {
    height: 100%;
}

.floating-card {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: 10%;
    width: 180px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: 5%;
    width: 200px;
    animation-delay: 3s;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.text-xs {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.text-lg {
    font-size: 1.1rem;
    font-weight: 700;
}

.text-success {
    color: #27c93f;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Mobile Hero */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        /* Compact mobile size */
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
        transform: scale(0.9);
    }
}

/* About Section - Full Width - Modern Card Design */
.about-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    width: 100%;
    padding: 2rem 0;
    margin: 0;
    position: relative;
    display: block;
    box-sizing: border-box;
    clear: both;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.about-section .section-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #04476e;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f58615, #ffa64d);
    border-radius: 2px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(4, 71, 110, 0.1);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #04476e, #f58615, #04476e);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #444;
}

.about-content p:last-of-type {
    margin-bottom: 1.5rem;
}

.about-content .button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(245, 134, 21, 0.3);
    transition: all 0.3s ease;
}

.about-content .button:hover {
    box-shadow: 0 6px 20px rgba(245, 134, 21, 0.4);
    transform: translateY(-2px);
}

.about-mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.about-mv-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #f58615;
    transition: all 0.3s ease;
}

.about-mv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.about-mv-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-mv-title {
    color: #04476e;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.about-mv-item p {
    font-size: 0.95rem !important;
    margin-bottom: 0 !important;
    color: #555;
    line-height: 1.5;
}

/* We Offer Section - Full Width - Modern Card Design */
.we-offer-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 50%, #f9f9f9 100%);
    width: 100%;
    padding: 2rem 0;
    margin: 0;
    position: relative;
    display: block;
    box-sizing: border-box;
    clear: both;
}

.we-offer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.we-offer-section .section-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.we-offer-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #04476e;
    font-weight: 600;
}

.we-offer-section .section-description {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #666;
}

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

.offer-card {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f58615, #ffa64d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(245, 134, 21, 0.3);
}

.offer-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #04476e 0%, #065a8a 100%);
    color: #ffffff;
    border-radius: 12px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(4, 71, 110, 0.3);
    position: relative;
    z-index: 1;
}

.offer-card:hover .offer-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(4, 71, 110, 0.4);
}

.offer-title {
    color: #04476e;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-weight: 600;
}

.offer-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    flex-grow: 1;
}

.offer-card .button {
    margin-top: auto;
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.offer-card .button:hover {
    transform: translateX(5px);
}

/* Challenges Section - Full Width - Modern Split Design */
.challenges-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    width: 100%;
    padding: 2rem 0;
    margin: 0;
    position: relative;
    display: block;
    box-sizing: border-box;
    clear: both;
}

.challenges-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.challenges-section .section-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.challenges-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #04476e;
    font-weight: 600;
}

.challenges-section .section-description {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #666;
}

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

.challenges-column {
    background: #ffffff;
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.challenges-column:first-child {
    border-left: none;
}

.challenges-column:last-child {
    border-left: none;
}

.challenges-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.challenges-column-title {
    color: #04476e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid;
    font-weight: 600;
    position: relative;
}

.challenges-column:first-child .challenges-column-title {
    border-bottom-color: #dc3545;
}

.challenges-column:last-child .challenges-column-title {
    border-bottom-color: #28a745;
}

.challenges-list,
.solutions-list {
    list-style: none;
    padding: 0;
}

.challenges-list li,
.solutions-list li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #f9f9f9 0%, #ffffff 100%);
    border-left: 4px solid;
    color: #444;
    font-size: 0.9rem;
    line-height: 1.6;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    /* Flexbox for icon alignment */
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.challenges-list li::before {
    content: '✗';
    color: #dc3545;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.solutions-list li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.challenges-list li {
    border-left-color: #dc3545;
}

.challenges-list li:hover {
    background: linear-gradient(to right, #ffe6e6 0%, #fff5f5 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
}

.solutions-list li {
    border-left-color: #28a745;
    background: linear-gradient(to right, #f0fff4 0%, #ffffff 100%);
}

.solutions-list li:hover {
    background: linear-gradient(to right, #e6ffe6 0%, #f0fff4 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
}

/* Pricing Section - Full Width - Modern Grid Design */
.pricing-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 50%, #f9f9f9 100%);
    width: 100%;
    padding: 2rem 0;
    margin: 0;
    position: relative;
    display: block;
    box-sizing: border-box;
    clear: both;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.pricing-section .section-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #04476e;
    font-weight: 600;
}

.pricing-section .section-description {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.pricing-content {
    text-align: center;
    padding: 0;
}

.pricing-subtitle {
    color: #04476e;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.pricing-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f58615, #ffa64d);
    border-radius: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.pricing-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: #04476e;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.pricing-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f58615, #ffa64d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pricing-item:hover::before {
    transform: scaleX(1);
}

.pricing-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(245, 134, 21, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.pricing-item:hover .pricing-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(245, 134, 21, 0.3));
}

.pricing-text {
    font-size: 1.05rem;
    line-height: 1.4;
    color: #04476e;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pricing-item:hover .pricing-text {
    color: #065a8a;
}

.pricing-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-cta .button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-cta .button-primary {
    box-shadow: 0 4px 15px rgba(245, 134, 21, 0.3);
}

.pricing-cta .button-primary:hover {
    box-shadow: 0 6px 20px rgba(245, 134, 21, 0.4);
    transform: translateY(-2px);
}

.pricing-cta .button-secondary {
    background-color: transparent;
    border: 2px solid #04476e;
    color: #04476e;
}

.pricing-cta .button-secondary:hover {
    background-color: #04476e;
    color: #ffffff;
    border-color: #04476e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(4, 71, 110, 0.2);
}

/* Features Section - Full Width Redesign */
.features-section {
    background: linear-gradient(to top, #f0f4f8 0%, #ffffff 100%);
    width: 100%;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.features-section .section-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-section .section-title {
    font-size: 2rem;
    color: #04476e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.features-section .section-description {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(4, 71, 110, 0.15);
}

.feature-card-header {
    background: linear-gradient(135deg, #04476e 0%, #066b9e 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.feature-card-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.feature-card-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
    margin: 0;
}

.text-accent {
    color: #f58615;
    font-weight: 700;
}

.feature-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-group-title {
    font-size: 1.1rem;
    color: #f58615;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    font-weight: 700;
    border-bottom: 2px solid rgba(245, 134, 21, 0.2);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.6rem 0;
    position: relative;
    padding-left: 1.8rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.feature-list li:hover {
    color: #04476e;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.6rem;
    color: #28a745;
    /* Green checkmark for features */
    font-weight: 900;
    font-size: 1rem;
}

/* Industries Section */
/* Industries Section - Full Width Redesign */
.industries-section {
    background: linear-gradient(135deg, #04476e 0%, #033552 100%);
    width: 100%;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Background Pattern Overlay */
.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

.industries-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.industries-section .section-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.industries-section .section-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.industries-section .section-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.industry-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.industry-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.industry-item:hover .industry-icon {
    transform: scale(1.1);
}

.industry-name {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Testimonials Section - Full Width Redesign */
.testimonials-section {
    background: #f8f9fa;
    width: 100%;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #04476e, #f58615, #04476e);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.testimonials-section .section-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonials-section .section-title {
    font-size: 2rem;
    color: #04476e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonials-section .section-description {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(4, 71, 110, 0.1);
}

.testimonial-quote-icon {
    font-size: 5rem;
    line-height: 1;
    color: rgba(245, 134, 21, 0.2);
    font-family: serif;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    padding-top: 1rem;
}

.testimonial-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #04476e, #066b9e);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author {
    color: #04476e;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}

.testimonial-role {
    color: #888;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Training Section - Full Width Redesign */
.training-section {
    background: linear-gradient(135deg, #022a42 0%, #04476e 100%);
    width: 100%;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Background Pattern */
.training-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.training-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.training-section .section-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.training-section .section-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.training-section .section-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.training-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.75rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.training-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.training-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.training-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.training-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.training-cta {
    text-align: center;
    margin-top: 2rem;
}

.training-cta .button-primary {
    background-color: #f58615;
    color: #ffffff;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(245, 134, 21, 0.4);
}

.training-cta .button-primary:hover {
    background-color: #ffffff;
    color: #f58615;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 134, 21, 0.6);
}

/* Blog Section - Full Width Redesign */
.blog-section {
    background: #f8f9fa;
    width: 100%;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.blog-section .section-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.blog-section .section-title {
    font-size: 2rem;
    color: #04476e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-section .section-description {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(4, 71, 110, 0.12);
}

.blog-thumbnail {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
    /* 16:9 Aspect Ratio */
}

.blog-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #04476e;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.blog-content-inner {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-title a {
    color: #04476e;
    text-decoration: none;
    background: linear-gradient(to right, #04476e 0%, #04476e 100%);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.3s ease, color 0.3s ease;
    padding-bottom: 2px;
}

.blog-title a:hover {
    color: #f58615;
    background-size: 100% 2px;
}

.blog-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex: 1;
}

.read-more-link {
    color: #f58615;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more-link:hover {
    gap: 0.75rem;
}

.blog-cta {
    text-align: center;
    margin-top: 2rem;
}

.blog-empty-state {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    border: 2px dashed #e0e0e0;
}

/* CTA Section */
/* CTA Section - Full Width Redesign */
.cta-section {
    background: linear-gradient(135deg, #04476e 0%, #033552 100%);
    width: 100%;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(245, 134, 21, 0.1) 0%, transparent 25%);
    pointer-events: none;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.cta-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-text-block {
    margin-bottom: 3rem;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.cta-highlight {
    font-size: 1.5rem;
    color: #f58615;
    font-weight: 700;
    margin: 0;
}

.cta-benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 3rem;
    margin-bottom: 3.5rem;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.cta-benefit-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.cta-check-icon {
    font-weight: 900;
    color: #f58615;
    font-size: 1.1rem;
}

.cta-benefit-text {
    font-weight: 500;
    font-size: 1.05rem;
}

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

.button-large {
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 600;
    min-width: 180px;
}

.button-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.button-outline-white:hover {
    background-color: #ffffff;
    color: #04476e;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-action-buttons .button-primary:hover {
    box-shadow: 0 0 20px rgba(245, 134, 21, 0.6);
}

/* FAQ Section */
/* FAQ Section - Full Width Redesign */
.faq-section {
    background: #ffffff;
    width: 100%;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.faq-section .section-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-section .section-title {
    font-size: 2rem;
    color: #04476e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-section .section-description {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: #f9f9f9;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-color: #04476e;
}

.faq-question {
    list-style: none;
    /* Hide default triangle */
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.15rem;
    color: #333;
    transition: color 0.3s ease;
}

/* Hide default marker in Safari */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-item[open] .faq-question {
    color: #04476e;
    border-bottom: 1px solid #f0f0f0;
}

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #04476e;
    transition: transform 0.3s ease;
}

.faq-toggle-icon::before {
    width: 2px;
    height: 16px;
}

.faq-toggle-icon::after {
    width: 16px;
    height: 2px;
}

.faq-item[open] .faq-toggle-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
    /* Rotate vertical bar to make it horizontal (minus) */
}

/* Optional: Rotate entire icon for standard + to x or chevron effect
   Here we just want + to - transition. 
   When open, ::before rotates 90deg, matching ::after, effectively disappearing or merging. 
*/

.faq-answer {
    padding: 1.5rem 2rem;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: #666;
}

.faq-cta a {
    color: #f58615;
    font-weight: 600;
    text-decoration: none;
}

.faq-cta a:hover {
    text-decoration: underline;
}

/* Responsive Design for Home Page */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-container {
        padding: 0 20px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-section,
    .we-offer-section,
    .challenges-section,
    .pricing-section {
        padding: 2rem 0;
    }

    .about-content {
        padding: 2rem 1.5rem;
    }

    .pricing-content {
        padding: 0;
    }

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

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

    .challenges-section {
        padding: 2.5rem 0;
    }

    .challenges-container {
        padding: 0 20px;
    }

    .challenges-section .section-title {
        font-size: 1.75rem;
    }

    .challenges-section .section-description {
        font-size: 0.95rem;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .challenges-column-title {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .challenges-list li,
    .solutions-list li {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .about-section {
        padding: 2.5rem 0;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-section .section-title {
        font-size: 1.75rem;
    }

    .about-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .about-content p:last-of-type {
        margin-bottom: 1.5rem;
    }

    .we-offer-section {
        padding: 2.5rem 0;
    }

    .we-offer-container {
        padding: 0 20px;
    }

    .we-offer-section .section-title {
        font-size: 1.75rem;
    }

    .we-offer-section .section-description {
        font-size: 0.95rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .offer-card {
        padding: 1.75rem 1.5rem;
    }

    .offer-number {
        width: 45px;
        height: 45px;
        font-size: 1.35rem;
        margin-bottom: 0.875rem;
    }

    .offer-title {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }

    .offer-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

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

    .pricing-section {
        padding: 2.5rem 0;
    }

    .pricing-container {
        padding: 0 20px;
    }

    .pricing-section .section-title {
        font-size: 1.75rem;
    }

    .pricing-section .section-description {
        font-size: 0.95rem;
    }

    .pricing-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    .pricing-item {
        padding: 1.5rem 1rem;
    }

    .pricing-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .pricing-text {
        font-size: 0.95rem;
    }

    .pricing-cta {
        flex-direction: column;
    }

    .pricing-cta .button {
        width: 100%;
        text-align: center;
    }

    .industries-grid,
    .training-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .hero-cta,
    .pricing-cta,
    .cta-buttons {
        flex-direction: column;
    }

    .hero-cta .button,
    .pricing-cta .button,
    .cta-buttons .button {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   About Us Page Styles
   ============================================ */

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #04476e 0%, #065a8a 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Background Pattern similar to other sections for consistency */
.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.about-hero-grid {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.about-hero-content {
    flex: 1;
    max-width: 600px;
}

.about-hero-title {
    font-size: 1.1rem;
    color: #f58615;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero-subtitle {
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.about-hero-cta {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.button-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.button-outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Abstract Visual Styles */
.about-hero-visual {
    flex: 1;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.abstract-tech-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: absolute;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.tech-card.main-card {
    width: 280px;
    height: 210px;
    padding: 18px;
    transform: rotateY(-10deg) rotateX(5deg);
    z-index: 2;
}

.about-hero-visual:hover .tech-card.main-card {
    transform: rotateY(0deg) rotateX(0deg);
}

.tech-card.float-card {
    padding: 15px 25px;
    bottom: 40px;
    right: 40px;
    transform: translateZ(20px);
    z-index: 3;
    background: #ffffff;
    /* Contrast */
    color: #04476e;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #f58615;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #04476e;
}

/* Card Internals */
.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.line {
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    margin-bottom: 15px;
}

.w-80 {
    width: 80%;
}

.w-60 {
    width: 60%;
}

.chart-area {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 100px;
    margin-top: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

.bar {
    width: 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px 3px 0 0;
    transition: height 1s ease;
}

.bar.highlight {
    background: #f58615;
    box-shadow: 0 0 15px rgba(245, 134, 21, 0.4);
}

.h-40 {
    height: 40%;
}

.h-60 {
    height: 60%;
}

.h-80 {
    height: 80%;
}

.h-100 {
    height: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .about-hero-section {
        padding: 3rem 0;
    }

    .about-hero-grid {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .about-hero-content {
        max-width: 100%;
    }

    .about-hero-title {
        font-size: 1rem;
    }

    .about-hero-subtitle {
        font-size: 2rem;
        text-align: center;
    }

    .about-hero-description {
        font-size: 0.95rem;
    }

    .about-hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 2rem 0;
    }

    .about-hero-title {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .about-hero-subtitle {
        font-size: 1.6rem;
    }

    .about-hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-hero-cta {
        gap: 0.5rem;
    }

    .about-hero-cta .button {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
}



/* ============================================
   New Modern About Page Styles
   ============================================ */
/* Utilities */
.max-w-800 {
    max-width: 800px;
}

.max-w-900 {
    max-width: 900px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-lg {
    font-size: 1.15rem;
    line-height: 1.8;
}

.text-muted {
    color: #666;
}

/* Purpose Section */
.purpose-content {
    text-align: center;
}

.purpose-highlight-text {
    font-size: 2rem;
    background: linear-gradient(135deg, #04476e 0%, #f58615 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1.5rem 0;
    font-weight: 700;
}

/* Journey Section - Timeline */
.journey-header {
    margin-bottom: 2rem;
    text-align: center;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #f58615;
    z-index: 1;
}

.timeline-year {
    font-size: 1rem;
    font-weight: 700;
    color: #f58615;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 1.3rem;
    color: #04476e;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* What We Do - Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.solution-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(4, 71, 110, 0.12);
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto 1.25rem;
}

.amace-icon {
    background: linear-gradient(135deg, #04476e, #066b9e);
}

.mhr-icon {
    background: linear-gradient(135deg, #f58615, #ffaa4d);
}

.sncl-icon {
    background: linear-gradient(135deg, #28a745, #34ce57);
}

.solution-title {
    font-size: 1.5rem;
    color: #04476e;
    margin-bottom: 0.25rem;
}

.solution-subtitle {
    font-size: 0.95rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Mission & Vision Split */
.mv-split-layout {
    display: flex;
    flex-wrap: wrap;
}

.mv-block {
    flex: 1;
    min-width: 350px;
    padding: 4rem 8%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-block {
    background: #04476e;
    color: #ffffff;
}

.vision-block {
    background: #f8f9fa;
    color: #333;
}

.mv-content {
    max-width: 500px;
}

.mv-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.mv-heading {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.mission-block .mv-heading {
    color: #ffffff;
}

.vision-block .mv-heading {
    color: #04476e;
}

.mv-text {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Values Grid Modern */
.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-title {
    color: #04476e;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Why Choose Features Grid */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.feature-box-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-box-icon {
    transform: scale(1.1);
}

.feature-box-title {
    font-size: 1.1rem;
    color: #04476e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-box-desc {
    font-size: 0.95rem;
    color: #666;
}

/* Modern Founder Section */
.founder-story-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.founder-placeholder {
    width: 100%;
    padding-top: 100%;
    /* Square */
    background: #e0e0e0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.founder-profile-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.founder-placeholder span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
}

.founder-content-col {
    flex: 1.5;
}

.founder-name-modern {
    font-size: 2rem;
    color: #04476e;
    margin-bottom: 0.25rem;
}

.founder-role-modern {
    color: #f58615;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.founder-bio-modern {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.modern-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #04476e;
    padding-left: 1.5rem;
    border-left: 4px solid #f58615;
}

/* Commitment & CTA */
.commitment-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #022a42 0%, #04476e 100%);
    color: #ffffff;
}

.commitment-box {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.commitment-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.commitment-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.final-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.final-cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.button-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.button-outline-dark {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.button-outline-dark:hover {
    background: #ffffff;
    color: #04476e;
}

/* Responsive */
@media (max-width: 992px) {
    .journey-timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        padding-left: 50px;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .timeline-item::before {
        left: 21px;
        transform: translateX(-50%);
    }

    .timeline-title {
        font-size: 1.2rem;
    }

    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }

    .solution-card {
        padding: 1.25rem;
    }

    .solution-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .solution-title {
        font-size: 1.35rem;
    }

    .founder-story-grid {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .founder-content-col {
        text-align: center;
    }

    .founder-name-modern {
        font-size: 1.75rem;
    }

    .founder-role-modern {
        font-size: 1rem;
    }

    .founder-bio-modern {
        text-align: center;
        font-size: 0.95rem;
    }

    .modern-quote {
        border-left: none;
        border-top: 4px solid #f58615;
        padding-top: 1rem;
        padding-left: 0;
        text-align: center;
        font-size: 1.1rem;
    }

    .mv-block {
        padding: 3rem 6%;
    }

    .mv-heading {
        font-size: 1.75rem;
    }

    .mv-text {
        font-size: 1rem;
    }

    .values-grid-modern,
    .features-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.25rem;
    }

    .commitment-cta-section {
        padding: 3rem 0;
    }

    .commitment-box {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .commitment-title {
        font-size: 1.5rem;
    }

    .commitment-text {
        font-size: 1rem;
    }

    .final-cta-title {
        font-size: 1.75rem;
    }

    .final-cta-desc {
        font-size: 1rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .mv-split-layout {
        flex-direction: column;
    }

    .mv-block {
        padding: 3rem 1.5rem;
        text-align: center;
        min-width: 0;
    }

    .mv-heading {
        font-size: 1.5rem;
    }

    .mv-text {
        font-size: 0.95rem;
    }

    .purpose-highlight-text {
        font-size: 1.6rem;
    }

    .timeline-item {
        padding-left: 45px;
        margin-bottom: 1.25rem;
    }

    .timeline-title {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .solution-card {
        padding: 1rem;
    }

    .solution-icon {
        width: 50px;
        height: 50px;
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .solution-title {
        font-size: 1.25rem;
    }

    .solution-subtitle {
        font-size: 0.85rem;
    }

    .values-grid-modern,
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-icon {
        font-size: 2rem;
    }

    .value-title {
        font-size: 1.1rem;
    }

    .feature-box-icon {
        font-size: 2rem;
    }

    .feature-box-title {
        font-size: 1rem;
    }

    .founder-image-col {
        min-width: 0;
    }

    .founder-name-modern {
        font-size: 1.5rem;
    }

    .founder-role-modern {
        font-size: 0.95rem;
    }

    .founder-bio-modern {
        font-size: 0.9rem;
    }

    .modern-quote {
        font-size: 1rem;
    }

    .commitment-cta-section {
        padding: 2rem 0;
    }

    .commitment-box {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .commitment-title {
        font-size: 1.35rem;
    }

    .commitment-text {
        font-size: 0.95rem;
    }

    .final-cta-title {
        font-size: 1.5rem;
    }

    .final-cta-desc {
        font-size: 0.95rem;
    }

    .final-cta-buttons .button-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   Training & Support Page Styles
   ============================================ */

/* ============================================
   Training & Support Page Redesign
   ============================================ */

/* Training Hero Section */
.training-hero-section {
    background: linear-gradient(135deg, #022a42 0%, #04476e 100%);
    color: #ffffff;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background Abstract Shapes */
.training-hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 134, 21, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}

.training-hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

.training-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #f58615;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.training-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(90deg, #ffffff 0%, #aabec9 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.training-hero-subtitle {
    font-size: 1.3rem;
    color: #f58615;
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
}

.hero-description-wrapper {
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.training-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.8rem;
}

.training-hero-description.highlight {
    font-size: 1.2rem;
    color: #ffffff;
    border-left: 4px solid #f58615;
    padding-left: 1.5rem;
    text-align: left;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    padding: 0.8rem 1.2rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.button-outline-light {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.button-outline-light:hover {
    background: #ffffff;
    color: #04476e;
}

.button-primary {
    border-radius: 50px;
    padding: 0.9rem 2.5rem;
    box-shadow: 0 10px 20px rgba(245, 134, 21, 0.3);
}

/* Response adjustments */
@media (max-width: 768px) {
    .training-hero-title {
        font-size: 3rem;
    }

    .training-hero-description.highlight {
        text-align: center;
        border-left: none;
        border-top: 4px solid #f58615;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .button-primary,
    .button-outline-light {
        width: 100%;
        text-align: center;
    }
}

/* Approach Section */
/* Approach Section */
.approach-section {
    padding: 2rem 0;
    /* Reduced padding for compactness */
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.approach-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    text-align: left;
    /* Override default centered text */
}

.approach-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
    flex: 0 0 40%;
    color: #04476e;
    line-height: 1.2;
    position: relative;
    padding-right: 2rem;
    border-right: 3px solid #f58615;
    /* Visual divider */
}

.approach-section .section-description {
    font-size: 1.15rem;
    color: #555;
    margin: 0;
    flex: 1;
    text-align: left;
    max-width: none;
}

@media (max-width: 768px) {
    .approach-section .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .approach-section .section-title {
        border-right: none;
        padding-right: 0;
        border-bottom: 3px solid #f58615;
        padding-bottom: 1rem;
        flex: auto;
        width: 100%;
    }

    .approach-section .section-description {
        text-align: center;
    }
}

/* Training Services Section */
.training-services-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.training-services-section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .training-services-section .container {
        grid-template-columns: 1fr;
    }
}

/* Service Card Redesign - Compact */
.training-service-item {
    background-color: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #f58615;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Ensure equal height cards */
}

.training-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #04476e 0%, #065a8a 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(4, 71, 110, 0.3);
}

.service-content {
    flex: 1;
}

.service-title {
    color: #04476e;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 1.3;
}

.service-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
}

.service-subtitle {
    color: #04476e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    /* Tighter gap */
}

.service-list li {
    padding: 0 0 0 1.5rem;
    /* Remove vertical padding, rely on gap */
    position: relative;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f58615;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-footer {
    font-size: 1.05rem;
    color: #04476e;
    font-weight: 500;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Why Choose Training Section */
.why-choose-training-section {
    padding: 6rem 0;
    background-color: #ffffff;
    text-align: center;
}

.why-choose-training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0 4rem;
}

.why-choose-training-item {
    background-color: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    border-top: 4px solid #04476e;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-training-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top-color: #f58615;
}

.choose-icon {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(135deg, rgba(4, 71, 110, 0.1) 0%, rgba(245, 134, 21, 0.1) 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.why-choose-training-item:hover .choose-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(4, 71, 110, 0.2) 0%, rgba(245, 134, 21, 0.2) 100%);
}

.choose-title {
    color: #04476e;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.choose-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.training-commitment {
    margin-top: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #04476e 0%, #065a8a 100%);
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(4, 71, 110, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.training-commitment::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.commitment-content {
    position: relative;
    z-index: 2;
}

.training-commitment-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.training-commitment-heading {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

/* Remove old selector styles if they clash, though we replaced the block */

/* Training FAQ Section */
.training-faq-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.training-faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Reusing .faq-item etc from Front Page styles */

/* Training CTA Section */
.training-cta-section {
    background: linear-gradient(135deg, #04476e 0%, #022a42 100%);
    color: #ffffff;
    text-align: center;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.training-cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    border: 20px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.training-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.training-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.training-cta-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.75rem;
}

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

.training-cta-buttons .button-primary {
    background-color: #f58615;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.training-cta-buttons .button-primary:hover {
    background-color: #d46f04;
}

.training-cta-buttons .button-secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.training-cta-buttons .button-secondary:hover {
    background-color: #ffffff;
    color: #04476e;
}

/* Responsive Design for Training Page */
@media (max-width: 900px) {
    .training-hero-title {
        font-size: 3rem;
    }

    .training-service-item {
        flex-direction: column;
        padding: 2.5rem 2rem;
        gap: 1.5rem;
    }

    .service-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .training-cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .training-hero-title {
        font-size: 2.5rem;
    }

    .training-hero-section {
        padding: 6rem 0 4rem;
    }

    .why-choose-training-grid {
        grid-template-columns: 1fr;
    }

    .training-cta-buttons {
        flex-direction: column;
    }

    .training-cta-buttons .button {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   Contact Us Page Styles
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, #04476e 0%, #065a8a 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

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

.contact-hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-hero-subtitle {
    font-size: 2rem;
    color: #f58615;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.contact-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.contact-hero-description strong {
    color: #f58615;
}

/* Contact Info Section */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-item {
    background-color: #ffffff;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #f58615;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-title {
    color: #04476e;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-info-content {
    color: #555;
    line-height: 1.8;
}

.contact-info-content p {
    margin-bottom: 0.5rem;
}

.contact-info-content strong {
    color: #04476e;
    font-size: 1.1rem;
}

.contact-link {
    color: #04476e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #f58615;
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
    display: block;
    color: #04476e;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.required {
    color: #f58615;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .button {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    display: none;
}

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

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

.form-note {
    text-align: center;
    color: #666;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Sales & Demo Section */
.sales-demo-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sales-demo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.sales-demo-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #04476e;
    font-weight: 500;
    border-left: 4px solid #f58615;
}

.sales-demo-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Support & Training Section */
.support-training-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.support-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.support-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #04476e;
    font-weight: 500;
    border-top: 3px solid #04476e;
}

.support-cta {
    margin-top: 2rem;
}

/* Map Section */
.map-wrapper {
    margin-top: 2rem;
}

.map-placeholder {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed #e0e0e0;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 1rem;
}

.map-instructions {
    color: #04476e;
    font-weight: 500;
    margin-top: 2rem;
}

.map-instructions-list {
    text-align: left;
    max-width: 600px;
    margin: 1rem auto 0;
    color: #555;
    line-height: 1.8;
}

.map-instructions-list a {
    color: #04476e;
    text-decoration: none;
}

.map-instructions-list a:hover {
    color: #f58615;
    text-decoration: underline;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.5rem;
    }

    .contact-hero-description {
        font-size: 1rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

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

    .sales-demo-list,
    .support-list {
        grid-template-columns: 1fr;
    }

    .sales-demo-cta {
        flex-direction: column;
    }

    .sales-demo-cta .button {
        width: 100%;
    }

    .map-placeholder {
        padding: 2rem 1rem;
        min-height: 300px;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}

/* ============================================
   AMaCE Product Page Styles
   ============================================ */

/* AMaCE Hero Section */
.amace-hero-section {
    background: linear-gradient(135deg, #04476e 0%, #065a8a 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

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

.amace-hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 400;
}

.amace-hero-subtitle {
    font-size: 2rem;
    color: #f58615;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.amace-hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.amace-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why AMaCE Section */
.amace-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.amace-benefit-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-left: 4px solid #f58615;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    color: #f58615;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-title {
    color: #04476e;
    font-size: 1.25rem;
    margin: 0;
    font-weight: 500;
}

/* What Is AMaCE Section */
.what-is-amace-content {
    max-width: 1000px;
    margin: 0 auto;
}

.what-is-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.amace-user-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    color: #04476e;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #04476e;
}

.what-is-footer {
    text-align: center;
    font-size: 1.1rem;
    color: #04476e;
    font-weight: 500;
    margin-top: 2rem;
}

/* Challenges vs. Solutions Section */
.challenges-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.challenges-column-title,
.solutions-column-title {
    color: #04476e;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f58615;
}

.challenges-list,
.solutions-list {
    list-style: none;
    padding: 0;
}

.challenges-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background-color: #fff5f5;
    border-left: 4px solid #dc3545;
    color: #555;
}

.solutions-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background-color: #f0fff4;
    border-left: 4px solid #28a745;
    color: #555;
}

/* AMaCE Modules Section */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.module-card {
    background-color: #ffffff;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #f58615;
}

.module-title {
    color: #04476e;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #04476e;
}

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

.module-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.8;
}

.module-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f58615;
    font-weight: bold;
    font-size: 1.2rem;
}

/* 14 Benefits Section */
.benefits-14-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-14-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #04476e;
    font-weight: 500;
    border-left: 4px solid #f58615;
    text-align: center;
}

/* Who Should Use Section */
.who-should-use-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.who-should-use-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    color: #04476e;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #04476e;
}

.who-should-use-footer {
    text-align: center;
    font-size: 1.2rem;
    color: #04476e;
    font-weight: 500;
    margin-top: 2rem;
    font-style: italic;
}

/* Why AMaCE Works Section */
.why-amace-works-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-works-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 5px solid #f58615;
}

.why-works-subtitle {
    color: #04476e;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.why-works-title {
    color: #04476e;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.why-works-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.why-works-highlight {
    font-size: 1.3rem;
    color: #f58615;
    margin: 1rem 0;
}

/* Pricing Section */
.amace-pricing-content {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 3px solid #f58615;
}

.pricing-title {
    color: #04476e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 3rem;
    color: #f58615;
    font-weight: bold;
    margin: 1rem 0;
}

.pricing-type {
    font-size: 1.3rem;
    color: #04476e;
    margin-bottom: 1.5rem;
}

.pricing-note {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* How AMaCE Works Section */
.how-works-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    background-color: #ffffff;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 5px solid #04476e;
}

.step-number {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #04476e;
    color: #ffffff;
    border-radius: 50%;
    line-height: 80px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.step-title {
    color: #04476e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-description {
    color: #666;
    line-height: 1.8;
}

/* AMaCE FAQ Section */
.amace-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.amace-faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #04476e;
}

.amace-faq-question {
    color: #04476e;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.amace-faq-answer {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* AMaCE CTA Section */
.amace-cta-section {
    background: linear-gradient(135deg, #04476e 0%, #065a8a 100%);
    color: #ffffff;
    text-align: center;
}

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

.amace-cta-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.amace-cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

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

/* Responsive Design for AMaCE Page */
@media (max-width: 768px) {
    .amace-hero-title {
        font-size: 2.5rem;
    }

    .amace-hero-subtitle {
        font-size: 1.5rem;
    }

    .amace-hero-description {
        font-size: 1.1rem;
    }

    .amace-benefits-grid {
        grid-template-columns: 1fr;
    }

    .challenges-solutions-grid {
        grid-template-columns: 1fr;
    }

    .modules-grid,
    .benefits-14-grid,
    .who-should-use-grid {
        grid-template-columns: 1fr;
    }

    .how-works-steps {
        grid-template-columns: 1fr;
    }

    .amace-cta-title {
        font-size: 2rem;
    }

    .amace-cta-buttons {
        flex-direction: column;
    }

    .amace-cta-buttons .button {
        width: 100%;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }
}

/* ============================================
   SNCL4ME Product Page Styles
   ============================================ */

/* SNCL4ME Hero Section */
.sncl4me-hero-section {
    background: linear-gradient(135deg, #04476e 0%, #065a8a 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

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

.sncl4me-hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 400;
}

.sncl4me-hero-subtitle {
    font-size: 2rem;
    color: #f58615;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.sncl4me-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

/* Why SNCL4ME Section */
.why-sncl4me-content {
    max-width: 1000px;
    margin: 0 auto;
}

.struggles-list {
    margin: 2rem 0;
}

.struggle-item {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid #dc3545;
}

.struggle-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.struggle-item p {
    color: #555;
    margin: 0;
    line-height: 1.8;
}

.sncl4me-solution {
    background-color: #f0fff4;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    margin-top: 2rem;
    text-align: center;
}

.solution-text {
    font-size: 1.2rem;
    color: #04476e;
    margin-bottom: 0.5rem;
}

.solution-text strong {
    color: #28a745;
}

/* What SNCL4ME Offers Section */
.sncl4me-module-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #f58615;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.sncl4me-module-item .module-number {
    flex-shrink: 0;
    width: 32px !important;
    height: 32px !important;
    background-color: #04476e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem !important;
    font-weight: bold;
}

.module-content {
    flex: 1;
}

.module-title {
    color: #04476e;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f58615;
}

.module-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.module-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.module-features-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.8;
}

.module-features-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f58615;
    font-weight: bold;
    font-size: 1.2rem;
}

.module-footer {
    font-size: 1.05rem;
    color: #04476e;
    font-weight: 500;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

/* Who Should Use SNCL4ME Section */
.sncl4me-users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.sncl4me-user-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    color: #04476e;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #04476e;
}

.sncl4me-users-footer {
    text-align: center;
    font-size: 1.2rem;
    color: #04476e;
    font-weight: 500;
    margin-top: 2rem;
    font-style: italic;
}

/* Key Benefits Section */
.sncl4me-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.sncl4me-benefit-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid #28a745;
}

.benefit-check {
    font-size: 2rem;
    color: #28a745;
    font-weight: bold;
    flex-shrink: 0;
}

.sncl4me-benefit-item p {
    color: #555;
    margin: 0;
    line-height: 1.8;
}

/* Why Stands Out Section */
.stands-out-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stands-out-item {
    background-color: #ffffff;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #f58615;
}

.stands-out-icon {
    font-size: 3rem;
    color: #f58615;
    margin-bottom: 1rem;
}

.stands-out-title {
    color: #04476e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stands-out-desc {
    color: #666;
    line-height: 1.8;
}

/* How Helps Team Section */
.helps-team-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.helps-team-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    color: #04476e;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #04476e;
}

.helps-team-footer {
    text-align: center;
    font-size: 1.3rem;
    color: #04476e;
    font-weight: 500;
    margin-top: 2rem;
    font-style: italic;
}

/* Download Section */
.sncl4me-download-section {
    text-align: center;
}

.download-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* SNCL4ME FAQ Section */
.sncl4me-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.sncl4me-faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #04476e;
}

.sncl4me-faq-question {
    color: #04476e;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.sncl4me-faq-answer {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Final CTA Section */
.sncl4me-final-cta-section {
    background: linear-gradient(135deg, #04476e 0%, #065a8a 100%);
    color: #ffffff;
    text-align: center;
}

.sncl4me-final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.sncl4me-final-cta-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.sncl4me-final-cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

.sncl4me-final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive Design for SNCL4ME Page */
@media (max-width: 768px) {
    .sncl4me-hero-title {
        font-size: 2.5rem;
    }

    .sncl4me-hero-subtitle {
        font-size: 1.5rem;
    }

    .sncl4me-hero-description {
        font-size: 1rem;
    }

    .sncl4me-module-item {
        flex-direction: row !important;
        padding: 1rem;
        gap: 0.875rem;
    }

    .sncl4me-module-item .module-number {
        align-self: flex-start;
        width: 28px !important;
        height: 28px !important;
        font-size: 0.9rem !important;
    }

    .sncl4me-users-grid,
    .sncl4me-benefits-grid,
    .stands-out-grid,
    .helps-team-list {
        grid-template-columns: 1fr;
    }

    .sncl4me-final-cta-title {
        font-size: 2rem;
    }

    .sncl4me-final-cta-buttons,
    .download-cta {
        flex-direction: column;
    }

    .sncl4me-final-cta-buttons .button,
    .download-cta .button {
        width: 100%;
    }
}

/* ============================================
   MHR Product Page Styles
   ============================================ */

/* MHR Hero Section */
.mhr-hero-section {
    background: linear-gradient(135deg, #04476e 0%, #065a8a 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

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

.mhr-hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 400;
}

.mhr-hero-subtitle {
    font-size: 2rem;
    color: #f58615;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.mhr-hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.mhr-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* MHR Intro Section */
.mhr-intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Why MHR Essential Section */
.why-mhr-content {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-highlight {
    font-size: 1.3rem;
    color: #04476e;
    text-align: center;
    margin: 1.5rem 0;
}

.problems-list {
    margin: 2rem 0;
}

.problem-item {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid #dc3545;
}

.problem-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-item p {
    color: #555;
    margin: 0;
    line-height: 1.8;
}

.mhr-solution-text {
    text-align: center;
    font-size: 1.3rem;
    color: #28a745;
    margin-top: 2rem;
}

/* What Is MHR Section */
.what-is-mhr-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.mhr-parameter-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    color: #04476e;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #f58615;
}

.what-is-mhr-footer {
    text-align: center;
    font-size: 1.2rem;
    color: #04476e;
    margin-top: 2rem;
}

/* Real Problems Section */
.real-problems-content {
    max-width: 1000px;
    margin: 0 auto;
}

.wrong-methods-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.wrong-method-item {
    background-color: #fff5f5;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid #dc3545;
}

.wrong-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wrong-method-item p {
    color: #555;
    margin: 0;
    font-weight: 500;
}

.result-list {
    margin: 2rem 0;
}

.result-item {
    background-color: #fff5f5;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    color: #555;
    border-left: 4px solid #dc3545;
    font-weight: 500;
}

.mhr-eliminates {
    text-align: center;
    font-size: 1.2rem;
    color: #28a745;
    margin-top: 2rem;
}

/* How MHR Solves Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-item {
    background-color: #ffffff;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #f58615;
    text-align: center;
}

.solution-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #04476e;
    color: #ffffff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.solution-title {
    color: #04476e;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.solution-desc {
    color: #666;
    line-height: 1.8;
}

/* MHR Features Section */
.mhr-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mhr-feature-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #28a745;
}

.feature-check {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.feature-title {
    color: #04476e;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: #666;
    line-height: 1.8;
}

/* Who Should Use MHR Section */
.mhr-users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.mhr-user-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    color: #04476e;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #04476e;
}

.mhr-users-footer {
    text-align: center;
    font-size: 1.2rem;
    color: #04476e;
    font-weight: 500;
    margin-top: 2rem;
    font-style: italic;
}

/* Why MHR Matters Section */
.market-challenges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.challenge-item {
    background-color: #fff5f5;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    color: #dc3545;
    font-weight: 500;
    border-left: 4px solid #dc3545;
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.advantage-item {
    background-color: #f0fff4;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    color: #28a745;
    font-weight: 500;
    border-left: 4px solid #28a745;
}

/* What You Gain Section */
.gains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gain-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    color: #04476e;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #f58615;
}

.gains-footer {
    text-align: center;
    font-size: 1.2rem;
    color: #04476e;
    margin-top: 2rem;
}

/* MHR FAQ Section */
.mhr-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.mhr-faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #04476e;
}

.mhr-faq-question {
    color: #04476e;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.mhr-faq-answer {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* MHR Final CTA Section */
.mhr-final-cta-section {
    background: linear-gradient(135deg, #04476e 0%, #065a8a 100%);
    color: #ffffff;
    text-align: center;
}

.mhr-final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.mhr-final-cta-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.mhr-cta-points {
    margin: 2rem 0;
}

.cta-point {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
}

.mhr-final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive Design for MHR Page */
@media (max-width: 768px) {
    .mhr-hero-title {
        font-size: 2.5rem;
    }

    .mhr-hero-subtitle {
        font-size: 1.5rem;
    }

    .mhr-hero-description {
        font-size: 1.1rem;
    }

    .solutions-grid,
    .mhr-features-grid,
    .mhr-users-grid,
    .market-challenges,
    .advantages-list,
    .gains-grid {
        grid-template-columns: 1fr;
    }

    .wrong-methods-list {
        grid-template-columns: 1fr;
    }

    .mhr-final-cta-title {
        font-size: 2rem;
    }

    .mhr-final-cta-buttons {
        flex-direction: column;
    }

    .mhr-final-cta-buttons .button {
        width: 100%;
    }
}

/* --- Blog Page Redesign (Compact & Modern) --- */

.blog-page-hero {
    background: linear-gradient(135deg, #04476e 0%, #0284c7 100%);
    padding: 3rem 1rem 2.5rem;
    /* Compact padding */
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.blog-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.blog-page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.blog-page-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: #fff;
}

.blog-page-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.blog-page-wrapper {
    background-color: #f8fafc;
    padding: 2.5rem 0 4rem;
}

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

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    /* Compact gap */
}

.blog-page-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.blog-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
}

.blog-page-card-image {
    position: relative;
    height: 180px;
    /* Compact height */
    width: 100%;
    background-color: #cbd5e1;
    overflow: hidden;
}

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

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

.no-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f1f5f9, #e2e8f0);
    text-decoration: none;
}

.no-image-placeholder span {
    font-weight: 700;
    color: #94a3b8;
    font-size: 1.25rem;
}

/* Category Badge over Image (Bottom Left) */
.blog-page-category {
    position: absolute;
    bottom: 10px;
    left: 10px;
    top: auto;
    right: auto;
    background: rgba(4, 71, 110, 0.9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    text-decoration: none;
    backdrop-filter: blur(4px);
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-page-category:hover {
    background: #f58615;
    color: #fff;
}

.blog-page-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-page-meta {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.blog-page-date {
    color: #64748b;
}

.blog-meta-sep {
    margin: 0 0.5rem;
    color: #cbd5e1;
}

.blog-page-card-title {
    font-size: 1.15rem;
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #1e293b;
}

.blog-page-card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.blog-page-card-title a:hover {
    color: #04476e;
}

.blog-page-card-excerpt {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    /* Push link to bottom */
}

.blog-page-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #0284c7;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    margin-top: auto;
}

.blog-page-link:hover {
    color: #0369a1;
    text-decoration: underline;
}

/* Pagination */
.blog-page-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.blog-page-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    color: #64748b;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.blog-page-pagination .page-numbers.current,
.blog-page-pagination .page-numbers:hover {
    background: #04476e;
    color: #fff;
    border-color: #04476e;
}

.blog-page-pagination .prev,
.blog-page-pagination .next {
    width: auto;
    padding: 0 10px;
}

/* Empty State */
.blog-page-empty {
    text-align: center;
    padding: 4rem 1rem;
    background: #fff;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
}

@media (max-width: 768px) {
    .blog-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-page-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   TOP HEADER (MINI HEADER)
   ========================================= */
.top-header {
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    padding: 0;
    font-size: 16px;
    color: #04476e;
    font-weight: 500;
}

.top-header .header-container {
    height: 42px;
}



.top-header-col {
    display: flex;
    align-items: center;
}

.phone-col {
    justify-content: flex-start;
    flex: 1;
}

.address-col {
    justify-content: center;
    flex: 2;
}

.social-col {
    justify-content: flex-end;
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.info-item svg {
    color: #04476e;
    width: 14px;
    height: 14px;
}

.top-header-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-label {
    font-weight: 600;
    font-size: 14.5px;
    color: #64748b;
    text-transform: uppercase;
    margin-right: 5px;
}

.top-header-social a {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.top-header-social a svg {
    width: 13px;
    height: 13px;
}

.top-header-social a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Social Brand Colors */
.top-header-social a[aria-label="Facebook"] {
    background-color: #3b5998;
}

.top-header-social a[aria-label="LinkedIn"] {
    background-color: #0077b5;
}

.top-header-social a[aria-label="YouTube"] {
    background-color: #ff0000;
}

.top-header-social a[aria-label="Instagram"] {
    background-color: #e4405f;
}

@media (max-width: 1100px) {
    .address-col {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 0;
    }

    .top-header .header-container {
        height: 38px;
        padding: 0 15px;
        flex-direction: row;
        /* Force row layout on mobile */
        justify-content: space-between;
    }

    .info-item {
        font-size: 14px;
        /* Smaller font on mobile to fit row */
    }

    .social-label {
        font-size: 13px;
    }

    .top-header-social a {
        width: 20px;
        height: 20px;
    }

    .top-header-social a svg {
        width: 11px;
        height: 11px;
    }
}

/* =========================================
   GLOBAL TYPOGRAPHY FIX (UNIFORM TITLES)
   ========================================= */

/* 1. Main Section Titles (H2 Equivalent) */
.amace-section-title,
.section-title,
.cta-title,
.training-cta-title,
.commitment-title,
.final-cta-title,
.mv-heading,
.amace-wrapper h2 {
    font-size: 2.25rem !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    width: 100% !important;
    display: block !important;
}

/* 2. Section Subtitles / Descriptions (Lead Text) */
.amace-section-subtitle,
.section-description,
.pricing-modern-desc,
.cta-description,
.final-cta-desc,
.commitment-text,
.mv-text,
.intro-lead,
.intro-description {
    font-size: 1.1rem !important;
    text-align: center !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 3rem !important;
    line-height: 1.6 !important;
    display: block !important;
}

/* 3. Card Titles / Sub-headings (H3 Equivalent) */
.offer-title,
.challenges-column-title,
.pricing-subtitle-modern,
.feature-card-title,
.industry-name,
.blog-page-card-title,
.training-title,
.about-mv-title,
.solution-title,
.value-title,
.feature-box-title,
.module-title,
.mv-label,
.amace-wrapper h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
}

/* Responsive Adjustments for Global Typography */

/* Tablet (max-width: 968px) */
@media (max-width: 968px) {

    .amace-section-title,
    .section-title,
    .cta-title,
    .training-cta-title,
    .commitment-title,
    .final-cta-title,
    .mv-heading,
    .amace-wrapper h2 {
        font-size: 2rem !important;
        margin-bottom: 1.25rem !important;
    }

    .amace-section-subtitle,
    .section-description,
    .pricing-modern-desc,
    .cta-description,
    .final-cta-desc,
    .commitment-text,
    .mv-text,
    .intro-lead,
    .intro-description {
        font-size: 1.05rem !important;
        margin-bottom: 2rem !important;
    }

    .offer-title,
    .challenges-column-title,
    .pricing-subtitle-modern,
    .feature-card-title,
    .industry-name,
    .blog-page-card-title,
    .training-title,
    .about-mv-title,
    .solution-title,
    .value-title,
    .feature-box-title,
    .module-title,
    .mv-label,
    .amace-wrapper h3 {
        font-size: 1.35rem !important;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    .amace-section-title,
    .section-title,
    .cta-title,
    .training-cta-title,
    .commitment-title,
    .final-cta-title,
    .mv-heading,
    .amace-wrapper h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }

    .amace-section-subtitle,
    .section-description,
    .pricing-modern-desc,
    .cta-description,
    .final-cta-desc,
    .commitment-text,
    .mv-text,
    .intro-lead,
    .intro-description {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .offer-title,
    .challenges-column-title,
    .pricing-subtitle-modern,
    .feature-card-title,
    .industry-name,
    .blog-page-card-title,
    .training-title,
    .about-mv-title,
    .solution-title,
    .value-title,
    .feature-box-title,
    .module-title,
    .mv-label,
    .amace-wrapper h3 {
        font-size: 1.25rem !important;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {

    .amace-section-title,
    .section-title,
    .cta-title,
    .training-cta-title,
    .commitment-title,
    .final-cta-title,
    .mv-heading,
    .amace-wrapper h2 {
        font-size: 1.5rem !important;
    }

    .amace-section-subtitle,
    .section-description,
    .pricing-modern-desc,
    .cta-description,
    .final-cta-desc,
    .commitment-text,
    .mv-text,
    .intro-lead,
    .intro-description {
        font-size: 0.95rem !important;
    }

    .offer-title,
    .challenges-column-title,
    .pricing-subtitle-modern,
    .feature-card-title,
    .industry-name,
    .blog-page-card-title,
    .training-title,
    .about-mv-title,
    .solution-title,
    .value-title,
    .feature-box-title,
    .module-title,
    .mv-label,
    .amace-wrapper h3 {
        font-size: 1.2rem !important;
    }
}