/* RESET & NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, main,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F7F9FB;
  font-family: 'Roboto', Arial, sans-serif;
  color: #365274;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, svg {
  display: block;
  max-width: 100%;
}
a {
  color: #3896a3;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #204C7C;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5, h6 {
  color: #204C7C;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 28px; }
h2 { font-size: 2rem; margin-bottom: 24px; }
h3 { font-size: 1.3rem; margin-bottom: 16px; }
h4 { font-size: 1.15rem; margin-bottom: 8px; }

p, li {
  font-size: 1rem;
  color: #365274;
  margin-bottom: 10px;
}
strong { font-weight: 600; }

.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 40px 0 rgba(120, 180, 230, 0.08);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* HEADER */
header {
  background: linear-gradient(90deg,#eaf4fb 0%, #f4f7fa 100%);
  box-shadow: 0 2px 16px 0 rgba(160,180,210,0.06);
  padding: 0;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
}
header img[alt="Fresh Profit Logistics"] {
  height: 46px;
  margin-right: 32px;
}

header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
header nav a {
  color: #204C7C;
  background: transparent;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 20px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
header nav a.cta {
  background: #bbf0da;
  color: #176B44 !important;
  border-radius: 22px;
  font-weight: 700;
  padding: 10px 26px;
  margin-left: 12px;
  box-shadow: 0 1px 8px 0 rgba(55,168,103,0.1);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #204C7C;
  color: #fff !important;
  box-shadow: 0 3px 12px 0 rgba(55,168,103,0.18);
}
header nav a:hover, header nav a:focus {
  background: #eaf4fb;
  color: #37A867;
}

.mobile-menu-toggle {
  background: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  color: #176B44;
  width: 44px;
  height: 44px;
  box-shadow: 0 1px 8px 0 rgba(55,168,103,0.06);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 20px;
  transition: background 0.15s, box-shadow 0.15s;
  z-index: 120;
}

.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #eaf4fb;
  color: #204C7C;
  outline: none;
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: rgba(232,244,253,0.98);
  box-shadow: 0 4px 32px rgba(55,168,103,0.10);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.8,0.2,0.3,1);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #204C7C;
  font-size: 2.1rem;
  padding: 16px 16px 8px 0;
  cursor: pointer;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 24px 32px 48px 32px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #204C7C;
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 12px 0;
  border-radius: 18px;
  width: 100%;
  background: transparent;
  transition: background 0.15s, color 0.15s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #bbf0da;
  color: #176B44;
}

@media (max-width: 991px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, #eaf4fb 0%, #f9eaf7 100%);
  padding: 60px 0 60px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}
