/* CSS 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,
b, 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, 
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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #fff;
  color: #151515;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #19324D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #000;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #19324D;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li {
  font-size: 1rem;
  color: #222;
  margin-bottom: 14px;
}
strong { font-weight: 700; }

/* LAYOUT CONTAINERS */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* BRAND COLORS */
:root {
  --bs-primary: #19324D;
  --bs-secondary: #E8ECF1;
  --bs-accent: #F6B100;
  --bs-bg-dark: #181818;
  --bs-bg-light: #fff;
  --bs-gray-800: #222;
  --bs-gray-600: #555;
  --bs-gray-400: #aaa;
  --bs-border: #e0e0e0;
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--bs-bg-light);
  padding: 24px 0 18px 0;
  gap: 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.main-nav a {
  color: #1a1a1a;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  background: var(--bs-secondary);
  color: #19324D;
}
.main-nav img {
  height: 40px;
  margin-right: 6px;
  vertical-align: middle;
}

.cta-btn {
  background: var(--bs-primary);
  color: #fff !important;
  border-radius: 6px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 10px;
  border: none;
  box-shadow: 0 2px 16px 0 rgba(25,50,77,0.10);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #111920;
  color: var(--bs-accent) !important;
  box-shadow: 0 4px 24px 0 rgba(25,50,77,0.13);
}

