/* === CSS RESET & NORMALIZATION === */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1C2739;
  background: linear-gradient(135deg, #E7E9ED 0%, #F7A800 100%); /* gentle brand gradient */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #1C2739;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7A800;
}
ul, ol {
  padding-left: 22px;
}
strong {
  font-weight: 600;
  color: #1C2739;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #1C2739;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol {
  margin-bottom: 14px;
  font-size: 1rem;
}

em {
  color: #F7A800;
  font-style: normal;
}


/* === LAYOUT CONTAINERS & SECTIONS === */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: linear-gradient(120deg, #fff 60%, #E7E9ED 100%);
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(28, 39, 57, 0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* === FLEX PATTERNS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(28, 39, 57, 0.09);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 22px 0 rgba(28, 39, 57, 0.17);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER === */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(28, 39, 57, 0.07);
  position: relative;
  z-index: 20;
}
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 16px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #1C2739;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F7A800;
  border-bottom: 2px solid #F7A800;
}
.cta-btn {
  background: linear-gradient(90deg, #F7A800 60%, #E7E9ED 100%);
  color: #1C2739;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 11px 28px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(247, 168, 0, 0.09);
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  text-align: center;
  display: inline-block;
  letter-spacing: 0.014em;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #E7E9ED 10%, #F7A800 90%);
  color: #1C2739;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px 0 rgba(247, 168, 0, 0.26);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2em;
  color: #1C2739;
  cursor: pointer;
  z-index: 101;
  margin-left: 10px;
  position: relative;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F7A800;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28, 39, 57, 0.91);
  z-index: 2000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  overflow-y: auto;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5em;
  margin: 24px 22px 12px 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
  margin-right: 40px;
  margin-top: 24px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 10px 0 10px 16px;
  border-radius: 6px;
  min-width: 180px;
  transition: background 0.16s, color 0.16s;
  text-align: right;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7A800;
  color: #1C2739;
}

/* Show mobile burger icon, hide nav on small screens */
@media (max-width: 970px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Make sure cta-btn is always visible in header */
@media (max-width: 550px) {
  .cta-btn {
    font-size: 1rem;
    padding: 9px 22px;
  }
  .container.nav-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* === FEATURES & GRIDS === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0;
  margin-bottom: 20px;
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 13px;
  padding: 14px 16px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1C2739;
  box-shadow: 0 2px 12px rgba(28,39,57,0.0507);
  font-size: 1.07rem;
  font-weight: 500;
  min-width: 220px;
}
.feature-grid img {
  width: 34px;
  height: 34px;
}

/* === SERVICE LISTS === */
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1rem;
  margin: 0 0 24px 0;
}
.service-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px 0 rgba(28,39,57,0.06);
  padding: 20px 18px;
  color: #1C2739;
  transition: box-shadow 0.17s;
}
.service-list li strong {
  font-size: 1.06rem;
  color: #1C2739;
  margin-bottom: 4px;
  display: inline-block;
}
.service-list li em {
  font-weight: 600;
  float: right;
  font-style: normal;
  color: #F7A800;
  margin-left: 5px;
}

.service-benefits {
  list-style: disc inside;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 0 0;
  color: #1C2739;
}

/* === CARDS & TESTIMONIALS === */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(28,39,57,0.10);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  color: #222;
  font-size: 1.04rem;
  min-width: 270px;
  max-width: 475px;
  transition: box-shadow 0.17s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 26px 0 rgba(28,39,57,0.16);
  transform: scale(1.015);
}
.testimonial-card p {
  margin: 0 0 4px 0;
}
.testimonial-card strong {
  color: #1C2739;
  font-weight: 600;
  font-size: 1rem;
}

/* === FOOTER === */
footer {
  background: #1C2739;
  color: #fff;
  padding: 46px 0 26px 0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 28px;
}
.footer-menu a {
  color: #F7A800;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #E7E9ED;
}
.company-info {
  margin-top: 12px;
  font-size: 0.98rem;
}
.social-links {
  display: flex;
  gap: 18px;
  margin-bottom: 1.5em;
}
.social-links a {
  color: #fff;
  transition: filter 0.18s, transform 0.17s;
  display: inline-block;
}
.social-links a:hover, .social-links a:focus {
  filter: brightness(1.7);
  transform: scale(1.10);
}
.social-links img {
  width: 32px;
  height: 32px;
}

/* === SPACING BETWEEN SECTIONS & ELEMENTS === */
section {
  margin-bottom: 60px;
  padding: 40px 0px;
}
section:last-child {
  margin-bottom: 0;
}
.content-wrapper > * + * {
  margin-top: 16px;
}
.content-wrapper {
  gap: 24px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .container {
    max-width: 97vw;
    padding: 0 12px;
  }
}
@media (max-width: 890px) {
  .feature-grid {
    gap: 16px;
  }
  .service-list li {
    padding: 15px 11px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .main-nav, .footer-menu {
    gap: 18px;
  }
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.21rem;
  }
  .feature-grid, .footer-menu, .card-container, .content-grid {
    gap: 12px;
  }
  .testimonial-card {
    font-size: 0.97rem;
    min-width: 170px;
    padding: 17px 9px;
  }
  .card {
    padding: 15px 7px;
  }
  .section, section {
    padding: 30px 0 25px 0;
  }
  .content-wrapper, .service-list {
    gap: 14px;
  }
  .social-links img {
    width: 28px; height: 28px;
  }
}
@media (max-width: 650px) {
  .feature-grid li {
    font-size: 0.93rem;
    min-width: 140px;
    padding: 10px 7px;
  }
  .cta-btn {
    padding: 10px 16px;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 2vw;
  }
  h1 {
    font-size: 1.19rem;
    margin-bottom: 13px;
  }
  h2 {
    font-size: 1rem;
    margin-bottom: 9px;
  }
  .feature-grid li, .testimonial-card, .card {
    font-size: 0.85rem;
  }
  .mobile-nav {
    margin-right: 8px;
    gap: 17px;
  }
  .mobile-menu-close {
    font-size: 2em;
    margin: 18px 4px 4px 0;
  }
}

/* === FLEX LAYOUT ADJUSTMENTS FOR MOBILE === */
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #fff 60%, #E7E9ED 100%);
  color: #1C2739;
  box-shadow: 0 -3px 32px 0 rgba(28,39,57,0.13);
  padding: 22px 16px 16px 16px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  transform: translateY(140%);
}
.cookie-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
  justify-content: center;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F7A800;
  color: #1C2739;
  border: none;
  border-radius: 29px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(247,168,0,0.07);
  transition: background 0.18s, color 0.2s, box-shadow 0.18s;
  outline: none;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  color: #fff;
  background: #1C2739;
  box-shadow: 0 3px 14px 0 rgba(247,168,0,0.18);
}

/* === COOKIE MODAL === */
.cookie-modal-bg {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(28,39,57,0.56);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fadeIn 0.24s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 6px 36px 0 rgba(28,39,57,0.17);
  padding: 32px 25px 24px 25px;
  max-width: 360px;
  min-width: 240px;
  color: #1C2739;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: slideUp 0.33s cubic-bezier(.77,0,.18,1);
}
@keyframes slideUp {
  from { transform: translateY(70px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.cookie-modal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-size: 1rem;
}
.cookie-switch {
  appearance: none;
  background: #E7E9ED;
  width: 40px;
  height: 23px;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-switch:checked {
  background: #F7A800;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.28s;
}
.cookie-switch:checked:before {
  transform: translateX(15px);
}
.cookie-modal .modal-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.modal-btn {
  background: #F7A800;
  color: #1C2739;
  border: none;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 19px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.modal-btn.dismiss {
  background: #E7E9ED;
  color: #5d6b84;
}
.modal-btn:hover, .modal-btn:focus {
  background: #1C2739;
  color: #fff;
}

/* === INPUTS RESET (if any forms appear) === */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}
button, .cta-btn, .cookie-btn, .modal-btn {
  cursor: pointer;
}

/* === MISC === */
::-webkit-scrollbar {
  width: 9px;
  background: #E7E9ED;
}
::-webkit-scrollbar-thumb {
  background: #D4D8E2;
  border-radius: 7px;
}

/* ===== END OF STYLE ===== */