.hero h1 {
  color: #204C7C;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}
.hero p {
  color: #365274;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* FEATURE & CARD GRIDS */
.feature-grid, .blog-posts-grid, .card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  width: 100%;
}
.feature-grid {
  gap: 24px;
  margin-top: 12px;
}
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(55,168,103,0.07);
  padding: 28px 24px 26px 24px;
  flex: 1 1 220px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature img {
  height: 44px;
  margin-bottom: 8px;
}
.feature h3 {
  font-size: 1.18rem;
  color: #37A867;
}
.feature p {
  font-size: 1rem;
  color: #365274;
  margin-bottom: 0;
}
.feature:hover {
  box-shadow: 0 8px 32px 0 rgba(55,168,103,0.14);
  transform: translateY(-4px) scale(1.025);
}

.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 12px 0 rgba(55,168,103,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 10px 36px 0 rgba(55,168,103,0.13);
  transform: translateY(-3px) scale(1.018);
}

.content-grid {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.section > .container {
  padding: 0;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px 16px 26px;
  background: #f9fafd;
  border: 1.5px solid #e1ecf7;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px 0 rgba(32, 76, 124, 0.07);
  max-width: 650px;
  transition: box-shadow 0.17s, border 0.19s;
}
.testimonial-card p {
  color: #204C7C;
  font-size: 1.12rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-details {
  font-size: 1rem;
  color: #2c486f;
  font-weight: 600;
}
.testimonial-card:hover, .testimonial-card:focus {
  border: 1.5px solid #b3f1de;
  box-shadow: 0 4px 24px 0 rgba(55,168,103,0.15);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CTA BUTTONS */
.cta {
  display: inline-block;
  background: #37A867;
  color: #fff !important;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 36px;
  margin-top: 12px;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px 0 rgba(55,168,103,0.09);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
  border: none;
  cursor: pointer;
  outline: none;
}
.cta:hover, .cta:focus {
  background: #204C7C;
  color: #f9fafc !important;
  box-shadow: 0 8px 24px 0 rgba(32,76,124,0.17);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}

.cta-row {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 12px;
}

/* BLOG FILTERS & ARTICLES */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.blog-filters button {
  background: #eaf4fb;
  border: none;
  border-radius: 22px;
  color: #204C7C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 24px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
  margin-bottom: 5px;
}
.blog-filters button:hover, .blog-filters button:focus {
  background: #bbf0da;
  color: #176B44;
  outline: none;
}

.blog-posts-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.blog-posts-grid article {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 16px 0 rgba(55,168,103,0.07);
  padding: 26px 22px 18px 22px;
  width: 100%;
  max-width: 370px;
  min-width: 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.blog-posts-grid article:hover {
  box-shadow: 0 6px 32px 0 rgba(32,76,124,0.15);
  transform: scale(1.025);
}
.blog-posts-grid h2 {
  margin-bottom: 7px;
  font-size: 1.25rem;
  color: #37A867;
}
.blog-posts-grid a {
  color: #204C7C;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 5px;
  align-self: flex-start;
  text-decoration: none;
  transition: color 0.13s;
}
.blog-posts-grid a:hover, .blog-posts-grid a:focus {
  color: #176B44;
  text-decoration: underline;
}

.newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #eaf4fb;
  border-radius: 18px;
  padding: 28px 28px;
  box-shadow: 0 2px 14px 0 rgba(120,180,230,0.08);
}
.newsletter p {
  margin-bottom: 0;
}

.cta-banner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #bbf0da;
  border-radius: 22px;
  padding: 32px 32px 28px 32px;
  margin: 22px 0 12px 0;
  align-items: flex-start;
  box-shadow: 0 1px 10px rgba(55,168,103,0.09);
}
.cta-banner h2 {
  color: #204C7C;
}
.cta-banner p {
  color: #176B44;
  font-size: 1.07rem;
}

/* CONTACT, STATISTICS, FAQ */
.contact-details, .statistical-highlights, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details img {
  vertical-align: middle;
  height: 1.18em;
  margin-right: 8px;
}
.location-map {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.google-map-placeholder {
  background: #eaf4fb;
  border-radius: 16px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 170px;
  margin-top: 10px;
}

.statistical-highlights {
  flex-direction: row;
  gap: 34px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.statistical-highlights p {
  color: #176B44;
  background: #f0fdfa;
  padding: 12px 22px;
  border-radius: 15px;
  font-size: 1.13rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .statistical-highlights {
    flex-direction: column;
    gap: 12px;
  }
}

.faq-list {
  background: #f9fafd;
  border: 1px solid #e1ecf7;
  border-radius: 17px;
  padding: 24px 26px;
  gap: 12px;
  margin-bottom: 0;
}
.faq-list h3 {
  font-size: 1.13rem;
  color: #37A867;
  margin-bottom: 3px;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #f4f8ff 0%, #eaf4fb 100%);
  box-shadow: 0 -2px 12px 0 rgba(85,168,200,0.07);
  border-radius: 30px 30px 0 0;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  padding: 28px 16px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #204C7C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #bbf0da;
  color: #176B44;
  outline: none;
}
.footer-contact {
  color: #176B44;
  font-size: 1rem;
  text-align: center;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff9fc;
  color: #204C7C;
  box-shadow: 0 -2px 16px 0 rgba(85,168,200,0.09);
  z-index: 2500;
  padding: 32px 18px 20px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  border-radius: 14px 14px 0 0;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: slideUp 0.7s cubic-bezier(0.5,1.15,0.4,1);
}
@keyframes slideUp {
  from { transform: translateY(120px); opacity: 0; } to { transform: translateY(0); opacity: 1;}
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-consent-banner button {
  background: #eaf4fb;
  color: #204C7C;
  border: none;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 20px;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.13s, color 0.14s;
}
.cookie-consent-banner button.accept {
  background: #37A867;
  color: #fff;
}
.cookie-consent-banner button.reject {
  background: #f9b3c6;
  color: #b70034;
}
.cookie-consent-banner button.settings {
  background: #eaf4fb;
  color: #204C7C;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  filter: brightness(0.94);
  outline: none;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 28px 10px 18px 10px;
    font-size: 0.97rem;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3500;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(112,176,204, 0.38);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.34s;
}
@keyframes fadeIn {
  from{opacity:0;} to{opacity:1;}
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #f7f9fb;
  border-radius: 22px;
  box-shadow: 0 12px 60px rgba(32,76,124,0.13);
  max-width: 430px;
  width: 98vw;
  padding: 32px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalPop 0.47s cubic-bezier(.56,2.04,.96,.95);
}
@keyframes modalPop { 0% {transform: scale(0.8); opacity: 0; } 100% { transform: scale(1); opacity:1; } }
.cookie-modal h3 {
  color: #204C7C;
  font-size: 1.4rem;
  margin-bottom: 7px;
  text-align: left;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 6px;
  margin-bottom: 5px;
}
.cookie-category label {
  font-size: 1rem;
  color: #204C7C;
  margin-left: 4px;
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  accent-color: #37A867;
  width: 20px; height: 20px;
}
.cookie-category .cookie-essential {
  color: #bbb;
  font-size: 0.98rem;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-close {
  background: transparent;
  border: none;
  color: #204C7C;
  font-size: 1.2em;
  position: absolute;
  top: 18px;
  right: 22px;
  cursor: pointer;
  opacity: 0.75;
}
.cookie-close:hover { color: #b70034; opacity:1; }

/* RESPONSIVE DESIGN */
@media (max-width: 1160px) {
  .container {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
@media (max-width: 768px) {
  body,
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 35px;
    border-radius: 14px;
  }
  .testimonial-card {
    padding: 12px 12px 10px 14px;
    border-radius: 11px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .feature, .card {
    padding: 14px 10px;
    border-radius: 9px;
    min-width: 160px;
  }
  .cta {
    font-size: 1rem;
    padding: 9px 22px;
  }
  .cta-banner {
    padding: 16px 12px;
    border-radius: 14px;
  }
  .newsletter {
    padding: 12px 10px;
    border-radius: 10px;
  }
  .blog-posts-grid article {
    padding: 14px 8px 10px 8px;
    border-radius: 10px;
    min-width: 90vw;
  }
  .blog-posts-grid {
    gap: 10px;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.07rem; }
}

/* SCROLLBAR BEAUTIFICATION */
::-webkit-scrollbar { width: 10px; background: #eaf4fb; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #bbf0da; border-radius: 10px; }

/* LINKS/INTERACTIVES */
a:focus, button:focus, .cta:focus {
  outline: 2px solid #37A867;
  outline-offset: 2px;
}

/* SOFT PASTEL THEME HIGHLIGHTS (extra pastel accents for dreamy feel) */
.section, .feature, .card, .testimonial-card, .faq-list, .newsletter, .cta-banner, .blog-posts-grid article {
  box-shadow: 0 1px 14px 0 rgba(210, 222, 255, 0.12);
}

.feature, .card, .testimonial-card, .newsletter, .cta-banner, .faq-list {
  background: linear-gradient(120deg, #fdfdff 90%, #eaf4fb 100%);
}

/* Animations: Soft fade for all cards on hover */
.card, .feature, .testimonial-card, .blog-posts-grid article, .newsletter, .cta-banner, .faq-list {
  transition: box-shadow 0.19s, transform 0.19s, background 0.16s;
}

/* Layout spacing between cards/sections */
.card + .card,
.testimonial-card + .testimonial-card,
.section + .section,
.feature + .feature,
.blog-posts-grid article + article {
  margin-top: 20px;
}

/* Prevent content overlap for all flexbox containers */
.card-container, .feature-grid, .card-grid, .content-grid, .blog-posts-grid {
  gap: 24px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
gap-20 { gap: 20px; }
.mt-20 { margin-top: 20px; }
.mb-24 { margin-bottom: 24px; }
.hide { display: none !important; }

/* Misc */
.section:only-child, .section:last-child { margin-bottom: 0; }

/* Mobile: Open/Close Animation for Mobile Menu */
.mobile-menu {
  transition: transform 0.35s cubic-bezier(0.7,0.2,0.3,1);
  will-change: transform;
}

/* Z-index for overlays and header */
header { z-index: 1100; }
.mobile-menu { z-index: 2001; }
.cookie-consent-banner { z-index: 2500; }
.cookie-modal-overlay { z-index: 3500; }

/* Custom Pastel Colors for Soft-Pastel Feel */
:root {
  --primary: #204C7C;
  --secondary: #37A867;
  --accent: #F7F9FB;
  --pastel-blue: #eaf4fb;
  --pastel-green: #bbf0da;
  --pastel-pink: #f9b3c6;
  --pastel-purple: #e7eaf9;
  --pastel-yellow: #fff5cf;
  --pastel-highlight: #f4f7fa;
}

/* ========== END OF CSS ==========
 * NO GRID/COLUMN/COLUMN-GAP/CLAMP()
 * ALL SPACING VIA FLEXBOX + GAP/MARGIN
 * ALL LAYOUT CONTAINERS USE FLEX WITH FLEX-WRAP
 * ALL CLASSES MATCH ACTUAL HTML STRUCTURE
 */
