/* ===============================================================
   RESET & NORMALIZE | Universal Box Sizing & Consistent Defaults
   =============================================================== */

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  outline: none;
}
body {
  min-height: 100vh;
  background-color: #F6F7F5;
  color: #233F44;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  color: inherit;
  outline: none;
}
a {
  color: #295159;
  text-decoration: none;
  transition: color .2s cubic-bezier(.4,0,.2,1);
}
a:focus, a:hover {
  color: #C9B25A;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: 700;
}

/* =========================================
   CSS Variables (with fallback for JS usage)
   ========================================= */
:root {
  --mpwm-primary: #295159;
  --mpwm-secondary: #F6F7F5;
  --mpwm-dark: #233F44;
  --mpwm-accent: #C9B25A;
  --mpwm-accent-neon: #FFD205;
  --mpwm-tech-blue: #3AD8C6;
  --mpwm-danger: #da3633;
  --mpwm-neutral: #354E53;
  --mpwm-bg-hero: #2d536d;
  --mpwm-light: #ffffff;
}

/* =========================
   BASE STRUCTURE CONTAINERS
   ========================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--mpwm-secondary);
  border-radius: 20px;
  box-shadow: 0 6px 40px 0 rgba(41,81,89,0.05);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ==========================
   TYPOGRAPHY STYLES
   ========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--mpwm-dark);
  margin-bottom: 14px;
  line-height: 1.18;
  font-weight: 700;
}
h1 {
  font-size: 2.7rem;
  letter-spacing: .01em;
  text-shadow: 0 0 10px rgba(58,216,198,0.08), 0 2px 20px rgba(201,178,90,0.09);
  background: linear-gradient(90deg, #C9B25A 5%, #3AD8C6 40%, #295159 90%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
h2 {
  font-size: 2rem;
  letter-spacing: .01em;
}
h3 {
  font-size: 1.3rem;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}

p, ul, li, a, label {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--mpwm-dark);
  line-height: 1.7;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
}

/* Visual hierarchy and responsive headings */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.12rem; }
}

/* ===========================
   HEADER & NAV STRUCTURE
   =========================== */
header {
  background-color: var(--mpwm-dark);
  box-shadow: 0 3px 32px -8px rgba(58,216,198,.07);
  position: relative;
  z-index: 900;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo img {
  width: 158px;
  height: auto;
}

.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  position: relative;
  color: var(--mpwm-light);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color .17s, background .19s, box-shadow .22s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--mpwm-accent);
  background: rgba(41,81,89,0.13);
  box-shadow: 0 0 0 2px var(--mpwm-accent-neon);
}