/* HEADER/MOBILE MENU */
header {
  background: var(--bs-bg-light);
  border-bottom: 1px solid var(--bs-border);
  position: relative;
  z-index: 10;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1a1a1a;
  margin-left: auto;
  margin-right: 8px;
  cursor: pointer;
  z-index: 105;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px dotted var(--bs-accent);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(255,255,255,0.98);
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 36px 24px 24px 24px;
  box-shadow: 6px 0 24px 0 rgba(25,50,77,0.07);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #1a1a1a;
  align-self: flex-end;
  margin-bottom: 26px;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--bs-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  color: #181818;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--bs-secondary);
}
@media (max-width: 992px) {
  .main-nav {
    gap: 16px;
    font-size: 0.97rem;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 6px;
    font-size: 0.93rem;
  }
  .cta-btn { padding: 9px 13px; font-size: 0.97rem; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}

/* MAIN & SECTION LAYOUTS */
main {
  width: 100%;
  background: var(--bs-bg-light);
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
@media (max-width: 576px) {
  section { 
    padding: 24px 0 18px 0;
    margin-bottom: 36px;
  }
  .container { padding: 0 12px; }
}

/* FLEXBOX UTILS & COMPONENT LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 24px 0 rgba(30,34,37,0.08);
  padding: 30px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 22px; }
  .content-grid { flex-direction: column; gap: 18px; }
}

/* Features & Services */
.feature-grid,
.service-list,
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .feature-grid,
  .service-list,
  .team-list {
    gap: 18px;
  }
}
.feature-item, .service-item, .team-member {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(37, 42, 64, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 26px 18px 18px 18px;
  transition: box-shadow 0.22s, transform 0.17s;
  margin-bottom: 20px;
  border: 1px solid var(--bs-secondary);
  min-width: 220px;
  max-width: 340px;
}
.feature-item img, .service-item img {
  width: 40px;
  height: 40px;
  filter: grayscale(1) contrast(1.2);
}
.feature-item:hover, .service-item:hover, .team-member:hover {
  box-shadow: 0 6px 24px 0 rgba(25,50,77,0.16);
  transform: translateY(-3px) scale(1.025);
  border-color: var(--bs-accent);
}
@media (max-width: 700px) {
  .feature-grid,.service-list,.team-list{flex-direction:column;align-items:stretch;gap:12px;}
  .feature-item,.service-item,.team-member{max-width:100%;min-width:0;}
}

/* TESTIMONIALS */
.testimonial-carousel,.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 14px;
  margin-bottom: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F7F8FA;
  border-radius: 14px;
  box-shadow: 0 4px 18px 0 rgba(25,50,77,0.07);
  padding: 26px 24px 22px 24px;
  min-width: 220px;
  max-width: 340px;
  color: #181818;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
  border: 1px solid var(--bs-secondary);
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #232323;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 1.00rem;
  color: #736151;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #181818;
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(25,50,77,0.16);
  transform: translateY(-2px) scale(1.015);
}
@media (max-width: 900px) {
  .testimonial-carousel,.testimonial-list {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card { max-width: 100%; }
}

/* PRICING TABLE */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.pricing-plan {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(25,50,77,0.08);
  padding: 28px 22px 22px 22px;
  border: 1px solid var(--bs-secondary);
  min-width: 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.16s, border-color 0.18s;
  align-items: flex-start;
}
.pricing-plan h3 {
  margin-bottom: 10px;
  color: var(--bs-primary);
}
.pricing-plan ul {
  margin-bottom: 16px;
  font-size: 0.98rem;
}
.pricing-plan strong {
  font-size: 1.17rem;
  color: #111920;
}
.pricing-plan:hover {
  box-shadow: 0 7px 28px 0 rgba(25,50,77,0.19);
  border-color: var(--bs-accent);
  transform: translateY(-4px) scale(1.04);
}
@media (max-width: 800px) {
  .pricing-table { flex-direction: column; gap: 14px; }
  .pricing-plan { max-width: 100%; }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.faq-list > div {
  background: #fff;
  border-radius: 10px;
  padding: 18px 16px;
  box-shadow: 0 2px 12px 0 rgba(25,50,77,0.06);
  border: 1px solid var(--bs-secondary);
}
.faq-list strong { color: var(--bs-primary); }

/* BLOG LISTING */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 16px;
}
.blog-post-preview {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 rgba(25,50,77,0.07);
  padding: 21px 18px 16px 18px;
  border: 1px solid var(--bs-secondary);
  min-width: 200px;
  max-width: 340px;
  transition: box-shadow 0.17s, border-color 0.15s, transform 0.16s;
}
.blog-post-preview h3 a {
  font-size: 1.16rem;
  color: var(--bs-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.16s;
}
.blog-post-preview h3 a:hover {
  color: var(--bs-accent);
  text-decoration: underline;
}
.blog-post-preview:hover {
  box-shadow: 0 6px 22px 0 rgba(25,50,77,0.14);
  border-color: var(--bs-accent);
  transform: translateY(-2px) scale(1.013);
}
@media (max-width: 900px) {
  .blog-list { flex-direction: column; gap: 12px; }
  .blog-post-preview { max-width: 100%; }
}
.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.categories-list li {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 6px 16px;
  color: #222;
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* PROJECTS/PORTFOLIO */
.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.project-item {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 13px 0 rgba(25,50,77,0.08);
  padding: 24px 20px 16px 20px;
  border: 1px solid var(--bs-secondary);
  min-width: 200px;
  max-width: 340px;
  transition: box-shadow 0.18s, border-color 0.13s, transform 0.16s;
  margin-bottom: 20px;
}
.project-item h3 {
  margin-bottom: 9px;
}
.project-item span {
  color: #656565;
  font-size: 0.97rem;
}
.project-item:hover {
  box-shadow: 0 6px 22px 0 rgba(25,50,77,0.14);
  border-color: var(--bs-accent);
  transform: translateY(-2px) scale(1.009);
}
@media (max-width: 900px) {
  .project-grid { flex-direction: column; gap: 12px; }
  .project-item { max-width: 100%; }
}

/* MAP PLACEHOLDER */
.map-placeholder {
  display: flex;
  align-items: center;
  background: #f5f7fa;
  border-radius: 12px;
  border: 1px solid var(--bs-secondary);
  padding: 30px 25px;
  gap: 24px;
  margin-bottom: 16px;
}
.map-placeholder img {
  width: 38px;
  height: 38px;
}
@media (max-width: 700px) {
  .map-placeholder { flex-direction: column; gap: 12px; padding: 17px 10px; }
}

/* FOOTER */
footer {
  background: #181920;
  color: #f8f8f8;
  width: 100%;
  font-size: 0.99rem;
  letter-spacing: 0.028em;
  margin-top: 44px;
}
footer section {
  padding: 38px 0 22px 0;
  margin-bottom: 0;
}
.footer-content {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo img {
  height: 36px;
  margin-bottom: 15px;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-navigation a {
  color: #dcdcdc;
  transition: color 0.13s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-navigation a:hover {
  color: var(--bs-accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #e8e8e8;
  font-size: .97rem;
  margin-top: 6px;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
  filter: grayscale(1) contrast(1.15);
}
.footer-contact a {
  color: #f6b100;
  text-decoration: underline;
}
.footer-contact a:hover { color: #fff; }
@media (max-width: 900px) {
  .footer-content { flex-direction: column; gap: 20px; align-items: flex-start; }
}

/* TEXT SECTIONS */
.text-section {
  background: #fafbfc;
  border-radius: 12px;
  padding: 28px 22px;
  border: 1px solid var(--bs-secondary);
}
.text-section ul li {
  margin-bottom: 7px;
}

/* NEXT STEPS/THANK YOU */
.next-steps {
  margin-top: 29px;
}
.next-steps h2 {
  font-size: 1.32rem;
  margin-bottom: 7px;
}
.next-steps ul {
  margin-bottom: 16px;
}

/* UTILS & SPACING */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.pt-2 { padding-top: 16px; }
.pb-2 { padding-bottom: 16px; }

/* BUTTONS & INTERACTIONS */
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background: var(--bs-primary);
  color: #fff;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .2s;
  box-shadow: 0 2px 12px 0 rgba(25,50,77,0.09);
  outline: none;
}
button:hover, button:focus,
input[type="button"]:hover, input[type="button"]:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: var(--bs-accent);
  color: #111920;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  max-width: 100vw;
  background: #181920;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 -3px 24px 0 rgba(25,50,77,0.08);
  padding: 22px 10px 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
  transition: opacity 0.28s, transform 0.36s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.cookie-banner button {
  padding: 10px 24px;
  background: #fff;
  color: #181920;
  border-radius: 5px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background .15s, color .15s, box-shadow .15s;
  box-shadow: 0 2px 10px 0 rgba(25,50,77,0.11);
}
.cookie-banner button.accept {
  background: var(--bs-accent);
  color: #181920;
}
.cookie-banner button.settings {
  background: var(--bs-secondary);
  color: #232323;
}
.cookie-banner button.reject {
  background: #232323;
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #ebebeb;
  color: var(--bs-primary);
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #ffd44c;
  color: #232323;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #181920;
  color: var(--bs-accent);
}

@media (min-width:540px) {
  .cookie-banner .banner-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    max-width: 700px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 2200;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(28,32,40,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: #181818;
  border-radius: 16px;
  padding: 36px 28px 30px 28px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 8px 48px 0 rgba(25,50,77,0.14);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-content h2 {
  color: var(--bs-primary);
  font-size: 1.32rem;
  margin-bottom: 2px;
}
.cookie-modal-close {
  position: absolute;
  right: 17px;
  top: 12px;
  background: none;
  border: none;
  font-size: 1.85rem;
  color: #222;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 11;
}
.cookie-modal-close:focus {
  outline: 2px solid var(--bs-accent);
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--bs-primary);
}
.cookie-category .toggle-switch {
  margin-left: 18px;
}
/* TOGGLE SWITCH */
.toggle-switch {
  display: inline-flex;
  align-items: center;
}
.toggle-switch input[type="checkbox"] {
  appearance: none;
  width: 34px; height: 18px;
  background: #efefef;
  border: none;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background.18s;
}
.toggle-switch input[type="checkbox"]:checked {
  background: var(--bs-accent);
}
.toggle-switch input[type="checkbox"]:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #222;
  transition: left .2s, background .17s;
}
.toggle-switch input[type="checkbox"]:checked:before {
  background: #fff;
  left: 18px;
}
.toggle-switch input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* SCROLLBAR & SELECTION COLORS */
::-webkit-scrollbar { width: 7px; background: #f6f6f6; }
::-webkit-scrollbar-thumb { background: #cce; border-radius: 10px; }

::selection { background: #E8ECF1; color: #181920; }

/* HEADINGS CONTRAST MONOCHROME SHADOW */
h1, h2 {
  text-shadow: 0 2px 12px rgba(25,50,77,0.07);
}

/* ANIMATIONS */
.cta-btn, .card, .feature-item, .service-item, .testimonial-card, .pricing-plan, .blog-post-preview, .project-item, .cookie-banner, .cookie-modal-content {
  transition: box-shadow 0.20s, color 0.15s, background 0.18s, border-color 0.14s, transform 0.19s;
}

/* FOCUS STYLES */
:focus {
  outline: 2px solid var(--bs-accent);
  outline-offset: 2px;
}

/* MONOCHROME SOPHISTICATED COLOR ACCENTS */
body {
  background: #fff;
  color: #181818;
}
h1, h2, h3, h4 {
  color: #151515;
}
.text-section {
  background: #f8f9fa;
  border: 1px solid #e5e7ea;
}
.feature-item, .service-item, .team-member, .card, .project-item, .pricing-plan, .blog-post-preview {
  background: #fff;
  border: 1px solid #e5e7ea;
}

/* ENSURE SPACING BETWEEN ALL COMPONENTS */
.section, .feature-grid, .service-list, .team-list, .card-container, .content-grid, .testimonial-carousel, .testimonial-list, .pricing-table, .faq-list, .blog-list, .project-grid {
  margin-bottom: 60px;
}

/* RESPONSIVE TYPOGRAPHY */
@media (max-width:600px){
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.03rem; }
  .cta-btn,.main-nav a,.mobile-nav a{font-size:0.99rem;}
}

/* Prevent content overlapping */
@media (max-width:480px){
  .footer-logo img{height:28px;}
  .footer-content{gap:12px;}
  .testimonial-card,.feature-item,.service-item,.card,.pricing-plan,.blog-post-preview{padding:14px 7px;}
}
