         
body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-color);
            /*background-color: var(--light-color);*/
            line-height: 1.6;
            /*padding: 10px;*/
        }
/* Body Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
}

p {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-align: justify;
    font-size: 16px;
    letter-spacing: .5px;
    color: #575757;
    font-display: swap;
}

h1{text-align: center;
   font-size: 22px;
   padding: 15px;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
h2, h3, h4, h5{
    margin: 10px auto;
    font-size: 20px;
    color: grey;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/*starting of new header*/
header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 3%;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(1px);
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    border-radius: 0 0 8px 8px;
    font-family: monospace;
    text-transform: capitalize;
}

header .logo {
    text-decoration: none;
    font-weight: bolder;
    font-size: 24px;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #3cf;
}

/* Navbar styles */
.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a,
.navbar ul li .dropdown-label {
    font-size: 15px;
    font-weight: bolder;
    padding: 20px 15px;
    color: #333;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar ul li a:hover,
.navbar ul li .dropdown-label:hover {
    background: rgba(255,255,255,0.7);
    color: #34495E;
}

/* Dropdown styles */
.navbar ul li ul {
    position: absolute;
    left: 0;
    width: 200px;
    background: rgba(255,255,255,0.95);
    display: none;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    border-top: 2px solid #d2e016;
    border-radius: 0 0 8px 8px;
    z-index: 100;
}

.navbar ul li ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.navbar ul li ul li:last-child {
    border-bottom: none;
}

.navbar ul li ul li a {
    padding: 12px 15px;
    font-size: 14px;
    color: #000000 !important;
}

.navbar ul li ul li a:hover {
    color: #000000 !important;
    background: rgba(255,255,255,0.9);
}

/* Dropdown toggle functionality */
.dropdown-toggle {
    display: none;
}

.dropdown-label {
    position: relative;
}

/* Show dropdown on hover (desktop) */
.navbar ul li:hover > ul {
    display: block;
}

/* Show dropdown when checkbox is checked */
.dropdown-toggle:checked ~ ul {
    display: block !important;
}

/* Color styles for different menu items */
.navbar ul li:nth-child(1) a { color: #ffb3b3; }
.navbar ul li:nth-child(2) .dropdown-label { color: #89C35C; }
.navbar ul li:nth-child(3) .dropdown-label { color: #F87431; }
.navbar ul li:nth-child(4) .dropdown-label { color: #40E0D0; }
.navbar ul li:nth-child(5) a { color: #FAA18F; }
.navbar ul li:nth-child(6) a { color: #FF00FF; }
.navbar ul li:nth-child(7) a { color: #66CDAA; }
.navbar ul li:nth-child(8) a { color: #F87431; }
.navbar ul li:nth-child(9) a { color: #34495E; }

/* Burger menu styles */
#menu-bar {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #3cf;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 991px) {
    header {
        padding: 10px 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.95);
        border-top: 1px solid rgba(0,0,0,.1);
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,.1);
        width: 100%;
        max-width: 100%;
    }

    .navbar ul {
        flex-direction: column;
        width: 100%;
    }

    .navbar ul li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .navbar ul li:last-child {
        border-bottom: none;
    }

    .navbar ul li a,
    .navbar ul li .dropdown-label {
        padding: 15px 20px;
        font-size: 16px;
        width: 100%;
    }

    .navbar ul li ul {
        position: relative;
        width: 100%;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid #d2e016;
    }

    .navbar ul li ul li {
        background: #f9f9f9;
    }

    .navbar ul li ul li a {
        padding-left: 40px;
        color: #000000 !important;
    }

    .navbar ul li ul li a:hover {
        color: #000000 !important;
    }

    .navbar ul li ul li ul {
        width: 100%;
        left: 0;
    }

    .navbar ul li ul li ul li a {
        padding-left: 60px;
    }

    /* Hide hover behavior on mobile */
    .navbar ul li:hover > ul {
        display: none;
    }

    /* Show only when checkbox is checked on mobile */
    .dropdown-toggle:checked ~ ul {
        display: block !important;
    }

    #menu-bar:checked ~ .navbar {
        display: block;
    }

    #menu-bar:checked ~ .menu-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    #menu-bar:checked ~ .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    #menu-bar:checked ~ .menu-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}


/*ending of new header*/

 /* Optimized CSS */
        :root {
            --primary-color: #d4af37;
            --secondary-color: #333;
            --light-color: #f9f9f9;
            --dark-color: #222;
            --text-color: #333;
            --text-light: #999;
            --white: #fff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --sale-color: #e63946;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
     
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1605100804763-247f67b3557e?ixlib=rb-4.0.3') center/cover;
            height: 400px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            margin-bottom: 40px;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 30px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }
        
        .btn {
            background: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        
        .btn:hover {
            background: #b8942b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Product Grid */
        .section-title {
            text-align: center;
            margin: 40px 0 30px;
            font-size: 2.2rem;
            color: var(--secondary-color);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--primary-color);
            margin: 10px auto 0;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin: 20px 0;
        }
        
        .product-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .sale-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--sale-color);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }
        
        /* Optimized Carousel */
        .product-carousel {
            height: 360px; /* Slightly increased height */
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .carousel-container {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
        }
        
        .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-slide iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .carousel-nav {
            position: absolute;
            bottom: 15px;
            left: 0;
            right: 0;
            text-align: center;
            z-index: 2;
        }
        
        .carousel-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .carousel-dot.active {
            background-color: var(--white);
            transform: scale(1.2);
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(0,0,0,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            font-weight: bold;
            font-size: 18px;
            z-index: 3;
            transition: background 0.3s;
        }
        
        .carousel-btn:hover {
            background: rgba(0,0,0,0.6);
        }
        
        .prev-btn {
            left: 15px;
        }
        
        .next-btn {
            right: 15px;
        }
        
        .product-info {
            padding: 5px;
        }
        
        .product-title {
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        
        .current-price {
            font-weight: 700;
            color: var(--sale-color);
            font-size: 18px;
        }
        
        .original-price {
            text-decoration: line-through;
            color: var(--text-light);
            font-size: 14px;
        }
        
        .product-details {
            font-size: 14px;
            color: var(--text-color);
            margin-top: 8px;
            line-height: 1.5;
        }
        
        .product-details div {
            margin-bottom: 6px;
        }
        
        /* Load More Button */
        .load-more-container {
            text-align: center;
            margin: 40px 0;
        }
        
        .load-more {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 35px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .load-more:hover {
            background: #b8942b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .load-more .spinner {
            display: none;
            width: 18px;
            height: 18px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top: 2px solid white;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .loading .spinner {
            display: inline-block;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 900px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 600px) {
            .product-grid {
                grid-template-columns: 1fr;
            }
            
            /* Reduced height by 10% for mobile screens */
            .product-carousel {
                height: 324px; /* Original 360px reduced by 10% */
            }
            
            .hero {
                height: 300px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
        }






/*--------ending of css of FAQ -------------*/
/*starting of footer*/
/* Footer Styles */
.footer {
    background: #0d1b2a;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(27, 188, 155, 0.2);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Urbanist', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Urbanist', sans-serif;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    font-family: 'Urbanist', sans-serif;
}

.footer-col {
    flex: 1;
    min-width: 300px;
    font-family: 'Urbanist', sans-serif;
}

.footer-section {
    padding: 0 15px;
    font-family: 'Urbanist', sans-serif;
}

/* Common style for footer headings */
.footer-col h5,
.footer-col h6 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
}

/* Solid underline */
.footer-col h5::after,
.footer-col h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    background: #1bbc9b;
    height: 3px;
    width: 40px;
    border-radius: 3px;
}

.footer-col,
.footer-section {
    text-align: left !important;
    font-family: 'Urbanist', sans-serif;
}

/* Footer contact info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Urbanist', sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Urbanist', sans-serif;
}

.contact-icon {
    color: #1bbc9b;
    font-size: 1.1rem;
    min-width: 22px;
    padding-top: 3px;
    font-family: 'Urbanist', sans-serif;
}

/* Rotated phone icon */
.phone-icon-rotated {
    transform: rotate(180deg);
    display: inline-block;
}

.contact-text {
    font-size: 1.075rem;
    color: #d1d1d1;
    line-height: 1.5;
    font-family: 'Urbanist', sans-serif;
}

/* Social section */
.social-section {
    display: flex;
    flex-direction: column;
    font-family: 'Urbanist', sans-serif;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    font-family: 'Urbanist', sans-serif;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-family: 'Urbanist', sans-serif;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    font-family: 'Urbanist', sans-serif;
}

.social-item:hover .social-icon {
    background: rgba(27, 188, 155, 0.25);
    transform: translateY(-3px);
}

.social-label {
    font-size: 0.65rem;
    color: #bbbbbb;
    margin-top: 5px;
    transition: color 0.3s;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
}

.social-item:hover .social-label {
    color: #ffffff;
}

.copyright {
    /*text-align: center;*/
    padding-top: 10px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
    font-family: 'Urbanist', sans-serif;
}

/* Responsive styles */
@media (max-width: 992px) {
    .footer-row {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-col {
        min-width: 100%;
    }
    
    .social-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 576px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .social-label {
        font-size: 0.6rem;
    }
}
/*end of footer*/


<!-- more css -->
#product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 items per row */
    gap: 20px;
}

<!-- css of description below products -->

.plot-details-card {
  margin: 10px 0;
  border: 1px solid #666;
  border-radius: 10px;
  overflow: hidden;
  font-size: 13px;
  background: #fff;
}

.plot-details-card table {
  width: 100%;
  border-collapse: collapse;
}

.plot-details-card td {
  border: 1px solid #666;
  padding: 3px 8px;
  vertical-align: top;
}

.plot-details-card a {
  color: #0073e6;
  text-decoration: none;
  font-weight: bold;
}

.plot-details-card a:hover {
  text-decoration: underline;
}

.plot-details-card .plot-description {
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px;
  text-align: justify;
}

.plot-details-card .plot-description a{
color:#FF2C2C;
}
/* Remove bottom border for description row so it merges smoothly */
.plot-details-card td.plot-description {
  border-bottom: none;
  border-left: none;
  border-right: none;
  padding: 10px;
}

/*footer*/

/* ======== Footer Section Update ======== */
.footer {
    background: linear-gradient(135deg, #0d1b2a, #1a2a3a);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(27, 188, 155, 0.2);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 300px;
}

.footer-section {
    padding: 0 15px;
}

.footer-col h6 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: left; 
}

/* Gradient underline */
.footer-col h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    background: linear-gradient(90deg, #1bbc9b, #2ecc71);
    height: 3px;
    width: 40px;
    border-radius: 3px;
}
.footer-col,
.footer-section {
    text-align: left !important;
}


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    color: #1bbc9b;
    font-size: 1.1rem;
    min-width: 22px;
    padding-top: 3px;
}

.contact-text {
    font-size: 1.075rem; /* Increased by 2px */
    color: #d1d1d1;
    line-height: 1.5;
}

.social-section {
    display: flex;
    flex-direction: column;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.social-icon {
    width: 44px; /* Increased by 15% */
    height: 44px; /* Increased by 15% */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.social-icon img {
    width: 35px; /* Increased by 15% */
    height: 35px; /* Increased by 15% */
}

.social-item:hover .social-icon {
    background: rgba(27, 188, 155, 0.25);
    transform: translateY(-3px);
}

.social-label {
    font-size: 0.65rem;
    color: #bbbbbb;
    margin-top: 5px;
    transition: color 0.3s;
    text-align: center;
}

.social-item:hover .social-label {
    color: #ffffff;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.85rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    .footer-row {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-col {
        min-width: 100%;
    }
    
    .social-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 576px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .social-label {
        font-size: 0.6rem;
    }
}
/*end of footer*/

/* WhatsApp Icon Styles */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000; /* Ensure it stays above other elements */
  transition: transform 0.3s ease;
}

.whatsapp-icon img {
  width: 100%;
  height: 100%;
}

.whatsapp-icon:hover {
  transform: scale(1.1); /* Enlarge the icon slightly on hover */
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-icon {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .whatsapp-icon {
    width: 45px;
    height: 45px;
    bottom: 10px;
    right: 10px;
  }
}

/*EEAT*/


/*E.E.A.T*/
:root {
  --eeat-accent-color: green; /* You can change this to your brand color if needed */
}

.eeat-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  width: 100%;
  margin: 10px auto;
  background-color: #f9f9f9;
  background: linear-gradient(119deg, rgba(255, 255, 255, 1) 0%, rgba(249, 249, 249, 1) 100%);
  padding: 10px 15px;
  border-radius: 8px;
}

.eeat-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.eeat-author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.eeat-author-info .eeat-author-role {
  color: var(--eeat-accent-color);
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
}

.eeat-author-info .eeat-author-name {
  font-size: 16px;
  margin: 4px 0;
  font-weight: 600;
  text-align: left;
  color: var(--eeat-accent-color); /* Matches Author Role */
}

.eeat-author-info .eeat-date {
  color: #777;
  font-size: 14px;
}

.eeat-author-info .eeat-linkedin {
  display: inline-block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--eeat-accent-color);
  text-decoration: none;
}

.eeat-author-info .eeat-linkedin:hover {
  text-decoration: underline;
}

@media (max-width: 320px) {
  .eeat-author {
    flex-direction: column;
    align-items: flex-start;
  }

  .eeat-author-img {
    margin-bottom: 10px;
  }
}
