/* ========================== */
/* CSS RESET AND NORMALIZATION */
/* ========================== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
}
input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  border-radius: 0;
}

/* ================================ */
/* BRAND TYPEFACE AND GENERAL STYLES */
/* ================================ */
:root {
  --brand-primary: #2C3A47;
  --brand-secondary: #8DA1B9;
  --brand-accent: #F4D06F;
  --brand-bg: #F8F8F5;
  --text-main: #292929;
  --text-subtle: #6a6a6a;
  --border-radius: 12px;
  --shadow-sm: 0 2px 8px rgba(44,58,71,0.05);
  --shadow-md: 0 4px 16px rgba(44,58,71,0.09);
  --transition-fast: 0.15s cubic-bezier(.42,.14,.33,1);
  --transition-slow: 0.35s cubic-bezier(.42,.14,.33,1);
}
body {
  font-family: 'Roboto', 'Georgia', serif;
  background: var(--brand-bg);
  color: var(--text-main);
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  color: var(--brand-primary);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol, li {
  font-family: 'Roboto', 'Georgia', serif;
  font-size: 1rem;
}
strong, b {
  font-weight: 700;
}
sub, sup {
  font-size: 0.8em;
}

/* Elegant Spacing Utilities */
.container {
  width: 92vw;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 12px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
}

/* ========================================= */
/* HEADER & MAIN NAVIGATION (DESKTOP & MOBILE) */
/* ========================================= */
header {
  background: #fff;
  border-bottom: 1px solid #e3e7ed;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 12px 0;
  gap: 24px;
}
header img {
  max-height: 48px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  position: relative;
  color: var(--brand-primary);
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  padding: 3px 0;
  transition: color var(--transition-fast);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-accent);
}
.cta-primary {
  background: var(--brand-primary);
  color: #fff;
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 40px;
  font-size: 1rem;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 2px 8px rgba(44,58,71,0.05);
  border: none;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.04em;
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}

