/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #2c3e50;
            --secondary: #e74c3c;
            --accent: #3498db;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --gray: #95a5a6;
            --text: #333333;
            --text-light: #7f8c8d;
            --border: #e0e0e0;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --radius: 8px;
        }
        
        body {
            color: var(--text);
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        
        a {
            text-decoration: none;
            color: var(--accent);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--secondary);
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
        }
        
        .btn-outline:hover {
            background-color: var(--accent);
            color: white;
        }
        

        /* Hero Section */
        .blog-hero {
            
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .blog-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .blog-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .breadcrumb a {
            color: white;
            margin: 0 5px;
        }
        
        .breadcrumb span {
            margin: 0 5px;
        }
        
        /* Blog Content */
        .blog-container {
            display: flex;
            gap: 30px;
            padding: 50px 0;
        }
        
        .blog-content {
            flex: 2;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        
        .blog-meta {
            padding: 20px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .author-info {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-details h4 {
            margin-bottom: 5px;
        }
        
        .post-date {
            color: var(--text-light);
            font-size: 14px;
        }
        
        .reading-time {
            background-color: var(--light);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 14px;
        }
        
        .featured-image {
            width: 100%;
            height: 400px;
            overflow: hidden;
        }
        
        .featured-image img {
            width: 100%;
            height: 100%;
            /* object-fit: cover; */
        }
        
        .blog-article {
            padding: 30px;
        }
        
        .blog-article h2 {
            margin: 25px 0 15px;
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        .blog-article h3 {
            margin: 20px 0 10px;
            color: var(--primary);
            font-size: 1.4rem;
        }
        
        .blog-article p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .blog-article ul, .blog-article ol {
            margin: 15px 0 15px 30px;
        }
        
        .blog-article li {
            margin-bottom: 8px;
        }
        
        .highlight-box {
            background-color: var(--light);
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: 5px;
            font-size: 14px;
        }
        
        .table-container {
            overflow-x: auto;
            margin: 20px 0;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        
        th {
            background-color: var(--light);
            font-weight: 600;
        }
        
        tr:hover {
            background-color: #f5f5f5;
        }
        
        .tags {
            display: flex;
            flex-wrap: wrap;
            margin: 30px 0;
        }
        
        .tag {
            background-color: var(--light);
            padding: 5px 15px;
            border-radius: 20px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .share-buttons {
            display: flex;
            gap: 10px;
            margin: 30px 0;
        }
        
        .share-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            font-size: 18px;
        }
        
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .linkedin { background-color: #0077b5; }
        .pinterest { background-color: #bd081c; }
        
        /* Sidebar */
        .blog-sidebar {
            flex: 1;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            color: var(--primary);
        }
        
        .search-form {
            display: flex;
        }
        
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-right: none;
            border-radius: var(--radius) 0 0 var(--radius);
        }
        
        .search-form button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
        }
        
        .categories-list, .recent-posts {
            list-style: none;
        }
        
        .categories-list li, .recent-posts li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border);
        }
        
        .categories-list li:last-child, .recent-posts li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .categories-list a, .recent-posts a {
            display: flex;
            justify-content: space-between;
            color: var(--text);
        }
        
        .categories-list a:hover, .recent-posts a:hover {
            color: var(--accent);
        }
        
        .categories-list span {
            background-color: var(--light);
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
        }
        
        .recent-post {
            display: flex;
            align-items: center;
        }
        
        .recent-post img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: var(--radius);
            margin-right: 15px;
        }
        
        .recent-post-content h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            line-height: 1.3;
        }
        
        .recent-post-content span {
            font-size: 12px;
            color: var(--text-light);
        }
        
        .cta-widget {
            background: linear-gradient(to right, var(--primary), var(--accent));
            color: white;
            text-align: center;
            padding: 30px 20px;
        }
        
        .cta-widget h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .cta-widget p {
            margin-bottom: 20px;
        }
        
        /* Related Posts */
        .related-posts {
            padding: 50px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            color: var(--primary);
        }
        
        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .post-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        
        .post-card:hover {
            transform: translateY(-5px);
        }
        
        .post-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .post-card-content {
            padding: 20px;
        }
        
        .post-card h3 {
            margin-bottom: 10px;
            font-size: 1.2rem;
            line-height: 1.4;
        }
        
        .post-card p {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .post-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--text-light);
        }
        
        /* Newsletter */
        .newsletter {
            background: linear-gradient(to right, var(--primary), var(--dark));
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .newsletter h2 {
            margin-bottom: 15px;
        }
        
        .newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
        }
        
        .newsletter-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-weight: 600;
        }
      
        /* Responsive Styles */
        @media (max-width: 992px) {
            .blog-container {
                flex-direction: column;
            }
            
            .blog-sidebar {
                order: -1;
            }
            
            .sidebar-widgets {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            
            .contact-info {
                margin-bottom: 10px;
            }
            
           
            
            .blog-hero h1 {
                font-size: 2rem;
            }
            
            .sidebar-widgets {
                grid-template-columns: 1fr;
            }
            
            .posts-grid {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input, .newsletter-form button {
                width: 100%;
                padding: 10px;
                border-radius: var(--radius);
                margin-bottom: 10px;
            }
        }

                /* Blog Section Styles */
        .blog-section {
            padding: 0px 0;
            
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 10px;
        }
        
        .section-header h2 {
            font-size: 2rem;
            color: #1e293b;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, #3b82f6, #10b981);
            border-radius: 3px;
        }
        
        .section-header p {
            color: #64748b;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 10px auto 0;
        }
        
        .blog-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            padding: 10px 20px;
            background: #e2e8f0;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: #3b82f6;
            color: white;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            max-height: 700px;
            overflow-x: scroll;
        }
        
        .blog-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid #e2e8f0;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        }
        
        .blog-contents {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-contents h3 {
            font-size: 1.25rem;
            margin-bottom: 15px;
            color: #1e293b;
            line-height: 1.4;
        }
        
        .blog-contents p {
            color: #64748b;
            margin-bottom: 20px;
            font-size: 0.95rem;
            flex-grow: 1;
        }
        
        .read-more {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            background: #3b82f6;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: background 0.3s ease;
            margin-top: 15px;
            width: fit-content;
        }
        
        .read-more:hover {
            background: #2563eb;
        }
        
        .read-more i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(4px);
        }
        
        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 40px;
            color: #64748b;
            font-size: 1.1rem;
        }
        
        .no-results i {
            font-size: 3rem;
            color: #e2e8f0;
            margin-bottom: 15px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .blog-filter {
                gap: 8px;
            }
            
            .filter-btn {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .blog-card {
            animation: fadeIn 0.5s ease-out;
        }
        
        .category-tag {
            display: inline-block;
            padding: 4px 12px;
            background: #e0f2fe;
            color: #0369a1;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-top: 15px;
            font-weight: 500;
        }


                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
      

        @font-face {
            font-family: "fallback for poppins";
            src: local("Times New Roman");
            ascent-override: 105%;
            descent-override: 35%;
            line-gap-override: 10%;
        }
        body {
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: #03498f;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--secondary);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            /* padding: 0 15px; */
        }
        
        /* Header Styles */
        .top-bar {
            background-color: var(--primary);
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }
        
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .contact-info {
            display: flex;
            gap: 20px;
        }
        
        .contact-info a {
            color: white;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: white;
            font-size: 16px;
        }
        
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            width: auto;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        nav ul li a {
            font-weight: 600;
            color: var(--dark);
            padding: 5px 0;
            position: relative;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary);
            cursor: pointer;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 10px 25px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            background-color: #c0392b;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .discount-banner {
            background-color: #e74c3c;
            color: white;
            text-align: center;
            padding: 10px;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        /* Dropdown */
        nav ul li {
            position: relative;
        }

        nav ul li .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            list-style: none;
            padding: 10px 0;
            min-width: 200px;
            z-index: 200;
        }

        nav ul li .dropdown-menu li {
            width: 100%;
        }

        nav ul li .dropdown-menu li a {
            display: block;
            padding: 10px 15px;
            color: var(--dark);
            font-weight: 500;
            white-space: nowrap;
        }

        nav ul li .dropdown-menu li a:hover {
            background: var(--secondary);
            color: white;
        }

        /* Show dropdown on hover */
        nav ul li.dropdown:hover .dropdown-menu {
            display: block;
        }
        #mainMenu .menu-header {
            display: none;
        }
        /* Responsive Styles */
        @media (max-width: 992px) {
        #mainMenu {
            position: fixed;
            top: 0;
            left: -100%; /* hidden */
            width: 70%;
            height: 50%;
            background: white;
            flex-direction: column;
            align-items: flex-start;
            padding: 20px;
            gap: 20px;
            transition: left 0.3s ease;
            box-shadow: 2px 0 8px rgba(0,0,0,0.2);
            z-index: 999;
        }

        #mainMenu.active {
            left: 0;
        }

        /* Header row inside menu */
        #mainMenu .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            font-weight: 700;
            font-size: 18px;
            color: var(--primary);
        }

        #closeMenuBtn {
            background: none;
            border: none;
            font-size: 22px;
            cursor: pointer;
            color: var(--primary);
        }

        }
        
                
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }
        
        .footer-col p {
            margin-bottom: 15px;
            color: #bdc3c7;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-contact-info {
            list-style: none;
        }
        
        .footer-contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #bdc3c7;
        }
        
        .footer-contact-info i {
            margin-top: 3px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bdc3c7;
            font-size: 14px;
        }
        
        .footer-contact-info a {
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
        }
        .footer-bottom a {
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
            
            .section {
                padding: 20px 0;
            }
            .footer-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                gap: 10px;
            }
            
            .header-container {
                padding: 0px 10px;
                flex-direction: row;
                gap: 20px;
            }
            
            nav ul {
                flex-direction: column;
                gap: 15px;
                text-align: center;
                display: none;
            }
            
            nav ul.show {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 80px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .quick-enquiry {
                margin-top: 0;
                padding: 20px;
            }
            
            .pricing-table {
                display: block;
                overflow-x: auto;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 60px 0!important;;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .quick-enquiry {
                padding: 15px;
            }
            
            .enquiry-form {
                grid-template-columns: 1fr;
            }
        }

                /* Interlinking Section */
            .interlinking {
                text-align: center;
                padding: 20px;
                background: #f9f9f9;
                max-height: 300px;
                overflow-y: scroll;
            }

            .interlinking h2 {
                font-size: 20px;
                margin-bottom: 15px;
                color: #333;
            }

            .interlinking .links {
                display: flex;
                flex-wrap: wrap; /* makes them go below */
                justify-content: center;
                gap: 10px; /* spacing between links */
            }

            .interlinking .links a {
                text-decoration: none;
                padding: 8px 15px;
                border: 1px solid #ddd;
                border-radius: 6px;
                color: #333;
                font-size: 14px;
                transition: all 0.3s ease;
            }

            .interlinking .links a:hover {
                background: #ff4c1d;
                color: #fff;
                border-color: #ff4c1d;
            }
            .cta {
                position: fixed;
                right: 0;
                height: 6%;
                display: flex;
                align-items: center;
                justify-content: center;
                writing-mode: vertical-rl;
                background-color: #0B4EBC;
                color: #fff;
                padding: 10px;
                border-radius: 8px 0 0 8px;
                font-weight: 700;
                z-index: 1000;
                box-shadow: 0 0 10px rgb(0 0 0 / 0.3);
            }
            .cta-call { top: 50%; }
            .cta-whatsapp { top: 58%; }

            .cta a {
                text-decoration: none;
                color: #fff;
                display: flex;
                flex-direction: column;
                align-items: center;
                font-size: 1.2rem;
            }
            .cta-icon {
                width: 24px;
                height: 24px;
                fill: #fff;
            }

                    .content-wrapper {
            display: flex;
            flex-wrap: wrap;
        }