  /* Base styles and variables */
        :root {
            --primary-blue: #1E40AF;
            --secondary-blue: #3B82F6;
            --light-blue: #BFDBFE;
            --yellow: #FBBF24;
            --light-yellow: #FDE68A;
            --white: #FFFFFF;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1F2937;
            --gray-900: #111827;
            --radius: 0.5rem;
            --border-color: #E5E7EB;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
        }

        /* Reset and global styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden; /* Prevent horizontal scroll */
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            color: var(--gray-800);
            background-color: var(--white);
            min-height: 100vh;
            overflow-x: hidden; /* Prevent horizontal scroll */
            width: 100%;
            max-width: 100vw; /* Ensure body doesn't exceed viewport width */
        }

        /* Layout utilities */
        .container {
            width: 100%;
            max-width: 1200px; /* Reduced from 1400px for better mobile display */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        h3 {
            color: var(--primary-blue);
        }

        .nbsp {
            padding: 1rem;
        }

        @media (min-width: 640px) {
            .container {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

        .min-h-screen {
            min-height: 100vh;
        }

        .flex {
            display: flex;
        }

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

        /* Animations */
        @keyframes fade-in {
            from {
                opacity: 0;
                transform: translateY(ข10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slide-in {
            from {
                transform: translateX(-100%);
            }
            to {
                transform: translateX(0);
            }
        }

        .animate-fade-in {
            animation: fade-in 0.3s ease-out forwards;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary-blue), #075c84);
            color: var(--white);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 0 1rem; /* เพิ่ม padding ข้างใน container */
            position: relative; /* เพิ่มบรรทัดนี้ */
        }

        .logo {
            display: flex;
            align-items: center;
            flex-shrink: 0; /* Prevent logo from shrinking */
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }

        .logo-text {
            font-size: 1.2rem;
            font-weight: 700;
            white-space: nowrap; /* Prevent text wrapping */
        }

        @media (min-width: 768px) {
            .logo-text {
                font-size: 1.5rem;
            }
        }

        .highlight {
            color: var(--yellow);
        }
        
        .highlight-border{
            background-color: #1E40AF;
            border: 3px solid #000000;
            padding: 10px;
            border-radius: 16px;
        }
        /* Navigation Styles */
        nav {
            display: block;
        }

        nav ul {
            display: none;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        @media (min-width: 768px) {
            nav ul {
                display: flex;
                align-items: center;
            }
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            color: #fbbf24;
            text-decoration: none;
            padding: 0.75rem 1rem;
            display: block;
            font-weight: 500;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        nav ul li a:visited {
            color: #fbbf24;
        }

        nav ul li:hover a:hover {
            color: #ffffff;
        }

        nav ul li a:active {
            color: #ffffff;
        }

        /* Dropdown Menu */
        .dropdown-content {
            position: absolute;
            min-width: 250px;
            background-color: #075c84;
            color: #FFFFFF;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            display: none;
            border-radius: 0 0 8px 8px;
            z-index: 1001;
            margin-top: 1rem;
        }

        nav ul li .dropdown-content a {
            color: #FFFFFF;
            padding: 12px 16px;
            display: block;
            text-decoration: none;
            border-radius: 0 0 8px 8px;
            transition: all 0.5s ease;
        }

        nav ul li .dropdown-content a:visited {
            color: #FFFFFF;;
            border-radius: 8px 8px 8px 8px;
        }

        nav ul li .dropdown-content a:hover {
            background-color: #fbbf24;
            color: #1E40AF;;
            border-radius: 8px 8px 8px 8px;
        }

        nav ul li .dropdown-content a:active {
            color: #1E40AF;;
            border-radius: 8px 8px 8px 8px;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Mobile Menu Button */
        .menu-toggle {
            display: block;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            position: absolute; /* เปลี่ยนเป็น absolute positioning */
            right: 1rem; /* ชิดขวา 1rem */
            top: 50%; /* จัดกลางแนวตั้ง */
            transform: translateY(-50%); /* จัดกลางแนวตั้ง */
        }

        @media (min-width: 768px) {
            .menu-toggle {
                display: none;
            }
        }

        /* Mobile Navigation */
        @media (max-width: 767px) {
            nav ul {
                position: absolute;
                top: 100%;
                right: 0;
                width: 100vw;
                background-color: var(--primary-blue);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                border-radius: 0 0 8px 8px;
                z-index: 1000;
                flex-direction: column;
            }

            nav ul.show {
                display: flex;
            }

            nav ul li {
                width: 100%;
            }

            nav ul li a {
                padding: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .dropdown-content {
                position: static;
                box-shadow: none;
                background-color: rgba(255, 255, 255, 0.1);
                display: none;
                border-radius: 0;
                margin-top: 1rem;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            background: linear-gradient(to right, rgba(59, 130, 246, 0.9), rgba(30, 64, 175, 0.9));
            padding: 0rem 0 4rem;
            color: var(--white);
            margin-top: 60px; /* Account for fixed header */
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .hero-section {
                padding: 0rem 0 4rem;
            }
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 100%;
        }

        @media (min-width: 768px) {
            .hero-content {
                align-items: flex-start;
                text-align: left;
                max-width: 48rem;
            }
        }

        .hero-content h1 {
            font-size: 1.875rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .hero-content h1 {
                font-size: 3rem;
            }
        }

        .hero-content p {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
        }

        @media (min-width: 768px) {
            .hero-content p {
                font-size: 1.25rem;
            }
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
            max-width: 300px;
        }

        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
                max-width: none;
            }
        }

        .yellow-button, .outline-button {
            display: inline-block;
            font-weight: 500;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
        }

        .yellow-button {
            background-color: var(--yellow);
            color: var(--gray-900);
            border: 1px solid #1E40AF;
        }

        .yellow-button:hover {
            background-color: var(--light-yellow);
        }




        .small-yellow-button, .outline-button {
            display: initial;
            font-weight: bolder;
            padding: 0.45rem 0.45rem;
            border-radius: var(--radius);
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
        }

        .small-yellow-button {
            background-color: var(--yellow);
            color: #1E40AF;
            border: 2px solid #1E40AF;
            text-align: center;
            align-items: center;
        }

        .small-yellow-button:hover {
            background-color: var(--light-yellow);
        }

        .outline-button {
            background-color: #1E40AF;
            color: var(--white);
            border: 1px solid var(--yellow);
        }

        .outline-button:hover {
            background-color: #1E40AF;
        }

        .curve-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            overflow: hidden;
        }

        .curve-divider svg {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Services Section */
        .services-section {
            padding: 1rem 0;
            background-color: var(--white);
        }

        @media (min-width: 768px) {
            .services-section {
                padding: 1rem 0;
            }
        }

        .section-header {
            text-align: center;
            max-width: 48rem;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .yellow-divider {
            height: 4px;
            width: 100%;
            background-color: var(--yellow);
            margin: 0 auto 1.5rem;
            box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
        }

        .section-header p {
            font-size: 1.125rem;
            color: var(--gray-700);
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .service-card {
            border: 1px solid var(--gray-100);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            padding: 1.5rem;
            transition: box-shadow 0.3s ease;
            width: 100%;
        }
 
        @media (min-width: 640px) and (max-width: 1023px) {
            .services-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            
            .service-card {
                display: flex;
                flex-direction: column;
                height: 100%;
            }
            
            .service-card p {
                flex-grow: 1;
                margin-bottom: 1.5rem;
            }
            
            .service-link-button {
                margin-top: auto;
                background-color: #FBBF24;

            }

            .service-link-button:hover {
                background-color: #1E40AF;
                color: var(--white);
                background-color: #FBBF24;
            }
        }
        @media (max-width: 768px) {
            .small-yellow-button {
                width: 100%;
            }
            thead {
                display: none;
            }
            th {
                display: block;
                width: 100%;
            }
            td {
                display: block;
                width: 100%;
            }
        }
        @media (min-width: 1024px) {
            .services-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
            }
            
            .service-card {
                display: flex;
                flex-direction: column;
                height: 100%;
            }
            
            .service-card p {
                flex-grow: 1;
                margin-bottom: 1.5rem;
            }
            
            .service-link-button {
                margin-top: auto;
                background-color: #FBBF24;
            }

            .service-link-button:hover {
                background-color: #1E40AF;
                color: var(--white);
                background-color: #FBBF24;
            }

        }

        .service-card {
            border: 1px solid var(--gray-100);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            padding: 1.5rem;
            transition: box-shadow 0.3s ease;
            width: 100%;
        }

        .service-card:hover {
            box-shadow: var(--shadow-md);
        }

        .service-icon {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color:#1E40AF;
            margin-bottom: 0.75rem;
        }

        .service-card p {
            color: var(--gray-600);
            margin-bottom: 1.5rem;
        }

        .service-link-button {
            display: block;
            width: 100%;
            padding: 0.625rem;
            text-align: center;
            border: 1px solid var(--primary-blue);
            border-radius: var(--radius);
            color: var(--primary-blue);
            text-decoration: none;
            transition: all 0.3s ease;
            background-color: #FBBF24;
        }

        .service-link-button:hover {
            background-color: #1E40AF;
            color: var(--white);
            background-color: #FBBF24;
        }

        .feature-icon {
            color: var(--primary-blue);
        }

        /* About Section */
        .about-section {
            padding: 1rem 0;
            background-color: var(--gray-50);
        }

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

        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr 1fr;
                align-items: center;
            }
        }

        .about-image {
            align-self: start;
            border-radius: var(--radius);
            overflow: hidden;
            /* box-shadow: var(--shadow-lg); */
        }

        .team-image-placeholder {
            aspect-ratio: 16 / 9;
            /* background-color: var(--secondary-blue); */
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .image-label {
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 700;
        }

        .about-content h2 {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            text-align: center;
            min-width: 12em;
        }

        .about-content .yellow-divider {
            margin: 0 0 1.5rem;
        }

        .about-content p {
            color: var(--gray-700);
            margin-bottom: 1.5rem;
        }

        .about-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 640px) {
            .about-cards {
                grid-template-columns: 1fr 1fr;
            }
        }

        .about-card {
            background-color: var(--white);
            padding: 1rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }

        .about-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .about-card p {
            color: var(--gray-600);
            margin-bottom: 0;
        }

        .blue-button {
            display: inline-block;
            background-color: var(--primary-blue);
            color: var(--white);
            font-weight: 500;
            padding: 0.625rem 1.25rem;
            border-radius: var(--radius);
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .blue-button:hover {
            background-color: var(--secondary-blue);
        }

        /* Contact Section */
        .contact-section {
            padding: 4rem 0;
            background-color: var(--white);
        }

        @media (min-width: 768px) {
            .contact-section {
                padding: 6rem 0;
            }
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr 2fr;
            }
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background-color: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .contact-icon {
            color: var(--primary-blue);
            flex-shrink: 0;
        }

        .contact-card h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .contact-card p {
            color: var(--gray-600);
        }

        .contact-form-container {
            width: 100%;
        }

        .contact-form-card {
            background-color: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 1.5rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

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

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .form-group label {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--gray-700);
        }

        .form-group input,
        .form-group textarea {
            padding: 0.5rem 0.75rem;
            font-size: 1rem;
            line-height: 1.5;
            border: 1px solid var(--gray-300);
            border-radius: var(--radius);
            background-color: var(--white);
            transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
            width: 100%;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-blue);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

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

        .submit-button {
            width: 100%;
            background-color: var(--primary-blue);
            color: var(--white);
            font-weight: 500;
            padding: 0.75rem;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-size: 1rem;
        }

        .submit-button:hover {
            background-color: var(--secondary-blue);
        }

        /* Footer */
        .footer {
            background-color: var(--primary-blue);
            color: var(--white);
        }

        .footer-content {
            padding-top: 2rem;
        }

        @media (min-width: 768px) {
            .footer-content {
                padding-top: 2rem;
            }
        }

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

        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .footer-col h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
        }

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

        .footer-col ul li {
            margin-bottom: 0.5rem;
        }

        .footer-col ul li a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-col ul li a:visited {
            color: #ffffff;
        }

        .footer-col ul li:hover a:hover {
            color: #fbbf24;
        }

        .footer-col ul li a:active {
            color: #fbbf24;
        }

        .footer-col address {
            font-style: normal;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-col address p {
            margin-bottom: 0.5rem;
        }

        .copyright-bar {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .copyright-content {
            padding: 1.5rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .copyright-content {
                flex-direction: row;
                gap: 0;
            }
        }

        .copyright-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.875rem;
        }

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.5s ease;
        }

        .footer-links a:hover {
            color: rgba(251, 191, 36, 1.0);
        }

        .contact-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.5s ease;
        }

        .contact-link:hover {
            color: rgba(251, 191, 36, 1.0);
        }

        img, video, canvas, svg {
            max-width: 100%;
            height: auto;
        }

        /* สำหรับ Dropdown ใน Mobile */
        @media (max-width: 991px) {
            .dropdown-content {
                display: none;
                background-color: var(--primary-blue);
                padding-left: 20px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-out;
                margin-top: 1rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .footer-links a {
                display: block;
                margin-bottom: 0.5em;
            }
            
            .footer-links > .nbsp {
                display: none;
            }
            
            .nbsp {
                padding: 0em;
            }

            .dropdown.active .dropdown-content {
                display: block;
                max-height: 500px; /* ค่าที่มากพอสำหรับเนื้อหาทั้งหมด */
            }
            
            .dropdown > a {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            .dropdown > a::after {
                content: "+";
                font-size: 1.2rem;
                transition: transform 0.3s;
                margin-left: 10px;
                width: 1.2rem;
                text-align: center;
                display: inline-block;
                transform-origin: center;
            }
            
            .dropdown.active > a::after {
                transform: rotate(45deg);
            }
            
            /* ป้องกันการกระตุก */
            .dropdown-content a {
                padding: 10px 16px;
                transition: none;
            }
        }
        @media (min-width: 992px) {
            .dropdown > a::after {
                content: "+";
                font-size: 1.2rem;
                transition: transform 0.3s;
                margin-left: 10px;
                width: 1.2rem;
                text-align: center;
                display: inline-block;
                transform-origin: center;
            }
            
            .dropdown.active > a::after {
                transform: rotate(45deg);
            }
            
            .dropdown {
                position: relative;
            }
            
            .dropdown > a::after {
                content: "+";
                font-size: 1.2rem;
                transition: transform 0.3s;
                margin-left: 10px;
                width: 1.2rem;
                text-align: center;
                display: inline-block;
                transform-origin: center;
            }
            
            .dropdown.active > a::after {
                transform: rotate(45deg);
            }

            .dropdown-content {
                display: none;
                position: absolute;
                min-width: 250px;
                background-color: var(--primary-blue);
                box-shadow: 0 8px 16px rgba(0,0,0,0.1);
                z-index: 1000;
                border-radius: 0 0 8px 8px;
                animation: fadeIn 0.3s ease-out;
                margin-top: 1rem;
            }
            
            .dropdown.active .dropdown-content {
                display: block;
            }
            
            /* ป้องกันการปิดเมนูเมื่อโฮเวอร์ */
            .dropdown:hover .dropdown-content {
                display: none;
            }
            
            .dropdown.active:hover .dropdown-content {
                display: block;
            }
        }

        @media (min-width: 850px) and (max-width: 1023px) {
            #shopinfo2 {
                max-width: 50rem;
            }
        }

        @media (min-width: 1024px) {
            #some-newline {
                display: inline;
            }
            #some-space {
                display: none;
            }
        }

        @media (min-width: 741px) and (max-width: 1023px) {
            #some-newline {
                display: none;
            }
            #some-space {
                display: inline;
            }
        }

        @media (min-width: 640px) and (max-width: 740px) {
            #some-newline {
                display: inline;
            }
            #some-space {
                display: none;
            }
        }

        @media (max-width: 639px) {
            #some-newline {
                display: none;
            }
            #some-space {
                display: inline;
            }
        }

        @media (min-width: 130px) and (max-width: 365px) {
            #some-newline {
                display: inline;
            }
            #some-space {
                display: none;
            }
        }
        
        @media (min-width: 560px){
            .none-for-paid {
                display: inline-block; 
                color: #FFFFFF;
                background-color: #117017;
                padding: 0.5rem;
                border-radius: 6px;
                font-weight: 500;
                transition: transform 0.3s ease;
                transform: rotate(330deg); 
                cursor: pointer;
            }
            .nbsp-contact {
                display: inline-block;
            }
            .br-contact {
                display: none;
            }
        }
        
        @media (max-width: 559px){
            .none-for-paid {
                display: inline-block; 
                color: #FFFFFF;
                background-color: #117017;
                padding: 0.5rem;
                border-radius: 6px;
                font-weight: 500;
                transition: transform 0.3s ease;
                transform: rotate(0deg); 
                cursor: pointer;
                text-align: center;
                margin: 0 auto;
                width: auto;
            }
            .nbsp-contact {
                display: none;
            }
            .br-contact {
                display: inline-block;
            }
        }

        .process-steps,
        .process-step,
        .step-number,
        .step-title,
        .step-description {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8fafc;
        }

        .process-steps {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .process-step {
            position: relative;
            background-color: white;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border-top: 4px solid #fbbf24;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .step-number {
            position: absolute;
            top: -1.25rem;
            left: -1.25rem;
            width: 2.5rem;
            height: 2.5rem;
            background-color: #1E40AF;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.125rem;
            z-index: 1;
        }

        .step-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1E40AF;
            margin-bottom: 0.5rem;
            margin-top: 0.5rem;
        }

        .step-description {
            color: #6b7280;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .process-steps {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Animation on scroll (optional) */
        .process-step {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .process-step:nth-child(1) { animation-delay: 0.1s; }
        .process-step:nth-child(2) { animation-delay: 0.2s; }
        .process-step:nth-child(3) { animation-delay: 0.3s; }
        .process-step:nth-child(4) { animation-delay: 0.4s; }

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

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Hover effect for step number */
        .process-step:hover .step-number {
            background-color: #fbbf24;
            transform: scale(1.1);
        }

        .step-number {
            transition: all 0.3s ease;
        }


        /* Reset เฉพาะส่วนที่เกี่ยวข้อง */
        .service-detail-section,
        .service-detail-section * {
            box-sizing: border-box;
        }

        /* Container */
        .legal-entity-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Service Detail Section */
        .service-detail-section {
            padding: 3rem 0;
            background-color: #f8fafc;
        }

        /* Section Header */
        .legal-entity-section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .legal-entity-section-header h2 {
            font-size: 2rem;
            font-weight: bold;
            color: #1E40AF;
            margin-bottom: 1rem;
        }

        .legal-entity-yellow-divider {
            width: 80%;
            height: 4px;
            background-color: var(--yellow);
            margin: 0 auto 1.5rem;
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
        }

        .legal-entity-section-header p {
            color: #6b7280;
            font-size: 1.125rem;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Grid Layout */
        .service-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        @media (min-width: 768px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Service Features */
        .service-features h3 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #fbbf24;
            margin-bottom: 1rem;
        }

        .service-features {
            background-color: rgba(36, 118, 251, 0.6);
            padding: 1.5rem;
            border-radius: 0.5rem;
            border: 1px solid #1E40AF;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.3s forwards;
        }

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

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInLeft 0.6s ease forwards;
        }

        .feature-item:nth-child(1) { animation-delay: 0.1s; }
        .feature-item:nth-child(2) { animation-delay: 0.2s; }
        .feature-item:nth-child(3) { animation-delay: 0.3s; }
        .feature-item:nth-child(4) { animation-delay: 0.4s; }
        .feature-item:nth-child(5) { animation-delay: 0.5s; }

        .legal-entity-feature-icon {
            flex-shrink: 0;
            width: 1.5rem;
            height: 1.5rem;
            color: #fbbf24;
            margin-right: 0.75rem;
            margin-top: 0.125rem;
        }

        .feature-text {
            color: #000000;
            line-height: 1.5;
        }

        /* Service Benefits */
        .service-benefits {
            background-color: rgba(251, 191, 36, 0.1);
            padding: 1.5rem;
            border-radius: 0.5rem;
            border: 1px solid #fbbf24;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.3s forwards;
        }

        .service-benefits h3 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1E40AF;
            margin-bottom: 1rem;
        }

        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
        }

        .benefit-icon {
            flex-shrink: 0;
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 50%;
            background-color: #1E40AF;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.75rem;
            margin-right: 0.75rem;
            margin-top: 0.125rem;
        }

        .benefit-text {
            color: #000000;
            line-height: 1.5;
        }

        /* Process Section */
        .process-section {
            margin-top: 4rem;
        }

        .process-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1E40AF;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .legal-entity-process-steps {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .legal-entity-process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .legal-entity-process-steps {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .legal-entity-process-step {
            position: relative;
            background-color: white;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border-top: 4px solid #fbbf24;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .legal-entity-process-step:nth-child(1) { animation-delay: 0.1s; }
        .legal-entity-process-step:nth-child(2) { animation-delay: 0.2s; }
        .legal-entity-process-step:nth-child(3) { animation-delay: 0.3s; }
        .legal-entity-process-step:nth-child(4) { animation-delay: 0.4s; }

        .legal-entity-process-step:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .legal-entity-step-number {
            position: absolute;
            top: -1.25rem;
            left: -1.25rem;
            width: 2.5rem;
            height: 2.5rem;
            background-color: #1E40AF;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.125rem;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .legal-entity-process-step:hover .legal-entity-step-number {
            background-color: #fbbf24;
            transform: scale(1.1);
        }

        .step-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1E40AF;
            margin-bottom: 0.5rem;
            margin-top: 0.5rem;
        }

        .legal-entity-step-description {
            color: #000000;
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq-section {
            margin-top: 4rem;
        }

        .faq-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1E40AF;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .faq-container {
            max-width: 48rem;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            overflow: hidden;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            width: 100%;
            padding: 0.75rem 1rem;
            text-align: left;
            font-weight: 500;
            color: #1E40AF;
            background-color: #f9fafb;
            border: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: #f3f4f6;
        }

        .faq-arrow {
            width: 1.25rem;
            height: 1.25rem;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            /* padding: 0.75rem 1rem; */
            background-color: white;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer.active {
            max-height: 200px;
            padding: 0.75rem 1rem;
        }

        .faq-item.active .faq-arrow {
            transform: rotate(180deg);
        }

        .answer-text {
            color: #000000;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background-color: #1E40AF;
            color: white;
            padding: 3rem 0;
            margin-top: 3rem;
            text-align: center;
        }

        .cta-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) {
            .cta-title {
                font-size: 1.875rem;
            }
        }

        .cta-description {
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background-color: #fbbf24;
            color: #1E40AF;
            font-weight: bold;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background-color: #f59e0b;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .taxconsult-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .taxconsult-service-detail-section {
            padding: 48px 0;
            background-color: #f9fafb;
        }

        .taxconsult-section-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .taxconsult-section-header h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #1E40AF;
            margin-bottom: 16px;
        }

        .taxconsult-yellow-divider {
            width: 80%;
            height: 4px;
            background-color: var(--yellow);
            margin: 0 auto 1.5rem;
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
        }

        .taxconsult-section-header p {
            font-size: 1.125rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .taxconsult-grid {
            display: grid;
            gap: 32px;
            margin-top: 32px;
        }

        .taxconsult-grid-2 {
            grid-template-columns: 1fr;
        }

        .taxconsult-grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        @media (min-width: 768px) {
            .taxconsult-grid-2 {
                grid-template-columns: 1fr 1fr;
            }
        }

        .taxconsult-service-features h3 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #fbbf24;
            margin-bottom: 16px;
        }

        .taxconsult-service-features {
            background-color: rgba(36, 118, 251, 0.6);
            padding: 1.5rem;
            border-radius: 0.5rem;
            border: 1px solid #1E40AF;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.3s forwards;
        }

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

        .taxconsult-service-item {
            display: flex;
            align-items: flex-start;
            padding: 8px 0;
        }

        .taxconsult-check-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            color: #fbbf24;
            margin-right: 12px;
            margin-top: 2px;
        }

        .taxconsult-service-item span {
            color: #000000;
            line-height: 1.5;
        }

        .taxconsult-service-benefits {
            background-color: rgba(251, 191, 36, 0.1);
            padding: 24px;
            border-radius: 8px;
            border: 1px solid #fbbf24;
        }

        .taxconsult-service-benefits h3 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1E40AF;
            margin-bottom: 16px;
        }

        .taxconsult-benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
        }

        .taxconsult-benefit-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: #1E40AF;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            margin-right: 12px;
        }

        .taxconsult-benefit-item p {
            color: #000000;
            line-height: 1.5;
            margin: 0;
        }

        .taxconsult-tax-types-section {
            margin-top: 64px;
        }

        .taxconsult-tax-types-section h3 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1E40AF;
            margin-bottom: 24px;
            text-align: center;
        }

        .taxconsult-tax-type-card {
            background-color: white;
            padding: 24px;
            border-radius: 8px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #1E40AF;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .taxconsult-tax-type-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.15);
        }

        .taxconsult-tax-type-card h4 {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1E40AF;
            margin-bottom: 8px;
        }

        .taxconsult-tax-type-card p {
            color: #6b7280;
            line-height: 1.5;
            margin: 0;
        }

        .taxconsult-faq-section {
            margin-top: 64px;
        }

        .taxconsult-faq-section h3 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1E40AF;
            margin-bottom: 24px;
            text-align: center;
        }

        .taxconsult-faq-container {
            max-width: 768px;
            margin: 0 auto;
        }

        .taxconsult-faq-item {
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .taxconsult-faq-question {
            width: 100%;
            padding: 16px;
            text-align: left;
            font-weight: 500;
            font-size: 1.1rem;
            color: #1E40AF;
            background-color: #f9fafb;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .taxconsult-faq-question:hover {
            background-color: #f3f4f6;
        }

        .taxconsult-faq-icon {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .taxconsult-faq-icon.active {
            transform: rotate(180deg);
        }

        .taxconsult-faq-answer {
            background-color: white;
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .taxconsult-faq-answer.active {
            display: block;
        }

        .taxconsult-faq-answer p {
            color: #000000;
            line-height: 1.6;
            margin: 0;
        }

        .taxconsult-cta-section {
            background-color: #1E40AF;
            color: white;
            padding: 48px 0;
            margin-top: 48px;
            text-align: center;
        }

        .taxconsult-cta-section h2 {
            font-size: 1.875rem;
            font-weight: bold;
            margin-bottom: 16px;
        }

        @media (min-width: 768px) {
            .taxconsult-cta-section h2 {
                font-size: 2.25rem;
            }
        }

        .taxconsult-cta-section p {
            font-size: 1.125rem;
            margin-bottom: 24px;
        }

        .taxconsult-cta-button {
            display: inline-block;
            background-color: #fbbf24;
            color: #1E40AF;
            font-weight: bold;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

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

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Responsive adjustments */
        @media (max-width: 767px) {
            .taxconsult-section-header h2 {
                font-size: 2rem;
            }
            
            .taxconsult-container {
                padding: 0 16px;
            }
        }

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

        /* Main Section */
        .accountingservice-section {
            padding: 3rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            min-height: 100vh;
        }

        .accountingservice-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Section Header */
        .accountingservice-header {
            text-align: center;
            margin-bottom: 3rem;
            animation: fadeInUpCard 0.8s ease-out;
        }

        .accountingservice-header h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #1E40AF;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .accountingservice-divider {
            width: 80%;
            height: 4px;
            background-color: var(--yellow);
            margin: 0 auto 1.5rem;
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
        }

        .accountingservice-header p {
            font-size: 1.125rem;
            color: #4a5568;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Grid Layout */
        .accountingservice-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        @media (min-width: 768px) {
            .accountingservice-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .accountingservice-grid-three {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        @media (min-width: 768px) {
            .accountingservice-grid-three {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Service Cards */
        .accountingservice-card-icon {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 3rem;
            height: 3rem;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
            transition: all 0.5s ease;
        }

        .accountingservice-card:hover .accountingservice-card-icon {
            transform: scale(1.1) rotate(45deg);
            box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
        }

        .accountingservice-card-icon svg {
            width: 1.5rem;
            height: 1.5rem;
            color: #06133c;
        }

        .accountingservice-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-left: 4px solid #1E40AF;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUpCard 0.8s ease-out;
        }

        .accountingservice-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #1E40AF, #3B82F6);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .accountingservice-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

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

        .accountingservice-card h3 {
            font-size: 1.25rem;
            font-weight: bold;
            color: #1E40AF;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .accountingservice-list {
            list-style: none;
            padding: 0;
        }

        .accountingservice-list-item {
            display: flex;
            align-items: flex-start;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .accountingservice-list-item:hover {
            background: #f8fafc;
            transform: translateX(5px);
        }

        .accountingservice-icon {
            flex-shrink: 0;
            width: 1.25rem;
            height: 1.25rem;
            color: #fbbf24;
            margin-right: 0.75rem;
            margin-top: 0.125rem;
            filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
        }

        .accountingservice-list-text {
            color: #000000;
            font-size: 1rem;
        }

        /* Benefits Section */
        .accountingservice-benefits {
            margin-top: 4rem;
        }

        .accountingservice-benefit-card {
            background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUpCard 0.8s ease-out;
        }

        .accountingservice-benefit-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.5s ease;
        }

        .accountingservice-benefit-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(30, 64, 175, 0.4);
        }

        .accountingservice-benefit-card:hover::before {
            transform: scale(1);
        }

        .accountingservice-benefit-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .accountingservice-benefit-icon {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            border-radius: 50%;
            padding: 0.75rem;
            margin-right: 1rem;
            box-shadow: 0 4px 8px rgba(251, 191, 36, 0.3);
        }

        .accountingservice-benefit-icon svg {
            width: 1.5rem;
            height: 1.5rem;
            color: #1E40AF;
        }

        .accountingservice-benefit-title {
            color: #fbbf24;
            font-size: 1.125rem;
            font-weight: bold;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .accountingservice-benefit-text {
            line-height: 1.6;
            opacity: 0.95;
        }

        /* CTA Section */
        .accountingservice-cta {
            margin-top: 4rem;
            text-align: center;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            padding: 3rem 2rem;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(251, 191, 36, 0.3);
            position: relative;
            overflow: hidden;
        }

        .accountingservice-cta::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 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,100 1000,0"/></svg>');
            background-size: cover;
        }

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

        .accountingservice-cta h2 {
            font-size: 2rem;
            font-weight: bold;
            color: #1E40AF;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
        }

        .accountingservice-cta p {
            color: #4a5568;
            margin-bottom: 2rem;
            font-size: 1.125rem;
        }

        .accountingservice-cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
            color: white;
            font-weight: bold;
            padding: 1rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
            position: relative;
            overflow: hidden;
        }

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

        .accountingservice-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(30, 64, 175, 0.4);
        }

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

        /* Animations */
        @keyframes fadeInUpCard {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .accountingservice-header h2 {
                font-size: 2rem;
            }
            
            .accountingservice-cta h2 {
                font-size: 1.5rem;
            }
            
            .accountingservice-card {
                padding: 1.5rem;
            }
            
            .accountingservice-benefit-card {
                padding: 1.5rem;
            }
        }

        /* Scroll animations */
        .accountingservice-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .accountingservice-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .accountingservice-benefit-card:nth-child(1) {
            animation-delay: 0.3s;
        }
        
        .accountingservice-benefit-card:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .accountingservice-benefit-card:nth-child(3) {
            animation-delay: 0.5s;
        }

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

        /* Section Styles */
        .closingfinancialstatements-services-section {
            padding: 48px 0;
        }

        .closingfinancialstatements-bg-gray-50 {
            background-color: #f9fafb;
        }

        .closingfinancialstatements-bg-blue {
            background-color: #1E40AF;
            color: white;
        }

        /* Section Header */
        .closingfinancialstatements-section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .closingfinancialstatements-section-header h2 {
            font-size: 2rem;
            font-weight: bold;
            color: #1E40AF;
            margin-bottom: 16px;
        }

        .closingfinancialstatements-bg-blue .closingfinancialstatements-section-header h2 {
            color: white;
        }

        .closingfinancialstatements-section-header p {
            max-width: 768px;
            margin: 0 auto;
            font-size: 1.125rem;
            color: #6b7280;
        }

        .closingfinancialstatements-bg-blue .closingfinancialstatements-section-header p {
            color: #e5e7eb;
        }

        .closingfinancialstatements-yellow-divider {
            width: 80%;
            height: 4px;
            background-color: var(--yellow);
            margin: 0 auto 1.5rem;
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
        }

        /* Grid Layouts */
        .closingfinancialstatements-grid {
            display: grid;
            gap: 32px;
        }

        .closingfinancialstatements-grid-cols-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .closingfinancialstatements-grid-cols-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        @media (max-width: 768px) {
            .closingfinancialstatements-grid-cols-2,
            .closingfinancialstatements-grid-cols-4 {
                grid-template-columns: 1fr;
            }
        }

        /* Service Cards */
        .closingfinancialstatements-service-card {
            background: white;
            padding: 32px;
            border-radius: 8px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #1E40AF;
            transition: all 0.3s ease;
        }

        .closingfinancialstatements-service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
        }

        .closingfinancialstatements-service-card-yellow {
            border-left-color: #fbbf24;
        }

        .closingfinancialstatements-service-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1E40AF;
            margin-bottom: 16px;
        }

        /* Service List */
        .closingfinancialstatements-service-list {
            list-style: none;
        }

        .closingfinancialstatements-service-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .closingfinancialstatements-checkmark {
            width: 20px;
            height: 20px;
            color: #fbbf24;
            margin-right: 8px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Features */
        .closingfinancialstatements-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
        }

        .closingfinancialstatements-feature-icon {
            background: #1E40AF;
            border-radius: 6px;
            padding: 8px;
            margin-right: 12px;
            flex-shrink: 0;
        }

        .closingfinancialstatements-feature-icon svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .closingfinancialstatements-feature h4 {
            font-size: 1.125rem;
            font-weight: 500;
            color: #111827;
            margin-bottom: 4px;
        }

        .closingfinancialstatements-feature p {
            color: #6b7280;
        }

        /* Process Steps */
        .closingfinancialstatements-process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 48px;
        }

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

        .closingfinancialstatements-process-step {
            position: relative;
            background: white;
            padding: 24px;
            border-radius: 8px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border-top: 4px solid #fbbf24;
            transition: all 0.3s ease;
        }

        .closingfinancialstatements-process-step:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
        }

        .closingfinancialstatements-step-number {
            position: absolute;
            top: -20px;
            left: -20px;
            width: 40px;
            height: 40px;
            background: #1E40AF;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.125rem;
        }

        .closingfinancialstatements-process-step h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1E40AF;
            margin-bottom: 8px;
        }

        .closingfinancialstatements-process-step p {
            color: #6b7280;
        }

        /* FAQ Section */
        .closingfinancialstatements-faq-container {
            max-width: 768px;
            margin: 0 auto;
        }

        .closingfinancialstatements-faq-item {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            margin-bottom: 16px;
            overflow: hidden;
        }

        .closingfinancialstatements-faq-question {
            width: 100%;
            padding: 14px;
            text-align: left;
            font-weight: 500;
            color: #1E40AF;
            background: none;
            border: none;
            cursor: pointer;
            transition: background-color 0.6s ease;
        }

        .closingfinancialstatements-faq-question:hover {
            background-color: #f9fafb;
        }

        .closingfinancialstatements-faq-question-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 1.1rem;
        }

        .closingfinancialstatements-faq-arrow {
            width: 20px;
            height: 20px;
            color: #fbbf24;
            transition: transform 0.6s ease;
        }

        .closingfinancialstatements-faq-arrow.active {
            transform: rotate(180deg);
        }

        .closingfinancialstatements-faq-answer {
            padding: 0 24px 0px;
            color: #6b7280;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s ease, padding 0.6s ease;
        }

        .closingfinancialstatements-faq-answer.active {
            max-height: 200px;
        }

        /* CTA Section */
        .closingfinancialstatements-cta {
            text-align: center;
            padding: 48px 0;
        }

        .closingfinancialstatements-cta h2 {
            font-size: 1.875rem;
            font-weight: bold;
            margin-bottom: 16px;
        }

        @media (min-width: 768px) {
            .closingfinancialstatements-cta h2 {
                font-size: 2.25rem;
            }
        }

        .closingfinancialstatements-cta p {
            font-size: 1.25rem;
            margin-bottom: 32px;
            max-width: 512px;
            margin-left: auto;
            margin-right: auto;
        }

        .closingfinancialstatements-cta-button {
            display: inline-block;
            background: #fbbf24;
            color: #111827;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

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

        


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

        .font-bold {
            font-weight: bold;
        }

        .leading-relaxed {
            line-height: 1.625;
        }

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

        .mb-4 {
            margin-bottom: 1rem;
        }

        .mb-6 {
            margin-bottom: 1.5rem;
        }

        .mb-8 {
            margin-bottom: 2rem;
        }

        .mb-16 {
            margin-bottom: 4rem;
        }

        .py-16 {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }

        .py-20 {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        .p-6 {
            padding: 1.5rem;
        }

        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .px-8 {
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .py-4 {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        .rounded-lg {
            border-radius: 0.5rem;
        }

        .rounded-2xl {
            border-radius: 1rem;
        }

        .shadow-lg {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .shadow-md {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .text-white {
            color: white;
        }

        .text-gray-600 {
            color: #6b7280;
        }

        .bg-white {
            background-color: white;
        }

        .bg-gray-50 {
            background-color: #f9fafb;
        }

        .inline-block {
            display: inline-block;
        }

        .h-full {
            height: 100%;
        }

        /* Typography */
        .text-lg {
            font-size: 1.125rem;
        }

        .text-xl {
            font-size: 1.25rem;
        }

        .text-2xl {
            font-size: 1.5rem;
        }

        .text-3xl {
            font-size: 1.875rem;
        }

        .text-4xl {
            font-size: 2.25rem;
        }

        .text-5xl {
            font-size: 3rem;
        }

        /* Grid System */
        .grid {
            display: grid;
        }

        .grid-cols-1 {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }

        .gap-6 {
            gap: 1.5rem;
        }

        .max-w-2xl {
            max-width: 42rem;
        }

        .max-w-3xl {
            max-width: 48rem;
        }

        .max-w-6xl {
            max-width: 72rem;
        }

        .max-w-7xl {
            max-width: 80rem;
        }

        /* Colors */
        .text-primary-blue {
            color: #1e40af;
        }

        .text-yellow {
            color: #fbbf24;
        }

        .bg-primary-blue {
            background-color: #1e40af;
        }

        .bg-yellow {
            background-color: #fbbf24;
        }

        .border-primary-blue {
            border-color: #1e40af;
        }

        .border-yellow {
            border-color: #fbbf24;
        }

        .border-b-4 {
            border-bottom-width: 4px;
        }

        /* Responsive Grid */
        @media (min-width: 640px) {
            .sm-grid-cols-2 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (min-width: 768px) {
            .md-grid-cols-3 {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            
            .md-text-4xl {
                font-size: 2.25rem;
            }
            
            .md-text-5xl {
                font-size: 3rem;
            }
            
            .md-text-2xl {
                font-size: 1.5rem;
            }
            
            .p-lg-8 {
                padding: 2rem;
            }
            
            .text-lg-xl {
                font-size: 1.25rem;
            }
            
            .text-lg-base {
                font-size: 1rem;
            }
        }

        @media (min-width: 1024px) {
            .lg-grid-cols-4 {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }

        /* Financial Statements Analysis Styles */
        .financialstatementsanalysis-services-section {
            padding: 48px 0;
        }

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

        .financialstatementsanalysis-hero {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            position: relative;
            overflow: hidden;
        }

        .financialstatementsanalysis-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: financialstatementsanalysis-float 20s linear infinite;
        }


        /* Section Header */
        .financialstatementsanalysis-section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .financialstatementsanalysis-section-header h2 {
            font-size: 2rem;
            font-weight: bold;
            color: #1E40AF;
            margin-bottom: 16px;
        }

        .financialstatementsanalysis-bg-blue .financialstatementsanalysis-section-header h2 {
            color: white;
        }

        .financialstatementsanalysis-section-header p {
            max-width: 768px;
            margin: 0 auto;
            font-size: 1.125rem;
            color: #6b7280;
        }

        .financialstatementsanalysis-bg-blue .financialstatementsanalysis-section-header p {
            color: #e5e7eb;
        }

        @keyframes financialstatementsanalysis-float {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-50px, -50px); }
        }

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

        .financialstatementsanalysis-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(0);
            position: relative;
            overflow: hidden;
        }

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

        .financialstatementsanalysis-card:hover::before {
            left: 100%;
        }

        .financialstatementsanalysis-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }




        
        .financialstatementsanalysis-card-blue h3 {
            color: #fbbf24 !important;
        }

        .financialstatementsanalysis-card-blue {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            color: #fbbf24;
        }

        .financialstatementsanalysis-card-blue:hover {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1e40af !important;
            h3{
                color: #1e40af !important;
            }
        }

        .financialstatementsanalysis-card-yellow h3 {
            color: #1e40af !important;
        }

        .financialstatementsanalysis-card-yellow {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1e40af;
        }

        .financialstatementsanalysis-card-yellow:hover {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            color: #fbbf24 !important;
            h3{
                color: #fbbf24 !important;
            }
        }




        .financialstatementsanalysis-icon {
            transition: all 0.3s ease;
        }

        .financialstatementsanalysis-card:hover .financialstatementsanalysis-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .financialstatementsanalysis-icon svg {
            width: 2.5rem;
            height: 2.5rem;
            margin: 0 auto;
            display: block;
        }

        @media (min-width: 640px) {
            .financialstatementsanalysis-icon svg {
                width: 3rem;
                height: 3rem;
            }
        }

        @media (min-width: 1024px) {
            .financialstatementsanalysis-icon svg {
                width: 2.75rem;
                height: 2.75rem;
            }
        }

        @media (min-width: 1280px) {
            .financialstatementsanalysis-icon svg {
                width: 3rem;
                height: 3rem;
            }
        }

        .financialstatementsanalysis-divider {
            position: relative;
            overflow: hidden;
        }

        .financialstatementsanalysis-divider::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
            animation: financialstatementsanalysis-shine 2s infinite;
        }

        @keyframes financialstatementsanalysis-shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .financialstatementsanalysis-benefit-card {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .financialstatementsanalysis-benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #1e40af, #fbbf24, #1e40af);
            background-size: 200% 100%;
            animation: financialstatementsanalysis-border-move 3s linear infinite;
        }

        @keyframes financialstatementsanalysis-border-move {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .financialstatementsanalysis-benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .financialstatementsanalysis-benefit-icon {
            transition: all 0.3s ease;
        }

        .financialstatementsanalysis-benefit-card:hover .financialstatementsanalysis-benefit-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .financialstatementsanalysis-benefit-icon svg {
            width: 2rem;
            height: 2rem;
        }

        @media (min-width: 1024px) {
            .financialstatementsanalysis-benefit-icon svg {
                width: 2.5rem;
                height: 2.5rem;
            }
        }

        .financialstatementsanalysis-cta {
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            position: relative;
            overflow: hidden;
        }

        .financialstatementsanalysis-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 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");
            animation: financialstatementsanalysis-pattern-move 30s linear infinite;
        }

        @keyframes financialstatementsanalysis-pattern-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

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

        .financialstatementsanalysis-btn {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .financialstatementsanalysis-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transition: all 0.3s ease;
            transform: translate(-50%, -50%);
        }

        .financialstatementsanalysis-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .financialstatementsanalysis-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .financialstatementsanalysis-section-title {
            position: relative;
            display: inline-block;
        }

        .financialstatementsanalysis-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #1e40af, #fbbf24);
            transition: width 0.3s ease;
        }

        .financialstatementsanalysis-section-title:hover::after {
            width: 100%;
        }

        .financialstatementsanalysis-fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: financialstatementsanalysis-fadeInUp 0.8s ease forwards;
        }

        @keyframes financialstatementsanalysis-fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .financialstatementsanalysis-card:nth-child(1) { animation-delay: 0.1s; }
        .financialstatementsanalysis-card:nth-child(2) { animation-delay: 0.2s; }
        .financialstatementsanalysis-card:nth-child(3) { animation-delay: 0.3s; }
        .financialstatementsanalysis-card:nth-child(4) { animation-delay: 0.4s; }

        .financialstatementsanalysis-benefit-card:nth-child(1) { animation-delay: 0.1s; }
        .financialstatementsanalysis-benefit-card:nth-child(2) { animation-delay: 0.2s; }
        .financialstatementsanalysis-benefit-card:nth-child(3) { animation-delay: 0.3s; }

        .divider-yellow {
            width: 80%;
            height: 4px;
            background-color: var(--yellow);
            margin: 0 auto 1.5rem;
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
        }

        /* Responsive Typography */
        @media (min-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
            }
            
            .card-padding-lg {
                padding: 2rem;
            }
            
            .card-title-lg {
                font-size: 1.25rem;
            }
            
            .card-text-lg {
                font-size: 1rem;
            }
            
            .benefit-title-lg {
                font-size: 1.25rem;
            }
            
            .benefit-text-lg {
                font-size: 1rem;
            }
        }

        /* Grid Responsive */
        .financialstatementsanalysis-services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 80rem;
            margin: 0 auto;
        }

        @media (min-width: 640px) {
            .financialstatementsanalysis-services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .financialstatementsanalysis-services-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 72rem;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .benefits-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        
        .aboutus-page-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .aboutus-page-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .aboutus-page-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(30, 64, 175, 0.1);
            border: 2px solid rgba(251, 191, 36, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .aboutus-page-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #fbbf24, #1e40af);
        }

        .aboutus-page-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(30, 64, 175, 0.15);
            border-color: #fbbf24;
        }

        .aboutus-page-card h3 {
            color: #1e40af;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
            position: relative;
        }

        .aboutus-page-card h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: #fbbf24;
            border-radius: 2px;
        }

        .aboutus-page-card p {
            color: #374151;
            font-size: 1rem;
            line-height: 1.7;
            margin-top: 1.5rem;
            text-align: justify;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .aboutus-page-container {
                padding: 1rem;
            }
            
            .aboutus-page-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .aboutus-page-card {
                padding: 1.5rem;
            }
            
            .aboutus-page-card h3 {
                font-size: 1.25rem;
            }
        }

        /* Animation for cards appearing */
        .aboutus-page-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .aboutus-page-card:nth-child(1) { animation-delay: 0.1s; }
        .aboutus-page-card:nth-child(2) { animation-delay: 0.2s; }
        .aboutus-page-card:nth-child(3) { animation-delay: 0.3s; }
        .aboutus-page-card:nth-child(4) { animation-delay: 0.4s; }


        .aboutus-page-privacy-container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 2rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .aboutus-page-privacy-section {
            background: #ffffff;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 12px 40px rgba(30, 64, 175, 0.08);
            border: 2px solid rgba(251, 191, 36, 0.15);
            position: relative;
            overflow: hidden;
        }

        .aboutus-page-privacy-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #fbbf24, #1e40af, #fbbf24);
        }

        .aboutus-page-privacy-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .aboutus-page-privacy-title {
            color: #1e40af;
            font-size: 2.5rem;
            font-weight: 700;
            margin-top: 1.5rem;
        }

        .aboutus-page-privacy-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            /* background: #fbbf24; */
            /* border-radius: 2px; */
        }

        .aboutus-page-privacy-subtitle {
            color: #6b7280;
            font-size: 1.1rem;
            font-weight: 400;
            margin-top: 1.5rem;
        }

        .aboutus-page-privacy-content {
            line-height: 1.8;
            color: #374151;
        }

        .aboutus-page-privacy-content h3 {
            color: #1e40af;
            font-size: 1.4rem;
            font-weight: 600;
            margin: 2.5rem 0 1rem 0;
            position: relative;
            padding-left: 1rem;
        }

        .aboutus-page-privacy-content h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            background: #fbbf24;
            border-radius: 2px;
        }

        .aboutus-page-privacy-content p {
            text-align: justify;
            font-size: 1rem;
        }

        .aboutus-page-privacy-content ul {
            margin: 1rem 0 1.5rem 2rem;
        }

        .aboutus-page-privacy-content li {
            margin-bottom: 0.8rem;
            position: relative;
        }

        .aboutus-page-privacy-content li::marker {
            color: #fbbf24;
        }

        .aboutus-page-privacy-highlight {
            background: linear-gradient(120deg, rgba(251, 191, 36, 0.1) 0%, rgba(30, 64, 175, 0.05) 100%);
            padding: 1.0rem;
            border-radius: 12px;
            border-left: 4px solid #fbbf24;
            margin: 2rem 0;
        }

        .aboutus-page-privacy-contact {
            background: rgba(30, 64, 175, 0.05);
            padding: 1rem;
            border-radius: 15px;
            margin-top: 2.5rem;
            border: 1px solid rgba(30, 64, 175, 0.1);
        }

        .aboutus-page-privacy-contact h4 {
            color: #1e40af;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .aboutus-page-privacy-contact p {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .aboutus-page-privacy-date {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid rgba(251, 191, 36, 0.2);
            color: #6b7280;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (min-width: 830px) {
            .aboutus-page-privacy-container {
                padding: 1rem;
                margin: 2rem auto;
            }
            
            .aboutus-page-privacy-section {
                padding: 2rem;
            }
            
            .aboutus-page-privacy-title {
                font-size: 1.8rem;
            }
            
            .aboutus-page-privacy-content h3 {
                font-size: 1.8rem;
            }

            .aboutus-page-privacy-subtitle {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 830px) {
            .aboutus-page-privacy-container {
                padding: 1rem;
                margin: 2rem auto;
            }
            
            .aboutus-page-privacy-section {
                padding: 2rem;
            }
            
            .aboutus-page-privacy-title {
                font-size: 1.8rem;
            }
            
            .aboutus-page-privacy-content h3 {
                font-size: 1.8rem;
            }

            .aboutus-page-privacy-subtitle {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 768px) {
            .aboutus-page-privacy-container {
                padding: 1rem;
                margin: 2rem auto;
            }
            
            .aboutus-page-privacy-section {
                padding: 2rem;
            }
            
            .aboutus-page-privacy-title {
                font-size: 1.8rem;
            }
            
            .aboutus-page-privacy-content h3 {
                font-size: 1.8rem;
            }

            .aboutus-page-privacy-subtitle {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 570px) {
            .aboutus-page-privacy-container {
                padding: 1rem;
                margin: 2rem auto;
            }
            
            .aboutus-page-privacy-section {
                padding: 2rem;
            }
            
            .aboutus-page-privacy-title {
                font-size: 1.8rem;
            }
            
            .aboutus-page-privacy-content h3 {
                font-size: 1.8rem;
            }

            .aboutus-page-privacy-subtitle {
                font-size: 1.0rem;
            }
        }

        @media (max-width: 530px) {
            .aboutus-page-privacy-container {
                padding: 1rem;
                margin: 2rem auto;
            }
            
            .aboutus-page-privacy-section {
                padding: 2rem;
            }
            
            .aboutus-page-privacy-title {
                font-size: 1.4rem;
            }
            
            .aboutus-page-privacy-content h3 {
                font-size: 1.4rem;
            }

            .aboutus-page-privacy-subtitle {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 430px) {
            .aboutus-page-privacy-container {
                padding: 1rem;
                margin: 2rem auto;
            }
            
            .aboutus-page-privacy-section {
                padding: 2rem;
            }
            
            .aboutus-page-privacy-title {
                font-size: 1.3rem;
            }
            
            .aboutus-page-privacy-content h3 {
                font-size: 1.3rem;
            }

            .aboutus-page-privacy-subtitle {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 410px) {
            .aboutus-page-privacy-container {
                padding: 1rem;
                margin: 2rem auto;
            }
            
            .aboutus-page-privacy-section {
                padding: 2rem;
            }
            
            .aboutus-page-privacy-title {
                font-size: 1.0rem;
            }
            
            .aboutus-page-privacy-content h3 {
                font-size: 1.0rem;
            }

            .aboutus-page-privacy-subtitle {
                font-size: 0.7rem;
            }
        }

        /* Smooth animations */
        .aboutus-page-privacy-section {
            animation: fadeInUpCard 0.8s ease forwards;
        }


        .aboutus-page-terms-container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 2rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .aboutus-page-terms-section {
            background: #ffffff;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 12px 40px rgba(30, 64, 175, 0.08);
            border: 2px solid rgba(251, 191, 36, 0.15);
            position: relative;
            overflow: hidden;
        }

        .aboutus-page-terms-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #fbbf24, #1e40af, #fbbf24);
        }

        .aboutus-page-terms-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .aboutus-page-terms-title {
            color: #1e40af;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
        }

        .aboutus-page-terms-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            border-radius: 2px;
        }

        .aboutus-page-terms-subtitle {
            color: #6b7280;
            font-size: 1.1rem;
            font-weight: 400;
            margin-top: 1.5rem;
        }

        .aboutus-page-terms-content {
            line-height: 1.0;
            color: #374151;
        }

        .aboutus-page-terms-content h3 {
            color: #1e40af;
            font-size: 1.4rem;
            font-weight: 600;
            margin: 2.5rem 0 1rem 0;
            position: relative;
            padding-left: 1rem;
        }

        .aboutus-page-terms-content h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            background: #fbbf24;
            border-radius: 2px;
        }

        .aboutus-page-terms-content h4 {
            color: #1e40af;
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1.5rem 0 0.8rem 0;
            margin-left: 1rem;
        }

        .aboutus-page-terms-content p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1rem;
        }

        .aboutus-page-terms-content ul, .aboutus-page-terms-content ol {
            margin: 1rem 0 1.5rem 2rem;
        }

        .aboutus-page-terms-content li {
            margin-bottom: 0.8rem;
            position: relative;
        }

        .aboutus-page-terms-content li::marker {
            color: #fbbf24;
        }

        .aboutus-page-terms-highlight {
            background: linear-gradient(120deg, rgba(251, 191, 36, 0.1) 0%, rgba(30, 64, 175, 0.05) 100%);
            padding: 0.1rem;
            border-radius: 12px;
            border-left: 4px solid #fbbf24;
            margin: 2rem 0;
        }

        .aboutus-page-terms-warning {
            background: linear-gradient(120deg, rgba(239, 68, 68, 0.1) 0%, rgba(254, 226, 226, 0.5) 100%);
            padding: 1.0rem;
            padding-bottom: 0.1rem;
            border-radius: 12px;
            border-left: 4px solid #ef4444;
            margin: 0.3rem 0;
        }

        .aboutus-page-terms-contact {
            background: rgba(30, 64, 175, 0.05);
            padding: 0rem 1rem 1rem 1rem;
            border-radius: 15px;
            margin-top: 2.5rem;
            border: 1px solid rgba(30, 64, 175, 0.1);
        }

        .aboutus-page-terms-contact h4 {
            color: #1e40af;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .aboutus-page-terms-contact p {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .aboutus-page-terms-date {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid rgba(251, 191, 36, 0.2);
            color: #6b7280;
            font-size: 0.9rem;
        }

        .aboutus-page-terms-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .aboutus-page-terms-table th {
            background: #1e40af;
            color: #ffffff;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        .aboutus-page-terms-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(251, 191, 36, 0.2);
        }

        .aboutus-page-terms-table tr:nth-child(even) {
            background: rgba(251, 191, 36, 0.05);
        }

        .aboutus-page-terms-highlight li::marker {
            color: #1E40AF;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .aboutus-page-terms-container {
                padding: 1rem;
                margin: 2rem auto;
            }
            
            .aboutus-page-terms-section {
                padding: 2rem;
            }
            
            .aboutus-page-terms-title {
                font-size: 2rem;
            }
            
            .aboutus-page-terms-content h3 {
                font-size: 1.2rem;
            }

            .aboutus-page-terms-table {
                font-size: 0.9rem;
            }

            .aboutus-page-terms-table th,
            .aboutus-page-terms-table td {
                padding: 0.8rem;
            }
        }

        /* Smooth animations */
        .aboutus-page-terms-section {
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }