@charset "utf-8";
/* -  sitestyle.css  */
/* ===================================
   SITESTYLE.CSS - ITG Business Solutions
   Main stylesheet for all pages
   =================================== */

/* ===================================
   RESET AND BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ECE6D6;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

/* ===================================
   RESPONSIVE IMAGE SYSTEM
   =================================== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[src*="One-of-a-Kind-banner.png"] {
    max-width: 100%;
    height: auto;
    width: auto;
    margin: 0 auto;
    display: block;
}

img[src*="turning on the light.jpg"] {
    max-width: 100%;
    height: auto;
    width: auto;
    border-radius: 10px;
}

img[src*="ITG banner2.png"] {
    max-width: 100%;
    height: auto;
    width: auto;
    margin: 0 auto;
    display: block;
}

img[src*="ITG footer.png"] {
    max-width: 100%;
    height: auto;
    width: auto;
    margin: 0 auto;
    display: block;
}

/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar {
    background-color: #111843;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    color: white;
    font-size: 1.0rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1 rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.8rem 1rem; /* Reduced horizontal padding */
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem; /* Slightly smaller font */
    white-space: nowrap; /* Prevents text wrapping */
    text-align: center;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #A1A3AD;
    color: white;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================================
   BANNER IMAGE SECTIONS
   =================================== */
.banner-image {
    text-align: center;
    margin: 20px auto;
    display: block;
    width: 100%;
}

.banner-image img {
    margin: 0 auto;
    display: block;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(135deg, #1554b5 0%, #186def 50%, #546ecb 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
    position: relative;

    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #ECE6D6;
}

.credentials-badge {
    display: inline-block;
    background-color: #A1A3AD;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: white;
}

/* ===================================
   PROBLEM SECTION
   =================================== */
.problem-section {
    padding: 80px 0;
    background-color: white;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.problem-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #111843;
}

.problem-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Photo and Quote Section */
.photo-quote-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #ECE6D6 0%, #f5f0e6 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.photo-frame {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border: 4px solid #111843;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f5f0e6;
}

.quote-content {
    flex: 1;
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.quote-author {
    font-size: 1rem;
    font-weight: bold;
    color: #111843;
    text-align: right;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ECE6D6 0%, #f5f0e6 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.problem-item:hover {
    transform: translateY(-5px);
    border-color: #A1A3AD;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #111843;
}

.problem-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #111843;
}

.problem-item p {
    color: #666;
    line-height: 1.6;
}

/* ===================================
   SOLUTION SECTION
   =================================== */
