*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}
.ecomm-hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Reduced height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.ecomm-hero-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.ecomm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.ecomm-hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    border-radius: 10px;
    animation: fadeInUp 2s ease-out;
}

.ecomm-hero-title {
    font-size: 3rem;
    margin: 0;
    animation: fadeInUp 2s ease-out;
}

.hero-content-ecomm {
    font-size: 1.2rem;
    margin: 10px 0 0;
    animation: fadeInUp 2s ease-out;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .ecomm-hero-section{
        height: 50vh;
    }
    .ecomm-hero-title {
        font-size: 2.5rem;
    }

    .hero-content-ecomm {
        font-size: 1rem;
    }

    hr {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .ecomm-hero-section{
        height: 30vh;
    }
    .ecomm-hero-title {
        font-size: 2rem;
    }

    .hero-content-ecomm {
        font-size: 0.9rem;
    }

    hr {
        max-width: 300px;
    }
}
/* Overview section  */
.ecomm-solutions-section {
    padding:  20px;
    background-color: #f9f9f9;
  }

  .ecomm-solutions-content-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
  }

  .ecomm-solutions-image-container {
    flex: 0 0 40%;
    max-width: 35%;
    padding: 10px;
    animation: slideInLeft 1.5s ease-in-out;
  }

  .ecomm-solutions-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .ecomm-solutions-text-container {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: slideInRight 1.5s ease-in-out;
  }

  .ecomm-solutions-paragraph {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .ecomm-solutions-paragraph:first-letter {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5bb949;
  }

  .ecomm-solutions-text-row {
    text-align: center;
    /* margin-top: 20px; */
    animation: fadeIn 1.5s ease-in-out;
  }

  .ecomm-solutions-cta-text {
    font-size: 2rem;
    font-weight: 500;
    color: #084c7f;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    background: #e5f3ff;
    padding: 5px 20px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 768px) {
    .ecomm-solutions-image-container,
    .ecomm-solutions-text-container {
      flex: 0 0 100%;
      max-width: 100%;
    }

    .ecomm-solutions-paragraph {
      font-size: 1rem;
    }

    .ecomm-solutions-cta-text {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 480px) {
    .ecomm-solutions-paragraph {
      font-size: 0.9rem;
    }

    .ecomm-solutions-cta-text {
      font-size: 1.2rem;
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes slideInLeft {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
/* why choose us  */

.ecomm-whychooseus-section {
    padding: 10px 0;
    background-color: #f4f4f4;
}

.ecomm-whychooseus-intro-text {
    font-size: 1.2rem; /* Increased size for better visibility on larger screens */
    line-height: 1.3;
    /* margin-left: 100px; */
    color: #2c3e50;
    /* margin-right: 100px; */
    margin-bottom: 30px; /* Adds space below the introductory text */
    font-weight: bold;
    text-align: center; /* Center align for better presentation */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.ecomm-whychooseus-intro-text1 {
    font-size: 1.2rem; /* Increased size for better visibility on larger screens */
    line-height: 1.4;
    color: #1078bf;
    font-style: italic;
    margin-bottom: 30px; /* Adds space below the introductory text */
    text-align: center; /* Center align for better presentation */
}

.ecomm-whychooseus-features-main {
    margin: 0 auto; /* Center the main features section */
    width: 85%; /* Set a maximum width for larger screens */
}

.ecomm-whychooseus-features {
    display: grid; /* Grid layout for cards */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 30px; /* Space between cards */
    margin-bottom: 40px; /* Space below the feature section */
}

.ecomm-whychooseus-card {
    border: 1px solid black; /* Light border around cards */
    border-radius: 8px; /* Rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth shadow and transform transition */
    background-color: #ffffff; /* White background for cards */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    height: 100%; /* Ensures all cards are the same height */
    padding: 20px; /* Padding inside cards */
}

.ecomm-whychooseus-card:hover {
    transform: translateY(-5px); /* Lift effect */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.ecomm-whychooseus-feature-title {
    font-size: 1.5rem; /* Title size */
    color: #333; /* Custom color */
    margin-bottom: 15px; /* Space below the title */
    font-weight: bold; /* Bold title */
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.ecomm-whychooseus-feature-text {
    font-size: 1.1rem; /* Text size */
    line-height: 1.6; /* Line height for better readability */
    color: #495057; /* Darker text color for better readability */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Icon styling */
.ecomm-whychooseus-feature-title i {
    margin-right: 10px; /* Space between icon and title */
    color: #007bff; /* Icon color to match title */
    font-size: 1.5rem; /* Increased icon size */
}

/* Responsive design */
@media (max-width: 768px) {
    .ecomm-whychooseus-feature {
        width: 100%; /* Full width on smaller screens */
    }

    .ecomm-whychooseus-card {
        margin: 10px 0; /* Adjust margin for better spacing */
        padding: 15px; /* Adjust padding for smaller screens */
    }

    .ecomm-whychooseus-feature-title {
        font-size: 1.3rem; /* Smaller title size on mobile */
    }

    .ecomm-whychooseus-feature-text {
        font-size: 1rem; /* Smaller text size on mobile */
    }

    .ecomm-whychooseus-intro-text,
    .ecomm-whychooseus-intro-text1 {
        font-size: 1rem; /* Smaller intro text on mobile */
    }
}


/* ecomm development solutions  ************************/

.ecomm-dev-solutions {
    /* border: 2px solid; */
    padding: 60px 20px; /* Added padding to accommodate mobile view */
    background-color: #f9f9f9;
}
.container-fluid{
    /* border: 2px solid; */
    display: flex;
    justify-content: center;
    justify-content: space-evenly;
}

.ecomm-dev-solutions-title {
    
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #2c3e50;
}

.ecomm-dev-solution-card {
    background-color: #e5f3ff;;
    border: 1px solid rgb(49, 48, 48);
    border-radius: 5px;
    padding: 30px; /* Increased padding for better readability *//* Center the card */
    /* max-width: 600px;  */
    width: 48%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.ecomm-dev-solution-card h3 {
    font-size: 1.8rem; /* Slightly larger font size for headings */
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #1078bf;
    margin-bottom: 15px; /* Added margin for spacing */
}

.ecomm-dev-solution-card h4 {
    font-size: 1.3rem; /* Font size for subheadings */
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #2c3e50;
    margin-top: 20px; /* Spacing above subheadings */
}

.ecomm-dev-solution-card p {
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #555;
    margin-bottom: 15px; /* Spacing between paragraphs */
}

.ecomm-dev-solutions-cta {
    margin-top: 30px;
    text-align: center; /* Center the CTA text */
}

.ecomm-dev-solutions-cta h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: bold;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .ecomm-dev-solutions-title {
        font-size: 1.5rem; /* Smaller title size on mobile */
    }

    .ecomm-dev-solution-card {
        padding: 20px; /* Adjust padding for mobile */
        width: 90%; /* Use more width on mobile for better spacing */
    }
    .ecomm-dev-solutions-cta h4 {
        font-size: 1rem;
        
    }
}


/* General Section Styling */
#homepage-ecommerce-section.ecommerce-development-solutions-subsection {
    margin-top: 0;
    background-color: #f9f9f9;
    /* padding: 50px 0; */
    font-family: 'Arial', sans-serif;
    /* border: 1px solid red; */
    width: 48%;
    height: 100%;
  }
  
  .ecommerce-development-solutions-subsection .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* border: 1px solid red; */
  }
  
  /* Cards Container */
  
  
  /* Card Styling */
  .ecommerce-development-solutions-subsection .ecommerce-card {
    border: 1px solid rgb(41, 41, 41);

    margin: 4% 0;
    background-color: #e5f3ff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    /* max-width: 500px; */
    flex: 1 1 calc(50% - 40px);
    box-sizing: border-box;
    text-align: center; /* Centering content */
    
  }
  
  /* Centered Title Styling */
  .ecommerce-development-solutions-subsection .card-title {
    font-size: 1.8rem;
    /* color: #2c3e50; */
    color: #1078bf;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-bottom: 15px;
  }
  
  /* Description below the title */
  .ecommerce-development-solutions-subsection .card-description {
    font-size: 1.05rem;
    color: #555;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1.6;
    text-align: left; /* Ensures text is left-aligned for readability */
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .ecommerce-development-solutions-subsection .cards-container {
      flex-direction: column;
      max-width: 130%;
    }
  
    .ecommerce-development-solutions-subsection .ecommerce-card {
      max-width: 100%;
    }

    .ecomm-Boosting-image{
        display: none;
    }
  }
  
/* ******************************************** Why us *******************************************8 */

/* General Section Styling */
.ecommpage-why-us {
    /* background-color: rgb(177, 36, 36); Light gray background */
    padding: 60px 0;
    font-family: 'Arial', sans-serif;
  }
  
  .ecommpage-why-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  
  /* Section Title */
  .ecommpage-why-us .section-title {
    font-size: 2.5rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  /* Section Description */
  .ecommpage-why-us .section-description {
    font-size: 1.3rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.3;
  }
  
  /* Content Layout */
  .ecommpage-why-us .whychooseus-content {
    display: flex;
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Space between text and image */
    gap: 20px;
  }
  
  /* Text Styling */
  .ecommpage-why-us .whychooseus-text {
    flex: 1; /* Allow text to take available space */
    text-align: left; /* Align text to the left */
  }
  
  /* Reason Item */
  .ecommpage-why-us .reason-item {
    display: flex; /* Use flexbox for icon and text alignment */
    margin-bottom: 20px; /* Space between reasons */
  }
  
  /* Reason Icon Styling */
  .ecommpage-why-us .reason-icon {
    font-size: 40px;
    /* color: #2c3e50; */
    color: #084c7f;
    margin-right: 15px; /* Space between icon and text */
  }
  
  /* Reason Title */
  .ecommpage-why-us .reason-title {
    font-size: 1.5rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #2c3e50;
    margin-bottom: 10px;
  }
  
  /* Reason Description */
  .ecommpage-why-us .reason-description {
    font-size: 1.1rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #555;
    line-height: 1.6;
  }
  
  /* Image Styling */
  .ecommpage-why-us .whychooseus-image {
    flex: 1; /* Allow image to take available space */
    display: flex;
    justify-content: center; /* Center image horizontally */
  }
  
  .ecommpage-why-us .whychooseus-image img {
    max-width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    /* border: #007bff; */
  }
  
  /* Consultation CTA */
  .ecommpage-why-us .consultation-cta {
    margin-top: 40px;
  }
  
  .ecommpage-why-us .cta-text {
    font-size: 20px;
    color: #2c3e50;
    font-weight: bold;
  }
  
  /* Fade-in Animation */
  .fade-in {
    opacity: 0; /* Start invisible */
    transform: translateY(20px); /* Start lower */
    animation: fadeIn 0.6s forwards; /* Animation definition */
  }
  
  /* Keyframes for fade-in animation */
  @keyframes fadeIn {
    to {
      opacity: 1; /* Fully visible */
      transform: translateY(0); /* Return to original position */
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .ecommpage-why-us .whychooseus-content {
      flex-direction: column; /* Stack text and image vertically on small screens */
      text-align: center; /* Center text on small screens */
    }
  
    .ecommpage-why-us .whychooseus-image {
      margin-top: 20px; /* Add space between text and image */
    }
  }

  /* Responsive Design */
@media (max-width: 768px) {
    .ecommpage-why-us .whychooseus-content {
      flex-direction: column; /* Stack text and image vertically on small screens */
      text-align: center; /* Center text on small screens */
    }
  
    .ecommpage-why-us .whychooseus-image {
      margin-top: 20px; /* Add space between text and image */
    }
  
    .ecommpage-why-us .reason-title {
      font-size: 18px; /* Slightly smaller font size for titles on mobile */
    }
  
    .ecommpage-why-us .reason-description {
      font-size: 14px; /* Slightly smaller font size for descriptions on mobile */
    }
  
    .ecommpage-why-us .cta-text {
      font-size: 15px; /* Smaller font size for CTA on mobile */
    }
  
    .ecommpage-why-us .section-title {
      font-size: 28px; /* Smaller title font size for mobile */
    }
  
    .ecommpage-why-us .section-description {
      font-size: 16px; /* Smaller description font size for mobile */
    }
  
    .ecommpage-why-us .reason-icon {
      font-size: 25px; /* Smaller icon size for mobile */
    }
  }



  /* Technologies we use  */
  

  .ecomm-technologies-weuse {
    background: #084c7f;
    /* background: linear-gradient(120deg, #2c3e50, #e5f3ff,#f8f8fa, #2c3e50, #e5f3ff, #2c3e50, #e5f3ff); Light green to light blue gradient */
    padding: 40px; /* Increased padding for more height */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center; /* Center text in the section */
    min-height: 400px; /* Minimum height for the section */
}

.ecomm-technologies-weuse h2 {
    font-size: 2.5rem; /* Main heading size */
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #fff; 
    margin-bottom: 15px; /* Space below the heading */
}

.ecomm-technologies-weuse p {
    font-size: 1.1em; /* Paragraph size */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #fff;
    line-height: 1.6; /* Spacing between lines */
    margin-bottom: 20px; /* Space below the paragraph */
}

.technologies-container {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space out cards */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.technologies-card {
    background-color: white; /* Card background */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for cards */
    padding: 15px; /* Padding inside cards */
    margin: 10px; /* Margin between cards */
    flex: 1 1 calc(20% - 20px); /* Responsive width for cards */
    min-width: 250px; /* Minimum width for cards */
    text-align: center; /* Center text in cards */
}

.technologies-card h3 {
    font-size: 1.4em; /* Subheading size */
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #007BFF; /* Blue color for subheadings */
    margin-bottom: 10px; /* Space below subheading */
    display: flex; /* Use flexbox for heading */
    justify-content: space-between; /* Space between text and icon */
    align-items: center; /* Center items vertically */
}

.technologies-card h3 .bi {
    font-size: 2.5em; /* Increase icon size */
    margin-left: 10px; /* Space between text and icon */
}

.technologies-card ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
}

.technologies-card li {
    font-size: 1em; /* List item size */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #444; /* Darker text for list items */
    margin-bottom: 5px; /* Space below list items */
}

.ecomm-technologies-weuse a {
    color: #007BFF; /* Blue color for links */
    text-decoration: none; /* Remove underline from links */
}

.ecomm-technologies-weuse a:hover {
    text-decoration: underline; /* Underline links on hover */
}

.ecomm-contactus{
    margin-top: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.ecomm-contactus a{
    color: #5bb949;
}
.technologies-card i{
    color: #084c7f;
}

/* ************************** Boosting ****************************8 */


.ecomm-Boosting-section {
    background-color: #f9f9f9; /* Light background color */
    padding: 40px; /* Padding around the section */
}

.ecomm-Boosting-content {
    font-size: 2.5rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Space between image and text */
    max-width: 1400px; 
    margin: 0 auto; /* Center content */
    /* width: 100%; */
}

.ecomm-Boosting-image img {
    max-width: 100%; /* Responsive image */
    height: 370px; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners */
}

.ecomm-Boosting-text {
    font-size: 1.1rem;
    line-height: 1.1;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    flex: 1; /* Allow text section to grow */
    padding-left: 20px; /* Space between image and text */
}

.ecomm-Boosting-text h2 {
    font-size: 2.5rem; /* Heading size */
    color: #333; /* Dark text color */
    margin-bottom: 15px; /* Space below heading */
}

.ecomm-Boosting-text p {
    font-size: 1.1em; /* Paragraph size */
    color: #555; /* Medium text color */
    line-height: 1.6; /* Spacing between lines */
    margin-bottom: 15px; /* Space below paragraphs */
}

.ecomm-Boosting-text ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
}

.ecomm-Boosting-text li {
    font-size: 1em; /* List item size */
    color: #444; /* Darker text for list items */
    margin-bottom: 5px; /* Space below list items */
}



/* **************************************** Our Partners Section css ********************************** */


/* Partners Section */
.homepage-partners {
    padding: 60px 20px;
    background-color: #f0f8ff;
    text-align: center;
}

/* Title Styling */
.homepage-partners-title {
    font-size: 2.5rem;
    color: #333;
    font-family: 'Cambria', Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Description Styling */
.homepage-partners-description {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1.6;
}

/* Partners Row Styling */
.homepage-partners-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;  /* Allows wrapping for smaller screens */
    align-items: center;
    gap: 20px; /* Add space between logos */
    max-width: 1200px; /* Limit the row width */
    margin: 0 auto; /* Center the row */
}

/* Partner Logo Styling */
.partner-logo {
    width: 120px; /* Fixed width */
    height: 100px; /* Increased height */
    object-fit: contain; /* Maintain aspect ratio */
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .homepage-partners-row {
        justify-content: space-around; /* Space logos evenly for smaller screens */
    }
}

@media (max-width: 768px) {
    .partner-logo {
        width: 100px; /* Smaller fixed width for mobile */
        height: 80px; /* Smaller fixed height for mobile */
    }

    .homepage-partners-row {
        flex-wrap: wrap; /* Make sure the logos wrap for smaller screens */
    }
}


/* Free Consultation Section Styles */
.free-consultation-section {
    background-color: #37ff00;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.consultation-title {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.consultation-text {
    font-size: 1.3rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.3;
    margin: 0 auto;
    color: #555;
}

.consultation-button {
    background-color: #fff;
    color: #00ffa6;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.consultation-button:hover {
    background-color: #0056b3;
    color: #fff;
}