/*\n * Version: 4.0\n */\n/*
 * Version: 2.4
 */
/*
Theme Name: Thinking ForWord Home Focus
Theme URI: https://thinkingforword.com/
Author: Thinking ForWord Team
Author URI: https://thinkingforword.com/
Description: A theme focused on the home page design, supporting separate pages.
Version: 2.11
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thinking-forward-homefocus
*/

/* ===================================
           GLOBAL STYLES
           =================================== */
        html {
            overflow-x: hidden;
            width: 100%;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.7;
            color: #2c3e50;
            overflow-x: hidden;
            width: 100%;
        }
        
        /* ===================================
           HEADER & NAVIGATION
           =================================== */
        header {
            background: white;
            border-bottom: 2px solid #e8eef3;
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1a4d7a;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        /* Ensure the logo link inherits its container styles */
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        
        .nav-links a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #1a4d7a;
        }
        
        /* ===================================
           HERO SECTION
           =================================== */
        .hero {
            background: linear-gradient(to right, #f8fbfd 0%, #e8eef3 100%);
            padding: 6rem 2rem;
        }
        
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .hero-text h1 {
            font-size: 3rem;
            font-weight: 700;
            color: #1a4d7a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        .hero-text p {
            font-size: 1.15rem;
            color: #5a6c7d;
            margin-bottom: 2rem;
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #1a4d7a;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #5a6c7d;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        /* ===================================
           BUTTONS
           =================================== */
        .cta-button {
            display: inline-block;
            background: #1a4d7a;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: background 0.3s;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        .cta-button:hover {
            background: #153d61;
        }
        
        .cta-button-white {
            display: inline-block;
            background: white;
            color: #1a4d7a;
            padding: 1rem 2.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: transform 0.3s;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        .cta-button-white:hover {
            transform: translateY(-2px);
        }
        
        /* ===================================
           TRUST BAR
           =================================== */
        .trust-bar {
            background: white;
            padding: 2rem;
            text-align: center;
            border-bottom: 1px solid #e8eef3;
        }
        
        .trust-bar p {
            color: #5a6c7d;
            font-size: 0.95rem;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        /* ===================================
           SECTION CONTAINERS
           =================================== */
        .section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: #1a4d7a;
            margin-bottom: 1rem;
            font-weight: 700;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            text-align: center;
        }
        
        .section-subtitle {
            color: #5a6c7d;
            font-size: 1.1rem;
            text-align: center;
        }
        
        /* ===================================
           PRODUCT CARDS
           =================================== */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        
        @media (max-width: 1200px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .product-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        
        .product-card {
            background: white;
            border: 2px solid #e8eef3;
            border-radius: 10px;
            padding: 3rem 2.5rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            border-color: #1a4d7a;
            box-shadow: 0 10px 30px rgba(26,77,122,0.1);
        }
        
        .product-number {
            display: inline-block;
            background: #1a4d7a;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        .product-card p {
            color: #5a6c7d;
            line-height: 1.8;
        }
        
        /* ===================================
           FEATURE CARDS
           =================================== */
        .features-section {
            background: #f8fbfd;
            padding: 6rem 2rem;
        }
        
        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: white;
            padding: 2rem;
            border-left: 4px solid #1a4d7a;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .feature-card h4 {
            font-size: 1.2rem;
            color: #1a4d7a;
            margin-bottom: 0.8rem;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        .feature-card p {
            color: #5a6c7d;
            font-size: 0.95rem;
        }
        
        /* ===================================
           CTA SECTION
           =================================== */
        .cta-section {
            background: #1a4d7a;
            color: white;
            padding: 5rem 2rem;
            text-align: center;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        /* ===================================
           FOOTER
           =================================== */
        footer {
            background: #2c3e50;
            color: #fff;
            padding: 3rem 2rem;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h4 {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: #fff;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin: 8px 0;
        }
        
        .footer-links a,
        .contact-info a {
            color: #e8eef3;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover,
        .contact-info a:hover {
            color: #fff;
            text-decoration: underline;
        }
        
        .social-media {
            margin: 1.5rem 0;
        }
        
        .social-media a {
            color: #fff;
            margin-right: 15px;
            font-size: 24px;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .social-media a:hover {
            color: #1a4d7a;
        }
        
        .contact-info p {
            margin: 8px 0;
            color: #e8eef3;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #e8eef3;
            font-size: 0.9rem;
        }
        
        /* ===================================
           RESPONSIVE DESIGN
           =================================== */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
            }
            
            .hero-text h1 {
                font-size: 2.2rem;
            }
            
            .nav-links {
                gap: 1rem;
                font-size: 0.85rem;
            }
            
            .product-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-column {
                width: 100%;
                text-align: center;
            }
            
            .social-media {
                margin-top: 1rem;
            }
        }

/* ===================================
   Custom footer styles
   =================================== */

/* Base styling for the new dark footer */
footer {
    background: #1a2332;
    color: #c9d1d9;
    padding: 2.5rem 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-top: 3px solid #1a4d7a;
}

/* Container for the footer content */
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
}

/* Layout for the top portion of the footer */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Typography for section headings in the footer */
.footer-column h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Spacing for the company info column */
.company-info {
    padding-right: 2rem;
}

/* Styling for the company name and logo */
.company-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.company-logo img {
    height: 1.5rem;
    width: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Tagline and address text */
.company-tagline {
    font-size: 0.95rem;
    color: #8b949e;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.company-location {
    font-size: 0.9rem;
    color: #8b949e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Certification section */
.company-certifications {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.certifications-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8b949e;
    margin-bottom: 0.4rem;
}

.certifications-list {
    font-size: 0.85rem;
    color: #c9d1d9;
}

/* Link styles */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

/* Contact info */
.contact-info {
    font-size: 0.9rem;
}

.contact-item {
    margin-bottom: 0.75rem;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8b949e;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #c9d1d9;
}

.contact-value a {
    color: #c9d1d9;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: #fff;
}

/* Social media */
.social-media {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8b949e;
    margin-bottom: 0.6rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #8b949e;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Bottom row of the footer */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #8b949e;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer-legal-links a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: #fff;
}

/* Responsive adjustments for the new footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .company-info {
        padding-right: 0;
    }
}

/* === Brand lockup (header) === */
.logo.brand .brand-link { display:inline-flex; align-items:center; gap:.6rem; text-decoration:none; color:inherit; font-size:4rem; font-weight:700; }
@media (max-width:768px){ .logo.brand .brand-link{ font-size:1.6rem; } }
.logo.brand .brand-mark { height:1em; width:auto; display:inline-block; vertical-align:middle; }
.logo.brand .brand-text { line-height:1; white-space:nowrap; }

/* === Footer layout and compact spacing === */
.site-footer { background:#0c1624; color:#e7eefc; margin-top:3rem; }
.footer-inner.container { padding:2rem 1rem 1.25rem; max-width:1200px; margin:0 auto; }
.footer-grid { display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:1.5rem; }
.company-logo { display:inline-flex; align-items:center; gap:.6rem; font-size:1.68rem; font-weight:700; white-space:nowrap; line-height:1.25; margin:0 0 .85rem 0;}
.company-logo img { height:1em; width:auto; flex:0 0 auto; }
.company-location + .company-location { margin-top:.25rem; }
.footer-heading { font-size:1rem; margin:0 0 .5rem; color:#fff; }
.footer-links, .compliance-list, .contact-list { list-style:none; margin:0; padding:0; }
.footer-links li, .compliance-list li, .contact-list li { margin:.3rem 0; }
.footer-bottom { background:#0c1624; border-top:none; margin-top:2rem; }
.footer-bottom-inner { max-width:1200px; margin:0 auto; padding:.6rem 1rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.footer-mini-nav ul { list-style:none; display:flex; gap:1.25rem; margin:0; padding:0; }
.company-logo span { display:inline-block; }
.social-link { display:inline-flex; align-items:center; gap:.4rem; text-decoration:none; }
.social-link .icon { display:inline-block; }
.social-link.linkedin { color:#e7eefc; }
.social-link:hover { text-decoration:underline; }

/* === Testimonials === */
.tf-testimonials { padding:3rem 1rem; background:#ffffff; }
.tf-testimonials .container { max-width:1200px; margin:0 auto; }
.tf-testimonials-title { text-align:center; font-size:1.8rem; color:#1f3b57; margin:0 0 1.5rem; }
.tf-testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.tf-testimonial-card { background:#fff; border:1px solid rgba(0,0,0,0.08); border-radius:12px; padding:1rem; box-shadow:0 4px 14px rgba(31,59,87,0.06); }
.tf-stars { color:#f6b32b; letter-spacing:.1rem; margin-bottom:.75rem; text-align:center; }
.tf-testimonial-card blockquote { margin:0 0 .75rem; }
.tf-testimonial-card blockquote p { font-size:1.1rem; line-height:1.55; margin:0; color:#334e68; }
.tf-person { display:flex; flex-direction:column; align-items:center; gap:.5rem; margin-top:.5rem; }
.tf-avatar { width:32px; height:32px; border-radius:50%; background:linear-gradient(180deg,#f0f5ff 0%, #e3ecfa 100%); color:#1f3b57; display:grid; place-items:center; font-weight:700; font-size:.95rem; border:2px solid #ffffff; box-shadow:0 1px 2px rgba(0,0,0,.06); }
.tf-name { font-weight:700; text-align:center; }
.tf-role { color:#6b8299; font-size:.9rem; text-align:center; }
@media (max-width:900px){ .tf-testimonials-grid{ grid-template-columns:1fr; } }

/* === Mobile nav === */
.nav-toggle { display:none; width:40px; height:32px; border:0; background:transparent; padding:0; margin-left:auto; cursor:pointer; }
.nav-toggle .bar { display:block; height:3px; margin:6px 0; background:#0f2741; transition:transform .2s ease, opacity .2s ease; }
.nav-links { list-style:none; margin:0; padding:0; display:flex; gap:1.25rem; }
.nav-links a { text-decoration:none; }
@media (max-width:900px){
  .nav-toggle{ display:inline-block; }
  header{ position:relative; z-index:100; }
  .nav-links{ position:absolute; top:64px; right:0; left:0; background:#fff; border-top:1px solid rgba(0,0,0,.06); box-shadow:0 8px 16px rgba(0,0,0,.06); display:none; flex-direction:column; gap:0; z-index:1000; }
  .nav-links.open{ display:flex; }
  .nav-links li{ border-bottom:1px solid rgba(0,0,0,.04); }
  .nav-links a{ padding:.9rem 1rem; display:block; }
  html.nav-open{ overflow:hidden; }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(1){ transform:translateY(9px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(2){ opacity:0; }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(3){ transform:translateY(-9px) rotate(-45deg); }
}


/* === Footer bottom colour unify & social icon (v2.1) === */
.site-footer, .site-footer .footer-bottom { background:#0c1624; }
.site-footer .footer-bottom { border-top:none; }
.social-link { display:inline-flex; align-items:center; gap:.4rem; text-decoration:none; }
.social-link .icon { display:inline-block; }
.social-link.linkedin { color:#e7eefc; }
.social-link:hover { text-decoration:underline; }



/* === Footer cohesion & socials (v2.2) === */
.site-footer, .site-footer .footer-bottom { background:#0c1624; }
.site-footer .footer-bottom { border-top:none; }
.site-footer hr, .site-footer .footer-separator, .site-footer .footer-divider { display:none; }

.social-list { list-style:none; margin:.5rem 0 0; padding:0; }
.social-list li { margin:0; }
.social-link { display:inline-flex; align-items:center; gap:.4rem; text-decoration:none; color:#e7eefc; }
.social-link .icon { display:inline-block; }
.social-link:hover { text-decoration:underline; }



/* === Socials under Follow Us (v2.3) === */
.social-list { list-style:none; margin:.5rem 0 0; padding:0; }
.social-list li { margin:0; }
.social-link { display:inline-flex; align-items:center; gap:.4rem; color:#e7eefc; text-decoration:none; }
.social-link:hover { text-decoration:underline; }
.social-link .icon { display:inline-block; }
/* Bottom bar colour unify */
.site-footer, .site-footer .footer-bottom { background:#0c1624; }
.site-footer .footer-bottom { border-top:none; }



/* === Socials (v2.4) === */
.social-list { list-style:none; margin:.5rem 0 0; padding:0; }
.social-list li { margin:0; }
.social-link { display:inline-flex; align-items:center; gap:.4rem; color:#e7eefc; text-decoration:none; }
.social-link:hover { text-decoration:underline; }
.social-link .icon { display:inline-block; }
.site-footer, .site-footer .footer-bottom { background:#0c1624; }
.site-footer .footer-bottom { border-top:none; }



/* === Brand lock & chatbot coexistence (v2.12) === */
.site-header .company-logo,
.site-footer .company-logo{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  white-space:nowrap;
  line-height:1.1;
}
.site-header .company-logo img,
.site-footer .company-logo img{
  height:28px;
  width:auto;
  vertical-align:middle;
}
.site-header .company-logo .brand-text,
.site-footer .company-logo .brand-text{
  display:inline !important;
  font-weight:700;
  letter-spacing:.02em;
  text-rendering:optimizeLegibility;
  font-variant-ligatures:none;
}
.site-header .company-logo .brand-text strong,
.site-footer .company-logo .brand-text strong{
  font-weight:800;
}
:root{ --chat-bubble-size:72px; }
@media (max-width: 782px){
  .site-footer{ padding-bottom: calc(var(--chat-bubble-size) + 24px); }
}
#amy-chat-widget,
.aimy-chat-widget,
#tf-chat-widget{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2147483000;
}
#amy-chat-widget *, .aimy-chat-widget *{
  line-height: normal;
  letter-spacing: normal;
  white-space: normal;
}
/* === End brand/chat fixes === */


/* --- patch: Centre legal text & reduce bar height --- */
.footer-bottom{
  background:#0c1624;
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  padding:4px 0 !important;
  border-top:none;
}
.footer-bottom .copyright{
  margin:0 !important;
  text-align:center !important;
  line-height:1.35 !important;
  font-size:0.9rem !important;
  color:rgba(255,255,255,.9);
}
.footer-bottom .footer-legal-links{ display:none !important; }

/* ===================================
   SHINY MODERN ENHANCEMENTS v4.0
   =================================== */

/* Enhanced Header with subtle gradient and better shadow */
header {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    animation: headerSlide 0.6s ease-out;
}

@keyframes headerSlide {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Logo glow effect on hover */
.logo a:hover {
    text-shadow: 0 0 20px rgba(26, 77, 122, 0.3);
    transition: text-shadow 0.3s ease;
}

/* Premium logo animation on load */
.logo {
    animation: logoEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Nav links with smooth underline animation */
.nav-links a {
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1a4d7a, #2e6da4);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Premium nav link hover with icon */
.nav-links li {
    position: relative;
}

.nav-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #1a4d7a;
}

.nav-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Hero with animated gradient */
.hero {
    background: linear-gradient(135deg, #f8fbfd 0%, #e8eef3 50%, #d8e5f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 77, 122, 0.05) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* Floating particles background effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(26, 77, 122, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(46, 109, 164, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(26, 77, 122, 0.04) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    33% { 
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% { 
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.9;
    }
}

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

/* Shiny hero stats with glassmorphism */
.hero-stats {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(26, 77, 122, 0.1);
    box-shadow: 0 8px 32px rgba(26, 77, 122, 0.12),
                0 2px 8px rgba(26, 77, 122, 0.08);
}

.stat-number {
    background: linear-gradient(135deg, #1a4d7a 0%, #2e6da4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Premium stat counter animation */
.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1a4d7a, transparent);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-stats:hover .stat-number::after {
    opacity: 1;
}

/* Premium loader animation for stats */
@keyframes countUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.stat {
    animation: countUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.stat:nth-child(1) { animation-delay: 0.2s; }
.stat:nth-child(2) { animation-delay: 0.4s; }
.stat:nth-child(3) { animation-delay: 0.6s; }

/* Enhanced buttons with gradients and animations */
.cta-button {
    background: linear-gradient(135deg, #1a4d7a 0%, #2e6da4 100%);
    box-shadow: 0 4px 15px rgba(26, 77, 122, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 77, 122, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-2px) scale(0.98);
}

.cta-button-white {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 77, 122, 0.1);
}

.cta-button-white:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Shiny product cards */
.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(26, 77, 122, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    backdrop-filter: blur(10px) saturate(180%);
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #1a4d7a, #2e6da4);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 77, 122, 0.2);
    animation: cardFloat 3s ease-in-out infinite;
}

.product-card:hover::before {
    opacity: 0.15;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(-8px) rotateX(0deg); }
    50% { transform: translateY(-12px) rotateX(2deg); }
}

/* Premium product number with animated ring */
.product-number {
    position: relative;
    display: inline-block;
}

.product-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(26, 77, 122, 0.2);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Enhanced testimonial cards */
.tf-testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(31, 59, 87, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px) saturate(180%);
}

.tf-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(31, 59, 87, 0.15);
    border-color: rgba(26, 77, 122, 0.2);
}

/* Premium testimonial card with spotlight effect */
.tf-testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.tf-testimonial-card:hover::after {
    opacity: 0.3;
    animation: spotlight 2s ease-in-out infinite;
}

@keyframes spotlight {
    0%, 100% { transform: translate(-10%, -10%); }
    50% { transform: translate(10%, 10%); }
}

/* Animated stars */
.tf-stars {
    background: linear-gradient(90deg, #f6b32b, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Animated star sparkle effect */
.tf-testimonial-card:hover .tf-stars {
    animation: starSparkle 0.6s ease-in-out;
}

@keyframes starSparkle {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1) rotate(5deg); }
    75% { transform: scale(1.1) rotate(-5deg); }
}

/* Enhanced avatar with gradient border */
.tf-avatar {
    background: linear-gradient(135deg, #f0f5ff 0%, #e3ecfa 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1),
                inset 0 1px 3px rgba(255, 255, 255, 0.8);
    position: relative;
    animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 3px rgba(255, 255, 255, 0.8); }
    50% { box-shadow: 0 6px 20px rgba(26, 77, 122, 0.3), inset 0 1px 3px rgba(255, 255, 255, 0.8); }
}

/* Footer enhancements */
.site-footer {
    background: linear-gradient(180deg, #0c1624 0%, #162332 100%);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* Premium footer with aurora effect */
footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, 
        rgba(26, 77, 122, 0.1) 0%, 
        rgba(46, 109, 164, 0.05) 50%, 
        transparent 100%);
    opacity: 0.5;
    animation: aurora 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes aurora {
    0%, 100% { transform: translateY(0) scaleX(1); }
    50% { transform: translateY(-20px) scaleX(1.1); }
}

.footer-column h4 {
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #1a4d7a, transparent);
}

/* Company logo shine effect */
.company-logo img {
    filter: drop-shadow(0 2px 8px rgba(26, 77, 122, 0.3));
    transition: filter 0.3s ease;
}

.company-logo:hover img {
    filter: drop-shadow(0 4px 12px rgba(26, 77, 122, 0.5));
}

/* Social icons with glow */
.social-links a {
    background: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.social-links a:hover {
    background: rgba(26, 77, 122, 0.8);
    box-shadow: 0 0 20px rgba(26, 77, 122, 0.5);
    transform: translateY(-3px);
}

/* Premium social icon ripple effect */
.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(26, 77, 122, 0.5);
    opacity: 0;
    transition: all 0.4s ease;
}

.social-links a:hover::before {
    width: 140%;
    height: 140%;
    opacity: 0;
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% { 
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% { 
        width: 180%;
        height: 180%;
        opacity: 0;
    }
}

/* Trust bar enhancement */
.trust-bar {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-bottom: 1px solid rgba(26, 77, 122, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Premium trust bar with animated dots */
.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1a4d7a, transparent);
    animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Section headers with gradient text */
.section-title {
    background: linear-gradient(135deg, #1a4d7a 0%, #2e6da4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(26, 77, 122, 0.1);
    position: relative;
    display: inline-block;
}

/* Premium section title with animated underline */
.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1a4d7a, #2e6da4);
    border-radius: 2px;
    animation: underlineGrow 2s ease-in-out infinite;
}

@keyframes underlineGrow {
    0%, 100% { width: 60px; opacity: 1; }
    50% { width: 80px; opacity: 0.7; }
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #1a4d7a;
    outline-offset: 2px;
    border-radius: 3px;
}

/* Subtle page load animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.product-card,
.tf-testimonial-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.product-card:nth-child(2) {
    animation-delay: 0.1s;
}

.product-card:nth-child(3) {
    animation-delay: 0.2s;
}

.tf-testimonial-card:nth-child(2) {
    animation-delay: 0.1s;
}

.tf-testimonial-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Premium gradient mesh background */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 77, 122, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 109, 164, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(26, 77, 122, 0.02) 0%, transparent 50%);
    animation: meshMove 30s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(5%, -5%) rotate(1deg); }
    66% { transform: translate(-5%, 5%) rotate(-1deg); }
}

/* Smooth performance optimizations */
.product-card,
.tf-testimonial-card,
.cta-button,
.social-links a {
    will-change: transform;
}

/* Premium text selection */
::selection {
    background: rgba(26, 77, 122, 0.3);
    color: #1a4d7a;
}

::-moz-selection {
    background: rgba(26, 77, 122, 0.3);
    color: #1a4d7a;
}

/* Premium scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1a4d7a, #2e6da4);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #153d61, #1a4d7a);
}

/* Accessibility: respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Premium parallax scroll effect */
@media (prefers-reduced-motion: no-preference) {
    .hero-content {
        animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
    }
    
    .product-card,
    .tf-testimonial-card {
        opacity: 0;
        animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
}

/* Premium nav items stagger animation */
.nav-links li {
    animation: navItemSlide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }
.nav-links li:nth-child(5) { animation-delay: 0.5s; }
.nav-links li:nth-child(6) { animation-delay: 0.6s; }

@keyframes navItemSlide {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   NEW ENHANCED SECTIONS
   =================================== */

/* Benefits Section */
.benefits-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fbfd 0%, #e8eef3 100%);
}

.benefits-section .section-title {
    text-align: center;
    font-size: 3rem;
    margin: 0 auto 1rem;
    max-width: 100%;
    padding: 0 2rem;
}

.benefits-section .section-subtitle {
    text-align: center;
    margin: 0 auto 4rem;
    max-width: 100%;
    padding: 0 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 100%;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a4d7a, #2e6da4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    color: #1a4d7a;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.benefit-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Use Cases Section */
.use-cases-section {
    padding: 6rem 2rem;
    background: white;
}

.use-cases-section .section-title {
    text-align: center;
    font-size: 3rem;
    margin: 0 auto 1rem;
    max-width: 100%;
    padding: 0 2rem;
}

.use-cases-section .section-subtitle {
    text-align: center;
    margin: 0 auto 4rem;
    max-width: 100%;
    padding: 0 2rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 100%;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.use-case-card {
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #1a4d7a;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    border-left-width: 8px;
    transform: translateX(3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.use-case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.use-case-icon {
    font-size: 2rem;
    color: #1a4d7a;
}

.use-case-card h3 {
    color: #1a4d7a;
    font-size: 1.4rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.use-case-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.use-case-features {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
}

.use-case-features li {
    padding: 0.5rem 0;
    color: #5a6c7d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.use-case-features li::before {
    content: "✓";
    color: #1a4d7a;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Trust Compliance Section */
.trust-compliance-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a4d7a, #2e6da4);
    color: white;
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.trust-badge i {
    font-size: 1.5rem;
}

/* CTA Section */
.final-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e8eef3 0%, #f8fbfd 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    color: #1a4d7a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.cta-button-secondary {
    background: white !important;
    color: #1a4d7a !important;
    border: 2px solid #1a4d7a;
}

.cta-button-secondary:hover {
    background: #f8fbfd !important;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

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

    .benefits-section .section-title,
    .use-cases-section .section-title {
        font-size: 2.2rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

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

    .cta-button,
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Container for centering sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
