 /* CSS Variables */
 :root {
     --primary-color: #007BFF;
     --secondary-color: #28A745;
     --accent-color: #FFC107;
     --text-primary: #212529;
     --text-secondary: #6C757D;
     --background-light: #F8F9FA;
     --background-white: #FFFFFF;
     --border-color: #E9ECEF;
     --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.15);
     --border-radius: 8px;
     --transition: all 0.3s ease;
 }

 /* Reset and Base Styles */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     line-height: 1.6;
     color: var(--text-primary);
     background-color: var(--background-white);
 }

 .container {
     max-width: 95%;
     margin: 0 auto;
     padding: 0 10px;
 }

 /* Typography */
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-weight: 600;
     margin-bottom: 1rem;
     line-height: 1.2;
 }

 h1 {
     font-size: 42px;
     color: var(--text-primary);
 }

 h2 {
     font-size: 32px;
     color: var(--text-primary);
 }

 h3 {
     font-size: 1.5rem;
     color: var(--text-primary);
 }

 p {
     margin-bottom: 1rem;
     color: var(--text-secondary);
 }

 /* Buttons */
 .cta-btn {
     display: inline-block;
     padding: 12px 24px;
     text-decoration: none;
     border-radius: 40px;
     font-weight: 500;
     transition: var(--transition);
     border: none;
     cursor: pointer;
     font-size: 1rem;
     width: 30%;
     text-align: center;
 }

 .cta-btn.primary {
     background-color: var(--primary-color);
     color: white;
     width: max-content;
 }

 .cta-btn.primary:hover {
     background-color: #0056b3;
     transform: translateY(-2px);
 }

 .cta-btn.secondary {
     background-color: transparent;
     color: var(--primary-color);
     border: 2px solid var(--primary-color);
 }

 .cta-btn.secondary:hover {
     background-color: var(--primary-color);
     color: white;
 }

 .cta-btn.large {
     padding: 16px 32px;
     font-size: 1.1rem;
 }

 .login-btn {
     color: var(--text-primary);
     text-decoration: none;
     padding: 8px 16px;
     transition: var(--transition);
 }

 .login-btn:hover {
     color: var(--primary-color);
 }

 /* Header */
 .header {
     background-color: var(--background-white);
     box-shadow: var(--shadow);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .nav-wrapper {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 0;
 }

 .logo img {
     height: 40px;
 }

 .nav-links {
     display: flex;
     list-style: none;
     gap: 2rem;
     margin: 0;
 }

 .nav-links a {
     color: var(--text-primary);
     text-decoration: none;
     transition: var(--transition);
     font-weight: 500;
 }

 .nav-links a:hover {
     color: var(--primary-color);
 }

 .header-actions {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     background: none;
     border: none;
     cursor: pointer;
     padding: 5px;
 }

 .mobile-menu-toggle span {
     width: 25px;
     height: 3px;
     background-color: var(--text-primary);
     margin: 3px 0;
     transition: var(--transition);
 }

 /* Hero Section */
 .hero {
     padding: 10px 0;
     background: #EEF4FA
 }

 .hero-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     align-items: center;
 }

 .hero-text h1 {
     font-size: 42px;
     margin-bottom: 1.5rem;
     color: var(--text-primary);
 }

 .hero-text p {
     font-size: 20px;
     margin-bottom: 2rem;
     color: #000;
     line-height: 1.7;
 }

 .hero-actions {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .hero-stats {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
 }

 .stat {
     text-align: center;
 }

 .stat-number {
     display: block;
     font-size: 2rem;
     font-weight: 700;
     color: var(--primary-color);
 }

 .stat-label {
     font-size: 0.9rem;
     color: var(--text-secondary);
 }

 .hero-visual {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .dashboard-preview {
     padding: 10px 10px 10px 10px;
     width: 100%;
 }

 .chart-container {
     width: 100%;
     border-radius: var(--border-radius);
     overflow: hidden;
 }

 .chart-container canvas {
     width: 100%;
     height: 100%;
 }

 /* Win Buyers Section */
 .win-buyers {
     padding: 30px 0px 0px 0px;
     background-color: #00407C;
     text-align: center;
 }

 .win-buyers h2 {
     font-size: 32px;
     margin-bottom: 1rem;
     color: #FFFFFF
 }

 .section-subtitle {
     font-size: 1.2rem;
     color: var(--text-secondary);
     margin-bottom: 2rem;
 }

 /* Three Tiles Section */
 .three-tiles {
     padding: 60px 0;
     background-color: #EEF4FA
 }

 .tiles-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
 }

 .tile-card {
     background-color: var(--background-white);
     padding: 1rem;
     border-radius: 16px;
     box-shadow: var(--shadow);
     text-align: center;
     transition: var(--transition);
     border: 1px solid var(--border-color);
     font-size: 16px;
 }

 /* .tile-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-lg);
 } */

 .tile-icon {
     margin-bottom: 2rem;
     display: flex;
     justify-content: center;
 }

 .icon-circle {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--primary-color), #0056b3);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     color: white;
     box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
 }

 .tile-card h3 {
     font-size: 1.3rem;
     margin-bottom: 1rem;
     color: var(--text-primary);
     line-height: 1.4;
 }

 .tile-card p {
     font-size: 16px;
     line-height: 1.6;
 }

 .features {
     padding: 60px 0;
 }

 .feature {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     align-items: center;
     margin-bottom: 0rem;
 }

 .feature-reverse .feature-visual {
     order: 2;
 }

 .feature-reverse .feature-content {
     order: 1;
 }

 .feature-content h3 {
     margin-bottom: 1.5rem;
     color: var(--text-primary);
     font-weight: 600;
     font-size: 32px;
 }


 .feature-content p {
     font-size: 20px;
     color: #000;
     font-weight: 400;
     line-height: 36px
 }

 .feature-chart {
     position: relative;
 }

 .feature-chart canvas {
     width: 100%;
     height: 300px;
 }

 /* Countries Section */
 .countries {
     padding: 60px 0;
     background-color: white;
     text-align: center;
 }

 .countries h2 {
     font-size: 32px;
     margin-bottom: 1rem;
     color: var(--text-primary);
 }

 .flags-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
     gap: 2rem;
     margin: 3rem 0;
 }

 .flag-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 1rem;
     padding: 1.5rem;
     background-color: var(--background-white);
     border-radius: var(--border-radius);
     box-shadow: var(--shadow);
     transition: var(--transition);
 }

 .flag-item:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-lg);
 }

 .flag-item img {
     width: 60px;
     height: 40px;
     border-radius: 4px;
 }

 .flag-item span {
     font-weight: 500;
     color: var(--text-primary);
 }

 /* Testimonial Section */
 .testimonial {
     padding: 60px 0;
     background-color: #EEF4FA
 }

 .testimonial-content {
     width: 100%;
     display: flex;
     gap: 4rem;
 }

 .testimonial-image {
     width: 30%;
 }

 .testimonial-photo {
     width: 100%;
     max-width: 400px;
     height: auto;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow-lg);
 }

 .testimonial-text {
     padding-left: 2rem;
     width: 70%;
 }

 .testimonial-logo {
     margin-bottom: 1rem;
 }

 .logo-circle {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background-color: var(--primary-color);
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     font-weight: bold;
 }

 .testimonial blockquote {
     margin: 0;
 }

 .testimonial blockquote h2 {
     font-size: 32px;
     color: var(--text-primary);
     margin-bottom: 1.5rem;
     line-height: 1.3;
 }

 .testimonial blockquote p {
     font-size: 20px;
     color: var(--text-secondary);
     margin-bottom: 2rem;
     line-height: 1.6;
 }

 .testimonial cite {
     font-size: 1rem;
     color: var(--text-secondary);
     font-style: normal;
     font-weight: 500;
 }

 /* Reviews Section */
 .reviews {
     padding: 60px 0;
     background-color: white;
 }

 .reviews h2 {
     text-align: center;
     font-size: 32px;
     margin-bottom: 3rem;
     color: var(--text-primary);
 }

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

 .review-card {
     background-color: #EEF4FA;
     padding: 2rem;
     border-radius: 26px;
     box-shadow: var(--shadow);
     transition: var(--transition);
     display: grid;
     gap: 10px;
 }

 .review-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-lg);
 }

 .review-avatar-buyers {
     display: flex;
     justify-content: center;
     width: 100%;
 }

 .review-avatar-buyers img {
     width: 60px;
     height: 60px;
     border-radius: 50%;
 }

 .review-rating {
     color: var(--accent-color);
     font-size: 1.2rem;
     margin-bottom: 1rem;
     text-align: center;
 }

 .review-content {
     text-align: center;
 }

 .review-content p {
     font-size: 16px;
     color: #090914;
     margin-bottom: 1.5rem;
     min-height: 100px;
 }

 .review-author {
     font-weight: 600;
     color: var(--text-primary);
     text-align: center;
     min-height: 75px;
 }

 /* CTA Section */
 .cta-section {
     padding: 60px 0 50px !important;
     background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
     color: white;
     text-align: center;
     position: relative;
 }

 .bottom-book-a-live-demo-button>:nth-child(1) {
    position: absolute;
    bottom: 0;
 }

 .bottom-book-a-live-demo-button>:nth-child(2) {
    display: flex;
    justify-content: end;
 }

 .bottom-book-a-live-demo-button .cta-btn.primary {
     width: 40% !important;
     font-size: 20px !important;
     font-weight: 600 !important;
 }

 .cta-section h2 {
     font-size: 32px;
     margin-bottom: 1rem;
     color: white;
 }

 .cta-section p {
     font-size: 20px;
     color: #FFFFFF;
     font-weight: 600;
     margin-bottom: 2rem;
     color: rgba(255, 255, 255, 0.9);
     line-height: normal;
 }

 .cta-section .cta-btn {
     background-color: white;
     color: var(--primary-color);
     z-index: 10000;
     position: relative;
 }

 .cta-section .cta-btn:hover {
     background-color: var(--background-light);
     transform: translateY(-2px);
 }

 /* Footer */
 .footer {
     background-color: var(--text-primary);
     color: white;
     padding: 60px 0 20px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 2rem;
     margin-bottom: 3rem;
 }

 .footer-section h3 {
     color: white;
     margin-bottom: 1.5rem;
     font-size: 1.2rem;
 }

 .footer-section ul {
     list-style: none;
 }

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

 .footer-section a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     transition: var(--transition);
 }

 .footer-section a:hover {
     color: white;
 }

 .demo-form-container {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .demo-form-container input {
     padding: 12px;
     border: none;
     border-radius: var(--border-radius);
     font-size: 1rem;
 }

 .demo-form-container button {
     padding: 12px;
     background-color: var(--primary-color);
     color: white;
     border: none;
     border-radius: var(--border-radius);
     font-size: 1rem;
     cursor: pointer;
     transition: var(--transition);
 }

 .demo-form-container button:hover {
     background-color: #0056b3;
 }

 .form-note {
     font-size: 0.9rem;
     color: rgba(255, 255, 255, 0.6);
     margin-top: 0.5rem;
 }

 .footer-bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 2rem;
 }

 .footer-logo img {
     height: 30px;
 }

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

 .social-links a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     transition: var(--transition);
 }

 .social-links a:hover {
     color: white;
 }

 .copyright {
     color: rgba(255, 255, 255, 0.6);
     font-size: 0.9rem;
 }

 .bottom-book-a-live-demo-button>:nth-child(1),
 .bottom-book-a-live-demo-button>:nth-child(3) {
     width: 17%;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .container {
         padding: 0 5px;
     }

     .nav-links {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background-color: var(--background-white);
         flex-direction: column;
         padding: 1rem;
         box-shadow: var(--shadow);
     }

     .nav-links.active {
         display: flex;
     }

     .mobile-menu-toggle {
         display: flex;
     }

     .header-actions .cta-btn {
         display: none;
     }

     .hero-content {
         grid-template-columns: 1fr;
         gap: 0rem;
         text-align: center;
     }

     .hero-text h1 {
         font-size: 22px;
     }

     .hero-stats {
         grid-template-columns: 1fr;
         gap: 1rem;
     }

     .feature {
         grid-template-columns: 1fr;
         gap: 1rem;
         text-align: center;
     }

     .feature-reverse .feature-content,
     .feature-reverse .feature-visual {
         order: initial;
     }

     .flags-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 1rem;
     }

     .testimonial-content {
         grid-template-columns: 1fr;
         gap: 2rem;
         text-align: center;
     }

     .testimonial-text {
         padding-left: 0;
     }

     .testimonial blockquote h2 {
         font-size: 20px
     }

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

     .tile-card {
         padding: 1rem 1.5rem;
         font-size: 16px;
     }

     @media (max-width: 980px) {
         .tiles-grid {
             grid-template-columns: repeat(1, 1fr);
         }
     }

     .reviews-grid {
         grid-template-columns: 1fr;
     }

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

     .footer-bottom {
         flex-direction: column;
         gap: 1rem;
         text-align: center;
     }

     .cta-section h2 {
         font-size: 20px;
     }

     .hero-text h1 {
         font-size: 22px
     }

     .win-buyers h2 {
         font-size: 20px;
     }

     .countries h2 {
         font-size: 20px;
     }

     .reviews h2 {
         font-size: 20px;
     }
 }

 @media screen and (max-width: 600px) and (min-width: 400px) {
     div .detect-buyer-risks {
         height: 345px !important;
     }
 }

 @media (max-width: 480px) {
     .hero-text h1 {
         font-size: 22px
     }

     .buyer-faster-image1 {
         height: 390px !important;
     }

     .flags-grid {
         grid-template-columns: 1fr;
     }

     .cta-btn {
         width: 100%;
         text-align: center;
     }

     .hero-actions {
         align-items: center;
     }

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

 /* Smooth animations */
 @media (prefers-reduced-motion: no-preference) {

     .feature-chart,
     .review-card,
     .flag-item {
         transition: transform 0.3s ease, box-shadow 0.3s ease;
     }
 }

 /* Focus states for accessibility */
 .cta-btn:focus,
 .login-btn:focus,
 .nav-links a:focus {
     outline: 2px solid var(--primary-color);
     outline-offset: 2px;
 }

 /* Print styles */
 @media print {

     .header,
     .footer,
     .cta-section {
         display: none;
     }

     .hero,
     .features,
     .countries,
     .testimonial,
     .reviews {
         page-break-inside: avoid;
     }
 }

 .search-container,
 .search-wrapper .input-wrapper {
     width: 100%;
 }

 .buyers-main-head {
     padding: 20px 47px;
     background: #EEF4FA
 }

 .buyers-screen-changes .inner-content {
     float: inline-end;
 }

 .d-flex {
     display: flex;
 }

 .buyers-screen-changes .inner-content .right-section {
     display: unset !important;
 }

 .date-alignment {
     display: flex;
     justify-content: end;
     align-items: center;
     flex-wrap: wrap;
 }

 .breadcrumb {
     column-gap: 8px;
     flex-wrap: wrap;
 }

 .breadcrumb li {
     min-width: max-content;
     font-size: 12px;
     line-height: 18px;
 }

 .breadcrumb .link-ref {
     color: var(--light-blue);
     position: relative;
     font-size: 12px;
     line-height: 18px;
     min-width: max-content;
 }

 .breadcrumb .link-ref::after {
     content: ">";
     position: relative;
     right: 0;
     bottom: 0;
     margin: auto;
     width: 8px;
     height: 10px;
     line-height: 1;
 }

 .breadcrumb li a {
     color: var(--light-blue);
 }

 .bottom-book-a-live-demo-button>:nth-child(2) {
     width: 60%;
 }

 .bottom-book-a-live-demo-button {
     display: flex;
     justify-content: space-between;
     width: 100%;
 }

 .bottom-book-a-live-demo-button .win-buyer-rectangle {
     background-position: center;
 }

 .review-author .title,
 .review-author span {
     font-size: 16px !important;
 }

 .review-author .title {
    font-weight: 400px !important;
    color: #747373;
 }

 @media screen and (max-width: 900px) {
    .reviews{
        background-color: #EEF4FA;
    }
    .reviews-grid .review-card{
        background-color: white;
    }
    .reviews-grid{
        margin-bottom: 10px;
    }
     .buyers-main-head {
         padding: 10px !important;
     }

     .bottom-book-a-live-demo-button>:nth-child(1) {
        position: unset !important;
     }

     .bottom-book-a-live-demo-button>:nth-child(2) {
        width: 100% !important;
        justify-content: center !important;
     }
     .bottom-book-a-live-demo-button {
        justify-content: center !important;
     }

     .breadcrumb {
         column-gap: 4px;
         max-width: 90%;
         margin-left: 5px;
     }

     .bottom-book-a-live-demo-button .win-buyer-rectangle {
         background-position: center;
         background-size: contain;
         height: 20px;
     }

     .hero-text p {
         font-weight: 400;
         font-size: 16px;
         line-height: normal !important;
     }

     .hero-actions .cta-btn.primary {
         font-weight: 600 !important;
         font-size: 16px !important;
     }

     .hero-actions>:nth-child(2) {
         font-weight: 400 !important;
         font-size: 12px !important;
         text-align: center !important;

     }

     .cta-section .cta-btn.primary {
         width: max-content !important;
         padding: 16px 20px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px !important;
     }

     .bottom-book-a-live-demo-button>:nth-child(1), .bottom-book-a-live-demo-button>:nth-child(3) {
        display: none !important;
     }

     .countries-content>:nth-child(1)>:nth-child(2) {
         line-height: normal !important;
         font-size: 16px !important;
     }

     .real-buyers {
         display: flex;
         width: 100%;
         justify-content: center;
         margin-top: 10px;
     }

     .bottom-book-a-live-demo-button .win-buyer-rectangle {
         background-position: center;
         background-size: contain;
         height: 20px;
     }

     .win-buyer-path {
         height: 40px !important;
         background-position: left !important;
         background-size: contain !important;
         margin-top: 10px !important;
     }
 }

 .tile-card {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .tile-card>:nth-child(1) {
     width: 15%;
 }

 .tile-card>:nth-child(3) {
     width: 10%;
     background-position: right;
     text-align: -webkit-right;
 }

 .cta-btn .primary {
     z-index: 10;
 }

 .tile-card>p {
     margin-bottom: unset;
     font-weight: 500;
     color: #090914 !important;
     width: 90%;
     text-align: left;
     font-size: 16px;
 }

 .right-arrow {
     width: 20px;
     height: 20px;
     background: url("https://www.volza.com/images/featuresPages/buyers/right-arrow.webp");
     background-repeat: no-repeat;
 }

 .global-buyers {
     width: 60px;
     height: 60px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/global-export.webp");
     background-repeat: no-repeat;
 }

 .discover-buyers {
     width: 60px;
     height: 60px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/plan-market.webp");
     background-repeat: no-repeat;
 }

 .right-decision {
     width: 60px;
     height: 60px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/track-share-market.webp");
     background-repeat: no-repeat;
 }

 .shortlistbuyers {
     background-color: white;
     padding: 15px 50px 15px 50px;
     border-radius: 26px;
     font-weight: 600;
     color: #0073F2;
     font-size: 20px;
 }

 .database-dump {
     color: #FFFFFF;
     margin-top: 25px;
 }

 .buyer-intelligence-container {
     gap: 20px;
     display: grid;
     height: 255px;
 }

 .global-buyers-backed {
     width: 100%;
     height: 500px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/data-table.webp");
     background-repeat: no-repeat;
     background-position: left;
     z-index: 10;
     position: relative;
 }

 .global-buyers-backed-track {
     width: 100%;
     height: 500px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/track-expand.webp");
     background-repeat: no-repeat;
     background-position: left;
     z-index: 10;
     position: relative;
 }


 .global-buyers-backed-background {
     width: 100%;
     height: 500px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/export-high-groth.webp");
     background-repeat: no-repeat;
     background-position: left;
     position: absolute;
     top: 20px;
 }

 .dicovers-buyers-matched {
     width: 100%;
     height: 540px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/dicover-buyers-matched.webp");
     background-repeat: no-repeat;
     background-position: right;
 }

 .rich-the-right-decision {
     width: 100%;
     height: 560px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/plan-smarter.webp");
     background-repeat: no-repeat;
     background-position: center;
     position: relative;
 }

 .rich-the-right-decision-background {
     width: 100%;
     height: 150px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/plan-smarter-bottom.webp");
     background-repeat: no-repeat;
     background-position: right;
     position: absolute;
     z-index: 10;
     right: 0;
     bottom: 66px;
 }

 .focus-only {
     width: 100%;
     height: 450px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/real-time-monitor.webp");
     background-repeat: no-repeat;
     background-position: right;
     position: relative;
     background-size: contain;
 }

 .focus-only-background {
     width: 100%;
     height: 200px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/real-time-monitor-bottom.webp");
     background-repeat: no-repeat;
     background-position: right;
     z-index: 10;
     position: absolute;
     bottom: 11px;
     right: 0;
 }

 .negotiate-smarter {
     width: 100%;
     height: 590px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/seize-market.webp");
     background-repeat: no-repeat;
     background-position: left;
 }

 .detect-buyer-risks {
     width: 100%;
     height: 550px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/track-stability.webp");
     background-repeat: no-repeat;
     background-position: right;
 }

 .monitor-and-protect {
     width: 100%;
     height: 450px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/monitor-and-protect.webp");
     background-repeat: no-repeat;
     background-position: left;
 }

 .resilient-supplier-network {
     width: 100%;
     height: 450px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/resilient-supplier-network.webp");
     background-repeat: no-repeat;
     background-position: right;
 }

 div .feature {
     display: grid !important;
 }

 .features-main-container>:nth-child(2n) {
     background-color: #EEF4FA;
     padding: 0 47px;
 }

 .features-main-container>:nth-child(n) {
     padding: 0 47px;
 }

 .buyer-faster-image1 {
     width: 100%;
     height: 550px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/marketdashboard.webp");
     background-repeat: no-repeat;
     z-index: 1;
     position: relative;
     background-position: right;
     right: 30px;
 }

 .buyer-faster-image2 {
     width: -webkit-fill-available;
     height: 450px;
     background: url("https://www.volza.com/images/featuresPages/suppliers/buyerIntelligencebackground.webp");
     background-repeat: no-repeat;
     position: absolute;
     top: 290px;
     background-position: right;
     right: 22px;
 }

 .container-buyers,
 .container-game-changer {
     padding: 0 47px;
 }

 .custom-flags {
     width: 100%;
     height: 450px;
     background: url("https://www.volza.com/images/featuresPages/suppliers/flags-complete-container.webp");
     background-repeat: no-repeat;
     background-position: left;
 }

 .flags-container {
     display: flex;
 }

 .flags-container>:nth-child(1) {
     width: 40%;
 }

 .flags-container>:nth-child(2) {
     gap: 120px;
     display: grid;
     width: 60%;
 }

 .flags-container>:nth-child(2)>:nth-child(1) {
     text-align: left;
 }

 .countries-content>:nth-child(1) {
     text-align: left;
 }

 .countries-content>:nth-child(1)>:nth-child(1) {
     font-size: 32px;
     font-weight: 600;
     color: #001358;
     line-height: 1;
 }

 .display-none {
    display: none !important;
 }

 .countries-content>:nth-child(1)>:nth-child(2) {
     font-size: 20px;
     margin-top: 30px;
     color: #4A4848;
 }

 .view-all-countries {
     text-align: left;
     font-weight: 600;
 }

 .view-all-countries-anchor {
     background-color: #0073F2;
     padding: 20px 60px 20px 60px;
     color: white;
     border-radius: 40px;
     font-size: 20px;
     font-weight: 600;
 }

 .game-changer {
     width: 100%;
     height: 500px;
     background: url("https://www.volza.com/images/featuresPages/buyers/game-changer.webp");
     background-repeat: no-repeat;
     background-position: left;
     border-radius: 20px;
     background-size: cover;
 }

 .game-changer-asteric {
     width: 100%;
     height: 70px;
     background: url("https://www.volza.com/images/featuresPages/buyers/game-changer-asteric.webp");
     background-repeat: no-repeat;
     background-position: left;
 }

 .game-changer-company {
     width: 100%;
     height: 50px;
     background: url("https://www.volza.com/images/featuresPages/buyers/username-game-changer.webp");
     background-repeat: no-repeat;
     background-position: left;
 }

 .game-changer-inner-text>:nth-child(2),
 .game-changer-inner-text>:nth-child(3) {
     font-size: 20px;
     font-weight: 400;
     color: #747373;
     line-height: normal;
 }

 .game-changer-inner-text>:nth-child(1) {
     font-size: 36px;
     font-weight: 500;
     color: #090914;
 }

 .user_1 {
     width: 74px;
     height: 78px;
     background: url("https://www.volza.com/images/completeSprite/globalSearch-Company-images/globalSearchCompanySprite.webp") -6px -126px / 526px 519px #f8f3f2;
     border-radius: 50%;
     border: 1px solid;
 }

 .user_2 {
     width: 74px;
     height: 78px;
     background: url("https://www.volza.com/images/completeSprite/globalSearch-Company-images/globalSearchCompanySprite.webp") -105px -162px / 711px 640px;
     border-radius: 50%;
     border: 1px solid;
 }

 .user_3 {
     width: 74px;
     height: 78px;
     background: url("https://www.volza.com/images/completeSprite/globalSearch-Company-images/globalSearchCompanySprite.webp") -203px -161px / 711px 640px;
     border-radius: 50%;
     border: 1px solid;
 }

 .win-buyer-right-path {
     width: 100%;
     height: 130px;
     background: url("https://www.volza.com/images/featuresPages/buyers/win-buyer-path.webp");
     background-repeat: no-repeat;
     background-position: left;
 }

 .win-buyer-path {
     width: 100%;
     height: 130px;
     background: url("https://www.volza.com/images/featuresPages/suppliers/win-buyer-right-path.webp");
     background-repeat: no-repeat;
     background-position: left;
 }

 .win-buyer-rectangle {
     width: 100%;
     height: 40px;
     background: url("https://www.volza.com/images/featuresPages/suppliers/win-buyer-rectangle.webp");
     background-repeat: no-repeat;
     background-position: left;
     position: relative;
     bottom: 45px;
 }

 .win-buyer-rectangle.right-rectangle {
     width: 80%;
     background-position: right;
 }

 .win-buyers-container {
     display: flex;
     justify-content: space-between;
 }

 .win-buyers-container>:nth-child(1),
 .win-buyers-container>:nth-child(3) {
     width: 20%;
 }

 .negotiate-smarter-second {
     width: 100%;
     height: 150px;
     background: url("https://www.volza.com/images/featuresPages/marketimporter/negotiate-smarter-second.webp");
     background-repeat: no-repeat;
     background-position: left;
     z-index: 1;
     position: absolute;
     bottom: 40px;
 }

 .view-all-countries-anchor:hover {
     background-color: #0056b3;
     transform: translateY(-2px);
 }

 .cta-btn.primary {
     z-index: 10;
 }

 .hero-actions .cta-btn.primary {
     width: max-content;
     font-size: 20px;
     font-weight: 600;
 }

 .hero-actions>:nth-child(2) {
     text-align: left;
     font-size: 14px;
     font-weight: 400;
 }

 .real-buyers {
     display: flex;
     width: 100%;
     justify-content: center;
     margin-top: 10px;
 }

 @media screen and (max-width: 1366px) and (min-width:768px) {
     .buyer-faster-image2 {
         top: 285px;
         right: unset;
         background-size: contain;
     }

     .tile-card {
         padding: 2.5rem 1rem !important;
         font-size: 16px;
     }

     .features-main-container>:nth-child(n) {
         padding: 0 30px !important;
     }

     .global-buyers-backed,
     .rich-the-right-decision,
     .dicovers-buyers-matched,
     .focus-only,
     .negotiate-smarter,
     .detect-buyer-risks,
     .monitor-and-protect,
     .custom-flags,
     .global-buyers-backed-track {
         background-size: contain;
     }

     .buyer-faster-image1 {
         right: unset !important;
         background-size: contain;
     }

     .features {
         padding: 0px !important;
     }
 }

 @media (max-width: 900px) {
    .tile-card>p{
        width: 100%;
        text-align: center;
    }
    .feature-content > h2{
        font-size: 20px !important;
    }
     .feature-content p {
         margin-bottom: unset !important;
     }

     .container-buyers .hero-text,
     .container-game-changer {
         padding: 0 8px;
     }

     .win-buyers-main {
         padding: 0 0 0px !important;
         background-color: #EEF4FA !important;
     }

     .three-tiles {
         padding: 30px 0 !important;
     }

     .container-buyers {
         padding: 0 !important;
     }

     .hero-actions .cta-btn.primary {
         width: max-content;
     }

     .hero-actions>:nth-child(2) {
         width: 80%;
     }

     .buyer-faster-image1 {
         right: 0px;
         background-size: contain;
         height: 345px;
     }

     .chart-container>:nth-child(1) {
         gap: 40px;
         display: grid;
     }

     .tile-card>:nth-child(1) {
         width: 100%;
         background-position: center;
     }

     .tile-card {
         display: grid;
         gap: 20px;
         border-radius: 24px !important;
         justify-content: center !important;
     }

     .win-buyers-container>:nth-child(1) {
         width: 100%;
     }

     .shortlistbuyers {
         padding: 15px 12px 15px 12px;
         font-size: 16px;
         width: 100%;
         display: block;
     }

     .win-buyers-main .container {
         max-width: 100% !important;
     }

     .win-buyers {
         padding: 10px 10px 20px !important;
     }

     .features {
         padding: 30px 0 !important;
     }

     .features-main-container>:nth-child(n) {
         padding: 24px 15px;
     }

     .global-buyers-backed {
         width: 100%;
         height: 500px;
         background: url("https://www.volza.com/images/featuresPages/marketimporter/export-high-groth.webp");
         background-repeat: no-repeat;
         background-position: left;
         z-index: 10;
         position: relative;
     }

     .global-buyers-backed-track {
         background-size: contain !important;
     }

     .rich-the-right-decision-background {
         width: 100%;
         height: 130px;
         background: url('https://www.volza.com/images/featuresPages/marketimporter/plan-smarter-bottom.webp');
         background-repeat: no-repeat;
         background-position: right;
         position: absolute;
         z-index: 10;
         left: 12px;
         bottom: 11px;
         background-size: contain;
     }

     .resilient-supplier-network {
         background-size: contain !important;
         height: 212px !important;
     }

     .focus-only {
         width: 100%;
         height: 450px;
         background-repeat: no-repeat;
         background-position: right;
         position: relative;
     }

     .global-buyers-backed,
     .rich-the-right-decision,
     .dicovers-buyers-matched,
     .focus-only,
     .negotiate-smarter,
     .detect-buyer-risks,
     .monitor-and-protect,
     .custom-flags {
         background-size: contain !important;
         background-position: center !important;
     }

     .focus-only-background {
         width: 100%;
         height: 129px;
         background-repeat: no-repeat;
         background-position: right;
         z-index: 10;
         position: absolute;
         bottom: 11px;
         right: 0;
         background-size: contain;
     }

     .global-buyers-backed,
     .global-buyers-backed-track {
         height: 320px !important;
     }

     .feature-content h3 {
         font-size: 20px !important;
     }

     .feature-content p {
         font-size: 16px !important;
         line-height: 24px !important;
         color: #747373 !important;
     }

     .feature-chart {
         padding: 0px !important;
     }

     .feature-content {
         order: -1 !important;
     }

     .dicovers-buyers-matched {
         height: 300px !important;
     }

     .rich-the-right-decision {
         height: 300px !important;
     }

     .focus-only {
         height: 272px !important;
     }

     .negotiate-smarter {
         height: 287px !important;
     }

     .negotiate-smarter-second {
         height: 113px !important;
         bottom: 0px !important;
         background-size: contain !important;
     }

     .dashboard-preview {
         padding: 0 !important;
     }

     .detect-buyer-risks {
         height: 280px !important;
     }

     .monitor-and-protect {
         height: 282px !important;
     }

     .custom-flags {
         width: 100% !important;
         height: 382px !important;
     }

     .flags-container {
         display: grid !important;
         gap: 30px;
     }

     .flags-container>:nth-child(2) {
         width: 100% !important;
         gap: 50px !important;
         order: -1;
     }

     .countries-content>:nth-child(1)>:nth-child(1) {
         font-size: 20px !important;
     }

     .countries {
         padding: 20px 0 !important;
     }

     .flags-container>:nth-child(2)>:nth-child(1) {
         text-align: center !important;
     }

     .flags-container>:nth-child(1) {
         display: grid;
         gap: 70px;
         width: unset !important;
     }

     .view-all-countries {
         text-align: center;
         margin-bottom: 0px;
     }

     .view-all-countries-anchor {
         padding: 15px 40px 15px 40px;
         font-size: 16px !important;
     }

     .reviews-grid {
         width: 75em;
         flex-wrap: unset;
         justify-content: center;
         display: flex !important;
     }

     .overfl-auto {
         overflow-x: auto;
     }

     .reviews h2 {
         position: sticky;
         top: 0;
         left: 0;
         font-size: 20px !important;
     }

     .review-card {
         width: 100%;
         max-width: 90%;
         padding: 10px;
     }

     div .user_1,
     div .user_2,
     div .user_3 {
         width: 74px !important;
     }

     .cta-section h2 {
         font-size: 20px !important;
     }

     .cta-section p {
         font-size: 16px !important;
         font-weight: 400 !important;
     }

     .cta-btn.primary {
         width: 80% !important;
     }

     .review-content p {
         min-height: 170px !important;
     }

     .three-tiles {
         padding: 20px 0;
     }

     .real-buyers {
         display: flex;
         width: 100%;
         justify-content: center;
         margin-top: 10px;
     }

     .view-all-countries-main-container {
         width: 100%;
         display: flex;
         justify-content: center;
     }

 }


 
/*font changes*/
.cta-section-buyers h2 {
    font-size: 32px ;
    margin-bottom: 0rem;
    color: white;
}
.cta-section-buyers {
    height: 324px;
}
.cta-btn.large {
    font-size: 20px;
}

.cta-btn {
    font-weight: 600;
    font-size: 20px;
}

h1 {
    font-size: 42px !important;
    font-weight: 600 !important;
    color: var(--text-primary);
}

h2 {
    font-size: 32px !important;
    font-weight: 600 !important;
    color: var(--text-primary);
}

p {
    font-size: 20px;
    font-weight: 400;
}
.breadcrumb li{
    font-size: 15px;
}
.breadcrumb .link-ref{
    padding-right: 10px;
    font-size: 15px;
}
.view-all-countries-anchor{
    font-size: 20px;
    width: max-content
}
@media screen and (max-width: 900px) {
    .cta-section{
        height: unset !important;
        padding: 16px 10px !important;
    }
    .buyer-intelligence-container{
        padding: 24px;
    }
  .platform-categories{
    height: unset !important;
  }
    .inner-containers>:nth-child(1), .inner-containers>:nth-child(2) {
        max-width: 95%;
        padding: 15px 10px 0px 10px;
    }
    .breadcrumb {
        max-width: 100% !important;
    }
    .cta-btn.primary {
        font-size: 16px !important;
    }
    .breadcrumb .link-ref{
        font-size: 13px !important;
    }
    p{
        font-size: 16px !important;
        font-weight: 400 !important;
    }
    h2{
        font-size: 20px !important;
        font-weight: 600 !important;
    }
    .breadcrumb li{
        font-size: 13px !important;
    }
    .breadcrumb .link-ref{
        font-size: 13px !important;
    }
    p{
        font-size: 16px !important;
        font-weight: 400 !important;
    }
    h2{
        font-size: 20px !important;
        font-weight: 600 !important;
    }   
}
@media screen and (max-width: 768px) {
    .inner-containers>:nth-child(1), .inner-containers>:nth-child(2) {
        max-width: 95%;
        padding: 15px 10px 0px 10px;
    }
    .hero-text h1 {
        font-size: 22px !important;
    }
    .breadcrumb .link-ref{
        font-size: 13px !important;
    }
    p{
        font-size: 16px !important;
        font-weight: 400 !important;
    }
    h2{
        font-size: 20px !important;
        font-weight: 600 !important;
    } 
}
.hero-text{
    z-index: 100;
}
.platform-cta-bottom{
  height: 300px;
}
.win-buyers-main{
    height: 340px;
}
.view-all-countries-anchor{
    width: max-content;
}