.solution-section {
    padding: 80px 0;
    background-color: #111843;
    color: white;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.solution-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.solution-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ECE6D6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #ECE6D6;
    background: rgba(255,255,255,0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ECE6D6;
}

.service-card p {
    line-height: 1.6;
    color: white;
}

/* ===================================
   AUTHORITY SECTION
   =================================== */
.authority-section {
    padding: 80px 0;
    background-color: #A1A3AD;
    color: white;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.authority-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.authority-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #ECE6D6;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.credential-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.credential-item:hover {
    transform: translateY(-5px);
    border-color: white;
    background: rgba(255,255,255,0.15);
}

.credential-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.credential-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.credential-item p {
    line-height: 1.6;
    color: #f0f0f0;
}


.authority-section .credential-item p {
    color: #1a237e; /* Navy blue instead of light gray */
}


/* ===================================
   VALUE PROPOSITION SECTION
   =================================== */
.value-section {
    padding: 80px 0;
    background-color: white;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.value-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111843;
}

.value-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.value-highlight {
    background-position: 0%;
    background-color: #0A39E3;
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.value-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.value-highlight p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
}

/* ===================================
   CARTOON SECTION
   =================================== */
.cartoon-section {
    background-color: white;
    padding: 2rem 0;
    display: block;
    width: 100%;
}

.cartoon-table {
    width: 100%;
    border: 0;
    border-collapse: collapse;
}

.cartoon-table th {
    vertical-align: top;
    padding: 1rem;
}

.bold-text {
    font-size: 1.3rem;
    color: #111843;
    font-weight: bold;
}

.normaltext {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* ===================================
   FOOTER STYLES
   =================================== */
.footer {
    background-color: #111843;
    color: white;
    padding: 3rem 0;
    text-align: center;
    display: block;
    width: 100%;
}

.footer .container {
    margin-bottom: 2rem;
}

.footer p {
    margin-bottom: 0.5rem;
    color: white;
    text-align: center;
}

.footer-image {
    background-color: #111843;
    text-align: center;
    padding: 1rem 0;
}

.footer-image img {
    margin: 0 auto;
    display: block;
}

/* ===================================
   ANIMATION CLASSES
   =================================== */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   MOBILE RESPONSIVE STYLES
   =================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #111843;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 1rem 0;
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0 !important;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .cartoon-table th {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }

    .cartoon-table th img {
        margin: 0 auto 1rem auto;
        max-width: 200px;
    }
    
    /* Fix for mobile table text centering */
    .cartoon-table th p {
        text-align: center !important;
    }
    
    /* Photo-quote section mobile styles */
    .photo-quote-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .photo-frame {
        width: 150px;
        height: 150px;
        margin: 0 auto 1rem auto;
    }
    
    .quote-text {
        font-size: 1rem;
    }
    
    .quote-author {
        text-align: center;
    }
}

@media (min-width: 769px) {
    .desktop-banner {
        display: block;
    }

    .mobile-banner {
        display: none;
    }
}

/*===========================
=============================
/* OLD FILE  
============================
============================

@charset "utf-8";
/* -  sitestyle.css  */
/* ===================================
   SITESTYLE.CSS - ITG Business Solutions
   Main stylesheet for all pages
   =================================== */

/* ===================================
   RESET AND BASE STYLES
   =================================== 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ECE6D6;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

/* ===================================
   RESPONSIVE IMAGE SYSTEM
   =================================== 
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[src*="One-of-a-Kind-banner.png"] {
    max-width: 100%;
    height: auto;
    width: auto;
    margin: 0 auto;
    display: block;
}

img[src*="turning on the light.jpg"] {
    max-width: 100%;
    height: auto;
    width: auto;
    border-radius: 10px;
}

img[src*="ITG banner2.png"] {
    max-width: 100%;
    height: auto;
    width: auto;
    margin: 0 auto;
    display: block;
}

img[src*="ITG footer.png"] {
    max-width: 100%;
    height: auto;
    width: auto;
    margin: 0 auto;
    display: block;
}

/* ===================================
   NAVIGATION BAR
   =================================== 

.navbar {
    background-color: #111843;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    color: white;
    font-size: 1.0rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1 rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.8rem 1rem; /* Reduced horizontal padding 
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem; /* Slightly smaller font 
    white-space: nowrap; /* Prevents text wrapping 
    text-align: center;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #A1A3AD;
    color: white;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================================
   BANNER IMAGE SECTIONS
   =================================== 
.banner-image {
    text-align: center;
    margin: 20px auto;
    display: block;
    width: 100%;
}

.banner-image img {
    margin: 0 auto;
    display: block;
}

/* ===================================
   HERO SECTION
   =================================== 
.hero {
    background: linear-gradient(135deg, #1554b5 0%, #186def 50%, #546ecb 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
    position: relative;

    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #ECE6D6;
}

.credentials-badge {
    display: inline-block;
    background-color: #A1A3AD;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: white;
}

/* ===================================
   PROBLEM SECTION
   =================================== 
.problem-section {
    padding: 80px 0;
    background-color: white;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.problem-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #111843;
}

.problem-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #A1A3AD;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Photo and Quote Section 
.photo-quote-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #ECE6D6 0%, #f5f0e6 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.photo-frame {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border: 4px solid #111843;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f5f0e6;
}

.quote-content {
    flex: 1;
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.quote-author {
    font-size: 1rem;
    font-weight: bold;
    color: #111843;
    text-align: right;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ECE6D6 0%, #f5f0e6 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.problem-item:hover {
    transform: translateY(-5px);
    border-color: #A1A3AD;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #111843;
}

.problem-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #111843;
}

.problem-item p {
    color: #666;
    line-height: 1.6;
}

/* ===================================
   SOLUTION SECTION
   =================================== 
.solution-section {
    padding: 80px 0;
    background-color: #111843;
    color: white;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.solution-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.solution-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ECE6D6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #ECE6D6;
    background: rgba(255,255,255,0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ECE6D6;
}

.service-card p {
    line-height: 1.6;
    color: white;
}

/* ===================================
   AUTHORITY SECTION
   =================================== 
.authority-section {
    padding: 80px 0;
    background-color: #A1A3AD;
    color: white;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.authority-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.authority-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #ECE6D6;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.credential-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.credential-item:hover {
    transform: translateY(-5px);
    border-color: white;
    background: rgba(255,255,255,0.15);
}

.credential-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.credential-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.credential-item p {
    line-height: 1.6;
    color: #f0f0f0;
}


.authority-section .credential-item p {
    color: #1a237e; /* Navy blue instead of light gray */
}


/* ===================================
   VALUE PROPOSITION SECTION
   =================================== 
.value-section {
    padding: 80px 0;
    background-color: white;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.value-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111843;
}

.value-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.value-highlight {
    background-position: 0%;
    background-color: #0A39E3;
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.value-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.value-highlight p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
}

/* ===================================
   CARTOON SECTION
   =================================== 
.cartoon-section {
    background-color: white;
    padding: 2rem 0;
    display: block;
    width: 100%;
}

.cartoon-table {
    width: 100%;
    border: 0;
    border-collapse: collapse;
}

.cartoon-table th {
    vertical-align: top;
    padding: 1rem;
}

.bold-text {
    font-size: 1.3rem;
    color: #111843;
    font-weight: bold;
}

.normaltext {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* ===================================
   FOOTER STYLES
   =================================== 
.footer {
    background-color: #111843;
    color: white;
    padding: 3rem 0;
    text-align: center;
    display: block;
    width: 100%;
}

.footer .container {
    margin-bottom: 2rem;
}

.footer p {
    margin-bottom: 0.5rem;
    color: white;
    text-align: center;
}

.footer-image {
    background-color: #111843;
    text-align: center;
    padding: 1rem 0;
}

.footer-image img {
    margin: 0 auto;
    display: block;
}

/* ===================================
   ANIMATION CLASSES
   =================================== 
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   MOBILE RESPONSIVE STYLES
   =================================== 
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #111843;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 1rem 0;
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0 !important;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .cartoon-table th {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }

    .cartoon-table th img {
        margin: 0 auto 1rem auto;
        max-width: 200px;
    }
    
    /* Fix for mobile table text centering */
    .cartoon-table th p {
        text-align: center !important;
    }
    
    /* Photo-quote section mobile styles 
    .photo-quote-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .photo-frame {
        width: 150px;
        height: 150px;
        margin: 0 auto 1rem auto;
    }
    
    .quote-text {
        font-size: 1rem;
    }
    
    .quote-author {
        text-align: center;
    }
}

@media (min-width: 769px) {
    .desktop-banner {
        display: block;
    }

    .mobile-banner {
        display: none;
    }
}