.cta-btn {
  display: inline-flex;
  min-width: 130px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(102deg, #295159 0%, #3AD8C6 100%);
  color: var(--mpwm-light);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 10px;
  box-shadow: 0 3px 14px 0 rgba(41,81,89,.09);
  padding: 0 24px;
  cursor: pointer;
  transition: background .18s cubic-bezier(.44,0,.2,1), box-shadow .16s;
  margin-left: 18px;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: "";
  display: block;
  position: absolute;
  left: -70px; top: 50%;
  width: 45px; height: 120%;
  background: rgba(201,178,90,0.18);
  transform: skewX(-20deg) translateY(-50%);
  opacity: .0;
  pointer-events: none;
  transition: opacity .15s, left .32s cubic-bezier(.45,0,.2,1);
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(86deg, #3AD8C6 0%, #C9B25A 95%);
  color: #295159;
  box-shadow: 0 7px 32px 0 rgba(41,81,89,0.15);
}
.cta-btn:hover::after,
.cta-btn:focus::after {
  opacity: .6;
  left: 120%;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mpwm-accent);
  color: #233F44;
  font-size: 2.2rem;
  border-radius: 8px;
  border: none;
  min-width: 42px;
  min-height: 42px;
  margin-left: 20px;
  cursor: pointer;
  transition: background .14s;
  z-index: 1201;
}
.mobile-menu-toggle:hover {
  background: #FFD205;
}

@media (min-width: 1021px) {
  .mobile-menu-toggle { display: none; }
}

/* Hamburger and menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #233F44;
  box-shadow: 4px 0 40px 0 rgba(41,81,89,0.13);
  transform: translateX(-100vw);
  transition: transform .39s cubic-bezier(.6,0,.17,1);
  z-index: 2000;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 32px;
  top: 30px;
  background: none;
  color: var(--mpwm-accent-neon);
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  z-index: 2010;
  transition: color .17s;
}
.mobile-menu-close:hover { color: #FFD205; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 88px;
  width: 100%;
  align-items: flex-start;
  padding-left: 40px;
}
.mobile-nav a {
  color: var(--mpwm-light);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.17rem;
  padding: 8px 0;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background .16s, color .16s;
  display: inline-block;
  width: auto;
  min-width: 80vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--mpwm-accent);
  background: rgba(58,216,198,0.08);
}

@media (min-width:1021px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}
@media (max-width: 1020px) {
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    margin-left: 10px;
    font-size: 0.95rem;
    padding: 0 15px;
    min-width: 100px;
  }
}

/* ===================================
   HERO SECTION (Tech-Futuristic look)
   =================================== */
.hero {
  background: linear-gradient(112deg, #233F44 55%, #3AD8C6 100%);
  padding: 70px 0 48px 0;
  margin-bottom: 60px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 45px 180px -60px #3AD8C6bb;
  color: #fff;
  min-height: 220px;
}
.hero .container, .hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
}
.hero h1 { color: #fff; background-clip: unset; }
.hero p {
  color: #e8f7f4;
  font-size: 1.27rem;
}
.hero .cta-btn {
  background: linear-gradient(97deg, #3AD8C6 0%, #FFD205 95%);
  color: #1c2d2f;
  text-shadow: 0 4px 16px #fff4;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: linear-gradient(97deg, #FFD205 0%, #3AD8C6 65%);
  color: #295159;
}

/* ====================
   FEATURES GRID
   ==================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.features-grid > div {
  background: #fff;
  padding: 32px 28px;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(41,81,89,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  flex: 1 1 220px;
  position: relative;
  min-height: 215px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .14s;
  border: 1.5px solid transparent;
}
.features-grid > div:hover {
  box-shadow: 0 8px 40px 0 #C9B25A44, 0 6px 44px 0 #3AD8C655;
  border-color: var(--mpwm-accent);
  transform: translateY(-5px) scale(1.03);
}
.features-grid img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 3px 15px rgba(58,216,198,0.18));
}
.features-grid h3 {
  font-size: 1.22rem;
  color: #295159;
}
.features-grid p {
  color: #295159;
  font-size: 1.01rem;
}
@media (max-width: 900px) {
  .features-grid > div {
    min-width: 170px;
    padding: 25px 12px;
  }
}
@media (max-width:600px) {
  .features-grid {
    flex-direction: column;
    gap: 22px;
  }
  .features-grid > div {
    width: 100%;
    min-width: unset;
    min-height: 110px; 
  }
}

.section h2 {
  margin-bottom: 18px;
}

/* ====================
   SERVICE LISTS, FAQ
   ==================== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 25px;
}
.service-list li {
  padding: 20px 18px 17px 18px;
  margin-bottom: 10px;
  background: #eaf6f5;
  border: 1.5px solid #3AD8C6;
  border-radius: 13px;
  color: #295159;
  font-size: 1.07rem;
  position: relative;
  box-shadow: 0 3px 23px 0 rgba(58,216,198,0.06);
  transition: border-color .13s, box-shadow .13s;
}
.service-list li span {
  color: #C9B25A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-left: 8px;
}
.service-list li:hover {
  border-color: #C9B25A;
  box-shadow: 0 8px 34px 0 #C9B25A18;
}

.newsletter-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.newsletter-form label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.newsletter-form input[type="email"] {
  border-radius: 10px;
  border: 1px solid #295159;
  padding: 10px 17px;
  font-size: 1rem;
  color: #233F44;
  background: #fff;
  margin-right: 6px;
  transition: border-color .18s;
  min-width: 0;
}
.newsletter-form input[type="email"]:focus {
  border-color: #3AD8C6;
}
.newsletter-form button {
  background: linear-gradient(94deg, #295159 0%, #C9B25A 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 9px;
  cursor: pointer;
  letter-spacing: .05em;
  transition: background .14s;
  min-width: 110px;
}
.newsletter-form button:hover {
  background: linear-gradient(94deg, #FFD205 0%, #3AD8C6 100%);
  color: #295159;
}
@media (max-width:600px) {
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
  }
  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    min-width: 0;
  }
}

/* =============================
   CARD & FLEX UTILITY CLASSES
   ============================= */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 7px 34px 0 rgba(41,81,89,0.08);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow .13s, transform .14s;
  border: 1.3px solid #F6F7F5;
}
.card:hover {
  box-shadow: 0 10px 36px 0 #3AD8C644, 0 5px 32px 0 #C9B25A25;
  border-color: #3AD8C6;
  transform: translateY(-3px) scale(1.02);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 23px 24px;
}
.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) {
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

/* ==============================
   TABLES (PRICING)
   ============================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  background: #fff;
  box-shadow: 0 2px 18px 0 #3ad8c60b;
  border-radius: 12px;
  overflow: hidden;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid #F6F7F5;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
}
.pricing-table th {
  background: #eaf6f5;
  color: #295159;
  font-weight: 700;
  letter-spacing: .02em;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:hover td {
  background: #fcfaee;
}

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 27px;
  background: #fff;
  color: #233F44;
  border-radius: 14px;
  border: 1.7px solid #C9B25A;
  box-shadow: 0 8px 36px 0 #3ad8c621, 0 4px 20px 0 #c9b25a13;
  font-size: 1.12rem;
  min-width: 280px;
  max-width: 410px;
  min-height: 110px;
  margin-bottom: 20px;
  transition: border-color .15s, box-shadow .14s;
}
.testimonial-card p {
  color: #295159;
  font-style: italic;
  font-size: 1.01rem;
}
.testimonial-card strong {
  color: #295159;
}
.testimonial-card span {
  color: #233F44;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-color: #3AD8C6;
  box-shadow: 0 10px 50px 0 #3ad8c632, 0 8px 36px 0 #C9B25A10;
}
@media (max-width: 900px) {
  .testimonials-list {
    flex-direction: column;
    gap: 14px;
  }
}

/* ==============================
   CTA SECTION
   ============================== */
.cta {
  background: linear-gradient(112deg, #232e44 59%, #3AD8C6 100%);
  color: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 30px 90px -40px #3AD8C699;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 0;
}
.cta h2 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 2.1rem;
  letter-spacing: .04em;
}
.cta p {
  color: #fcfaee;
}
.cta .cta-btn {
  margin-top: 22px;
  background: linear-gradient(97deg, #FFD205 0%, #3AD8C6 95%);
  color: #295159;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: linear-gradient(97deg, #3AD8C6 0%, #FFD205 95%);
  color: #fff;
}

/* ==============================
   FOOTER
   ============================== */
footer {
  background: #233F44;
  color: #fff;
  padding: 48px 0 16px 0;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 23px;
  margin: 18px 0 10px 0;
}
.footer-nav a {
  color: #3AD8C6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .05em;
  font-weight: 500;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #C9B25A; }
footer p {
  color: #f3f7fa;
  font-size: 0.94rem;
  text-align: center;
}
footer .logo img { width: 62px; }

/* ===========================
   MODALS, BANNERS, COOKIES
   =========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2100;
  background: #295159;
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  box-shadow: 0 -5px 40px 0 #3ad8c625;
  font-size: 1.1rem;
  gap: 22px;
  min-height: 70px;
  animation: cookies-slideIn .95s cubic-bezier(.71,0,.34,1) 1;
}
@keyframes cookies-slideIn {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  background: #C9B25A;
  color: #295159;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 7px 19px;
  margin-left: 8px;
  border-radius: 8px;
  margin-bottom: 4px;
  cursor: pointer;
  transition: background .15s, color .15s;
  min-width: 110px;
  border: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFD205;
  color: #233F44;
}
.cookie-banner button.reject-btn {
  background: #da3633;
  color: #fff;
  margin-left: 12px;
}
.cookie-banner button.reject-btn:hover,
.cookie-banner button.reject-btn:focus {
  background: #ff5252;
  color: #fff;
}
.cookie-banner button.settings-btn {
  background: #3AD8C6;
  color: #233F44;
  margin-left: 12px;
}
.cookie-banner button.settings-btn:hover,
.cookie-banner button.settings-btn:focus {
  background: #295159;
  color: #fff;
}

.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(31,33,45,0.74);
  z-index: 2500;
  display: flex; align-items: center; justify-content: center;
  animation: cookieModalFadeIn .25s cubic-bezier(.52,0,.16,1);
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #295159;
  padding: 38px 28px 28px 28px;
  border-radius: 16px;
  min-width: 320px;
  max-width: 95vw;
  min-height: 100px;
  box-shadow: 0 10px 80px 0 #3AD8C622, 0 3px 21px 0 #C9B25A18;
  z-index: 2600;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  margin: 0 auto;
}
.cookie-modal h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #295159;
  margin-bottom: 8px;
}
.cookie-modal section {
  margin-bottom: 13px;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
/* Toggle switch for categories */
.cookie-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 16px;
}
.cookie-switch input[type="checkbox"] {
  width: 34px; height: 19px;
  appearance: none;
  background: #ECECEC;
  border-radius: 13px;
  position: relative;
  outline: none; border: none;
  transition: background .14s;
  cursor: pointer;
}
.cookie-switch input[type="checkbox"]:checked {
  background: #3ad8c6;
}
.cookie-switch input[type="checkbox"]:before {
  content: "";
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px #2d536d21;
  transition: left .16s cubic-bezier(.39,.47,.21,1.02), box-shadow .13s;
}
.cookie-switch input[type="checkbox"]:checked:before {
  left: 17px;
  background: #C9B25A;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 18px; top: 13px;
  background: none;
  color: #da3633;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: color .13s;
}
.cookie-modal .modal-close:hover { color: #ff5252; }
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .modal-actions button {
  min-width: 100px;
  padding: 8px 19px;
}

@media (max-width:840px) {
  .cookie-modal { min-width: 96vw; padding: 18px 2vw; }
}

/* ===========================
   FLEX UTILITIES for SECTIONS
   =========================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.project-overview {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.project-overview .text-section {
  background: #fff;
  border-radius: 12px;
  padding: 23px 20px 18px 20px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  min-width: 290px;
  box-shadow: 0 4px 22px 0 #3ad8c60b;
}
@media (max-width:900px) {
  .project-overview {
    flex-direction: column;
    gap: 15px;
  }
}

.article-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.article-list .text-section {
  flex: 1 1 280px;
  min-width: 230px;
  background: #fff;
  border-radius: 13px;
  padding: 25px 18px;
  box-shadow: 0 2px 22px 0 #3ad8c60a;
}
@media (max-width:800px) {
  .article-list {
    flex-direction: column;
    gap: 14px;
  }
}

/* ===========================
   TEXT & LISTS SECTION STYLE
   =========================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.text-section ul {
  padding-left: 18px;
  margin-top: 3px;
  color: #295159;
}
.text-section li {
  list-style-type: disc;
  line-height: 1.62;
  font-size: 1rem;
  margin-bottom: 4px;
}

/* ===========================
   Responsive adjustments
   =========================== */
@media (max-width:900px) {
  .container { max-width: 95vw; }
}
@media (max-width:600px) {
  .container { max-width: 100vw; }
  .section { padding: 24px 4vw; margin-bottom: 44px; }
  .hero { padding: 43px 0 27px 0; }
  footer { padding: 25px 0 9px 0; }
  .footer-nav { gap: 14px; font-size:0.9rem; }
}

/* ===========================
   FORM ELEMENTS & BUTTONS
   =========================== */
input[type="email"], input[type="text"], input[type="password"], textarea {
  background: #fff;
  border-radius: 9px;
  border: 1.5px solid #295159;
  padding: 10px 18px;
  font-size: 1rem;
  color: #233F44;
  transition: border-color .17s;
  margin-bottom: 14px;
  min-width: 0;
}
input:focus, textarea:focus {
  border-color: #3AD8C6;
}
button, .button {
  background: linear-gradient(96deg, #295159 0%, #C9B25A 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: .01em;
  box-shadow: 0 3px 19px 0 #3ad8c60a;
  transition: background .17s, color .12s;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: linear-gradient(97deg, #C9B25A 0%, #3AD8C6 90%);
  color: #233F44;
}

/* ===========================
   OTHER MICRO-INTERACTIONS
   =========================== */
.card, .testimonial-card, .features-grid > div {
  transition: box-shadow .19s cubic-bezier(.47,.11,.49,1), border-color .13s;
}
.service-list li, .pricing-table tr:hover {
  transition: background .14s, border .13s;
}

/* Accessibility improvement for focus states */
a:focus, button:focus {
  outline: 2px solid #3AD8C6;
  outline-offset: 2px;
  z-index: 100;
}

/* ===========================
   PRINT STYLES
   =========================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff !important; color: #233F44 !important; }
}