/* Hamburger Mobile Menu styles */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-primary);
  color: #fff;
  font-size: 1.8rem;
  border-radius: 7px;
  padding: 4px 12px;
  margin-left: 12px;
  z-index: 202;
  transition: background 0.17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-secondary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 999;
  transform: translateX(-105vw);
  transition: transform 0.33s cubic-bezier(.74,.07,.6,1.08);
  box-shadow: 0 0 0 rgba(44,58,71,0.05);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 6px 0 24px rgba(44,58,71,0.10);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 6px 0;
  background: none;
  color: var(--brand-primary);
  font-size: 2.2rem;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px;
  gap: 18px;
}
.mobile-nav a {
  width: 100%;
  padding: 14px 8px;
  color: var(--brand-primary);
  background: none;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.13rem;
  border-radius: 6px;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--brand-secondary);
  color: #fff;
}
@media (max-width: 1024px) {
  .main-nav{
    gap: 18px;
  }
  header .container{
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav{
    display:none;
  }
  .mobile-menu-toggle{
    display:inline-block;
  }
  .cta-primary{
    padding: 10px 18px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  header .container{
    flex-direction: row;
    gap:8px;
    padding:8px 0;
  }
  header img{
    max-height: 36px;
  }
}

/* ================= */
/* HERO & HEADLINES */
/* ================= */
.hero {
  padding: 36px 0 30px 0;
  background: linear-gradient(120deg, #fff 80%, #e0e7ef 110%) no-repeat;
  border-bottom: 1px solid #ecf0f6;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: 2.2rem;
  text-align: center;
  font-family: 'Montserrat', 'Georgia', serif;
  margin-bottom: 12px;
}
.subheadline {
  color: var(--brand-secondary);
  font-size: 1.18rem;
  font-family: 'Roboto', serif;
  margin-bottom: 20px;
  text-align: center;
}
.hero .cta-primary {
  margin-top: 8px;
}
@media (max-width: 600px) {
  .hero h1 { font-size:1.47rem; }
  .subheadline { font-size:1rem; }
}

/* ======================= */
/* SECTION AND CARD LAYOUT */
/* ======================= */
.features .content-wrapper, .about .content-wrapper, .services .content-wrapper, .project-overview, .team-members-grid {
  width: 100%;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.feature-item {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 278px;
  min-width: 220px;
  max-width: 350px;
  margin-bottom:20px;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.018);
}
.feature-item img {
  height: 38px;
  width: 38px;
}
.feature-item h3 {
  font-size: 1.13rem;
  color: var(--brand-primary);
  font-family: 'Montserrat', 'Georgia', serif;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.04rem;
  margin-bottom: 12px;
}
.feature-list img {
  width: 28px;
  height: 28px;
}
.icon-highlights {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}
.icon-highlights img {
  height: 40px;
  width: auto;
  filter: grayscale(0.5);
  opacity: 0.9;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  padding: 24px 20px 14px 20px;
  flex: 1 1 260px;
  min-width: 216px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.service-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.012);
}
.service-price {
  margin-top: 8px;
  color: var(--brand-accent);
  font-weight: bold;
  font-size:1.04rem;
  font-family: 'Montserrat', 'Georgia', serif;
}

.project-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.project-card {
  background: #fff;
  border: 1px solid #e3e7ed;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  flex: 1 1 310px;
  min-width: 220px;
  max-width: 380px;
  padding: 28px 20px 20px 20px;
  margin-bottom:20px;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.project-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.012);
}

.team-members-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.team-member {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid #f4f6fa;
  padding: 26px 18px;
  flex: 1 1 190px;
  min-width: 160px;
  max-width: 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.team-member:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.skills-highlight ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 0;
}
.skills-highlight li {
  background: var(--brand-secondary);
  color: #fff;
  padding: 5px 15px;
  border-radius: 18px;
  font-size: 0.98rem;
  font-family: 'Montserrat', 'Georgia', serif;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .feature-grid,
  .service-list,
  .project-overview,
  .team-members-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* ============ */
/* CTA SECTIONS */
/* ============ */
.cta-section {
  margin-bottom: 0;
  margin-top: 18px;
}
.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.cta-section h2 {
  font-size: 2rem;
  color: var(--brand-primary);
  text-align: center;
}

/* ================ */
/* ABOUT PAGE / ETC */
/* ================ */
.about .content-wrapper ul {
  margin-top: 8px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ===================== */
/* CONTACT - DETAILS BOX */
/* ===================== */
.contact-details {
  background: #f7f8fa;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 60px;
  padding: 34px 20px 24px;
}
.address-details {
  margin-bottom: 14px;
}
.address-details p {
  margin-bottom: 7px;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.map-embed img {
  width: 48px;
  border-radius: 50%;
  background: #e5ecf2;
  padding: 6px;
}

/* ================== */
/* TESTIMONIAL CARDS  */
/* ================== */
.testimonial-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e7ecf4;
  min-width: 220px;
  max-width: 420px;
  margin-bottom: 20px;
  color: #292929;
  font-size: 1.09rem;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.testimonial-card p {
  margin-bottom: 0;
  color: #2C3A47;
  font-style: italic;
  font-family: 'Georgia', serif;
}
.testimonial-card strong {
  color: var(--brand-secondary);
  font-size: .98rem;
  font-family: 'Montserrat', 'Georgia', serif;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .testimonial-snippets {
    flex-direction: column;
    gap: 18px;
  }
}

/* ==================== */
/* FOOTER & SUBNAV LINK */
/* ==================== */
footer {
  background: #222933;
  color: #fff;
  padding: 44px 0 24px 0;
  font-size: 0.97rem;
  line-height: 1.6;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
  height: 52px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.88;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--brand-accent);
  opacity: 1;
}
.contact-summary {
  font-size: 0.99rem;
  color: #dde3e9;
  margin-bottom: 11px;
  max-width:220px;
  word-break:break-word;
}
.contact-summary a {
  color: var(--brand-accent);
  text-decoration: underline;
}
.legal-links {
  margin-top: 14px;
  color: #b9c1ca;
  font-size: 0.98rem;
}
.legal-links a {
  color: #b9c1ca;
  font-family: 'Montserrat', 'Georgia', serif;
  margin:0 3px;
}
.legal-links a:hover,
.legal-links a:focus {
  color: var(--brand-accent);
}
.social-media-icons {
  display: flex;
  gap: 16px;
  margin-top: 13px;
}
.social-media-icons img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.5) brightness(1.13);
  transition: filter 0.21s, transform 0.18s;
  cursor: pointer;
}
.social-media-icons img:hover {
  filter: grayscale(0) brightness(1.22);
  transform: scale(1.10) rotate(-2deg);
}
@media (max-width: 1024px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* ======================== */
/* PRIVACY / TERMS SECTIONS */
/* ======================== */
.privacy-policy,
.gdpr,
.cookies-policy,
.terms-conditions {
  margin-bottom: 60px;
  padding: 40px 16px;
  background: #f6f9fb;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  color: var(--brand-primary);
}
.privacy-policy h1,
.gdpr h1,
.cookies-policy h1,
.terms-conditions h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.privacy-policy ul,
.gdpr ul,
.cookies-policy ul,
.terms-conditions ul {
  margin: 12px 0 10px 17px;
  padding-left: 17px;
  list-style-position: inside;
  color: var(--brand-primary);
}
.privacy-policy li,
.gdpr li,
.cookies-policy li,
.terms-conditions li {
  margin-bottom: 8px;
  font-family: 'Roboto', 'Georgia', serif;
  font-size:1rem;
}
.privacy-policy a,
.gdpr a,
.cookies-policy a,
.terms-conditions a {
  color: var(--brand-primary);
  text-decoration: underline;
}
.privacy-policy a:hover,
.gdpr a:hover,
.cookies-policy a:hover,
.terms-conditions a:hover {
  color: var(--brand-accent);
}

/* ========================== */
/* FLEXBOX PATTERNS PER SPEC  */
/* ========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 20px;
  position: relative;
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* =============== */
/* COOKIE BANNER   */
/* =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #dde2ef;
  box-shadow: 0 -2px 18px rgba(44,58,71,0.09);
  padding: 22px 10px 22px 15px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s var(--transition-slow), opacity 0.23s;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-text {
  color: #222;
  font-size: 1.05rem;
  max-width: 610px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  background: var(--brand-secondary);
  color: #fff;
  transition: background 0.16s, color 0.15s;
  margin-right: 4px;
}
.cookie-btn.accept {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  border: 1px solid var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-btn.reject {
  background: #eee8dd;
  color: var(--brand-primary);
}
.cookie-btn:hover,
.cookie-btn:focus {
  filter: brightness(0.92);
  outline: 2px solid var(--brand-accent);
}

/* =============== */
/* COOKIE MODAL    */
/* =============== */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(75,88,110,0.22);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadein 0.2s;
}
.cookie-modal-backdrop.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  padding: 38px 34px 30px 34px;
  border-radius: 18px;
  min-width: 280px;
  max-width: 96vw;
  box-shadow: 0 8px 44px rgba(44,58,71,0.16), 0 1.5px 8px rgba(44,58,71,0.09);
  position: relative;
  color: var(--brand-primary);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal h2 {
  font-size: 1.26rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', serif;
}
.cookie-category {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 13px;
}
.cookie-category label {
  font-family: 'Roboto', serif;
  color: var(--brand-primary);
  font-size: 1rem;
  margin-left: 3px;
}
.cookie-toggle {
  accent-color: var(--brand-secondary);
}
.cookie-category .always {
  color: #aaa;
  font-style: italic;
  font-size: .96rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  font-size: 2rem;
  color: var(--brand-primary);
  border-radius: 6px;
  padding: 4px 8px;
  transition: background 0.16s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
@media (max-width: 650px) {
  .cookie-modal{ padding:22px 7px 18px 10px; min-width:180px; }
}

/* Animations */
@keyframes fadein {
  0% { opacity: 0; } 100% { opacity: 1; }
}

/* ======================= */
/* GENERAL UI MICRO-STYLES */
/* ======================= */
::-webkit-scrollbar {
  width: 10px;
  background: #f8f8fc;
}
::-webkit-scrollbar-thumb {
  background: #d0dbe5;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b9c5d5;
}

/* Focus Outlines for Accessibility */
a:focus, button:focus, input:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
  z-index: 10;
}

/* ============ */
/* RESPONSIVE!  */
/* ============ */
@media (max-width: 600px) {
  .container {
    width: 99vw;
    max-width: 100vw;
    padding: 0 4px;
  }
  .about .content-wrapper,
  .section,.contact-details { padding:18px 4px; }
  .skills-highlight ul{ flex-direction: column; gap:10px; }
}

@media (max-width: 524px) {
  .section,.contact-details,.privacy-policy,.terms-conditions, .gdpr,.cookies-policy {
    padding: 8px 1px;
  }
  .service-item,.feature-item,.project-card,.team-member{
    padding-left: 7px;padding-right: 7px;
  }
  .feature-grid,
  .service-list,
  .project-overview,
  .team-members-grid {
    gap: 9px;
  }
  .footer-nav { gap:10px; font-size: 15px; }
}

/* ===================== */
/* HELPER / MARGIN UTILS */
/* ===================== */
.mb-8{ margin-bottom:8px; }
.mb-12{ margin-bottom:12px; }
.mb-20{ margin-bottom:20px; }
.mb-32{ margin-bottom:32px; }
gap-16{ gap:16px; }