/* === CSS RESET (Normalize & Reset) === */
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, 
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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  width: 100%;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #FAF9F6;
  color: #272D37;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #094067;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:focus {
  outline: 2px dashed #FBCB40;
}
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, ::placeholder {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #A4A9AD;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #094067;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.13;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.38rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

p, ul, ol, address {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
  color: #094067;
}

ul, ol {
  margin-left: 24px;
  list-style-position: outside;
  color: #505A61;
  margin-bottom: 24px;
}
li {
  margin-bottom: 12px;
}

blockquote {
  font-style: italic;
  color: #272D37;
  padding-left: 18px;
  border-left: 4px solid #FBCB40;
  margin-bottom: 12px;
}
cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 0.96rem;
  color: #626F80;
}

/* === CONTAINER & LAYOUT STRUCTURE === */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 3px 24px rgba(240,192,120,0.07);
}

@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section, section {
    padding: 24px 6px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
}

/* === HEADER & NAVIGATION === */
header {
  background: #094067;
  color: #FFF;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 2px 12px 0 rgba(9,64,103,.1);
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  position: relative;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  height: 48px;
  border-radius: 10px;
  background: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  padding: 7px 16px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FBCB40;
  color: #094067;
}
.cta-btn {
  background-color: #FBCB40;
  color: #094067;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 11px 28px;
  border-radius: 32px;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 3px 9px rgba(251,203,64,0.11);
  cursor: pointer;
  text-decoration: none;
  margin-left: 10px;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
}
.cta-btn:hover, .cta-btn:focus {
  background-color: #FFD86B;
  color: #094067;
  box-shadow: 0 10px 32px rgba(251,203,64,0.13);
}
.cta-btn-secondary {
  background: #90B4CE;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 32px;
  padding: 11px 30px;
  border: none;
  margin-top: 14px;
  box-shadow: 0 3px 8px rgba(144,180,206,0.10);
  text-decoration: none;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
}
.cta-btn-secondary:hover, .cta-btn-secondary:focus {
  background: #A1C2D8;
  color: #094067;
  box-shadow: 0 10px 32px rgba(144,180,206,0.13);
}

@media (max-width: 1024px) {
  header .container{ flex-direction: column; align-items: flex-start; gap: 10px; }
  .main-nav{ flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 768px) {
  .main-nav, .cta-btn {
    display: none;
  }
  header .container {
    align-items: center;
  }
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: #FBCB40;
  color: #094067;
  font-size: 2.1rem;
  border: none;
  border-radius: 12px;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1002;
  padding: 7px 17px 7px 13px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(251, 203, 64, 0.10);
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FFD86B;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  z-index: 1600;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.77,0.2,0.05,1.0);
  box-shadow: 2px 0 32px 0 rgba(9,64,103, 0.15);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #094067;
  font-size: 2.2rem;
  border: none;
  position: absolute;
  top: 23px;
  right: 23px;
  z-index: 1610;
  cursor: pointer;
  border-radius: 8px;
  padding: 2px 12px 2px 8px;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FBCB40;
  color: #094067;
}
.mobile-nav {
  margin-top: 84px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  padding-left: 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  color: #094067;
  font-weight: 600;
  margin: 2px 0;
  border-radius: 10px;
  padding: 12px 10px 12px 2px;
  transition: background 0.16s, color 0.16s;
  min-width: 180px;
  display: inline-block;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FBCB40;
  color: #094067;
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* === FOOTER === */
footer {
  margin-top: 60px;
  background: #ECECEC;
  color: #094067;
  padding: 32px 0 12px 0;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 16px rgba(9,64,103,.08);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
  justify-content: center;
  font-size: 1rem;
}
.footer-nav a{
  color: #094067;
  background: #FBCB40;
  padding: 5px 16px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.12s, color 0.12s;
  text-decoration: none;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFD86B;
  color: #272D37;
}
.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: .96rem;
}
.footer-info img {
  height: 32px;
  width: auto;
}

/* === HERO / INTRO SECTIONS === */
.hero, .it-support-hero, .security-hero, .cloud-hero, .thank-you-confirmation, .about-intro {
  background: #FEEFCF;
  border-radius: 25px;
  box-shadow: 0 8px 36px rgba(251,203,64,0.07);
  margin-bottom: 60px;
  padding: 40px 20px 50px 20px;
}
.hero h1, .about-intro h1, .security-hero h1, .it-support-hero h1, .cloud-hero h1, .thank-you-confirmation h1 {
  color: #094067;
}

/* === SECTIONS (with spacing requirements) === */
.features, .services-overview, .usp, .service-list, .contact-main, .contact-team, .cloud-benefits, .cloud-services, .security-benefits, .security-services, .testimonials, .contact-teaser, .about-intro, .why-choose, .gdpr-compliance, .privacy-policy, .cookie-policy, .terms-of-use, .service-cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 24px rgba(144,180,206,0.07);
}
@media (max-width: 768px) {
  .features, .services-overview, .usp, .service-list, .contact-main, .contact-team, .cloud-benefits, .cloud-services, .security-benefits, .security-services, .testimonials, .contact-teaser, .about-intro, .why-choose, .gdpr-compliance, .privacy-policy, .cookie-policy, .terms-of-use, .service-cta {
    margin-bottom: 36px;
    padding: 16px 5px;
    border-radius: 12px;
  }
}

/* SECTION UTILITIES FOR FLEX LAYOUT */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 2px 8px rgba(144,180,206,0.07);
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 370px;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFFAEA;
  border-radius: 18px;
  box-shadow: 0 1px 10px rgba(251,203,64,0.13);
  margin-bottom: 22px;
  color: #272D37;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* USP GRID FLEX VERSION */
.usp-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px 36px;
  margin-top: 20px;
}
.usp-icon {
  width: 42px;
  min-width: 42px;
  align-self: flex-start;
  margin-top: 5px;
}
.usp-text {
  display: flex;
  align-items: center;
  font-size: 1.09rem;
  color: #272D37;
  margin-right: 16px;
  background: #FCF6E0;
  padding: 8px 14px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .usp-grid {
    flex-direction: column;
    gap: 15px 0;
  }
  .usp-text { margin-right: 0; }
}

/* MAP PLACEHOLDER */
.map-placeholder {
  background: #ECECEC;
  color: #949A9E;
  border-radius: 15px;
  padding: 26px;
  font-size: 1rem;
  font-style: italic;
  display: flex;
  align-items: center;
  height: 90px;
  margin: 10px 0 22px 0;
}

/* === SERVICE LIST STYLES === */
.service-list ul, .services-overview ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 10px;
}
.service-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #FAF6ED;
  border-radius: 14px;
  padding: 18px 18px 14px 18px;
  box-shadow: 0 1px 6px rgba(251,203,64,0.06);
  margin-bottom: 7px;
}
.service-list h3 {
  margin-bottom: 2px;
}
.service-list span {
  color: #FBCB40;
  font-weight: 600;
}

/* === TESTIMONIALS === */
.testimonials .testimonial-card {
  background: #FFFAEA;
  color: #272D37;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(251,203,64,0.09);
  border-left: 8px solid #FBCB40;
}

/* === FEATURE/BENEFIT LISTS === */
.features ul, .it-support-services ul, .it-support-benefits ul, .security-services ul, .security-benefits ul, .why-choose ul, .team-expertise ul, .certifications ul, .cloud-services ul, .cloud-benefits ul, .service-list ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 18px;
}

/* === ICONS IN CLOUD BENEFITS === */
.cloud-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F9F5EC;
  padding: 10px 16px;
  border-radius: 12px;
  margin-bottom: 6px;
}
.cloud-benefits img {
  width: 32px;
  height: 32px;
}

/* === ADDRESS === */
address {
  font-style: normal;
  color: #272D37;
  background: #FCF6E0;
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 1rem;
}
address a {
  color: #094067;
  font-weight: 600;
  word-break: break-all;
}
address a:hover { color: #FBCB40; }

/* === COOKIE CONSENT === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe9;
  color: #272D37;
  padding: 28px 16px 18px 16px;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -1px 24px 1px rgba(251,203,64,0.13);
  border-radius: 18px 18px 0 0;
  gap: 30px;
  transition: transform 0.3s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.24s;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(200%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btn {
  margin-left: 12px;
  min-width: 130px;
  height: 44px;
  background: #FBCB40;
  color: #094067;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  margin-bottom: 6px;
  margin-right: 3px;
  box-shadow: 0 2px 7px rgba(251,203,64,0.12);
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #FFD86B;
}
.cookie-banner .cookie-btn-secondary {
  background: #ECECEC;
  color: #094067;
  border: 1px solid #90B4CE;
}
.cookie-banner .cookie-btn-secondary:hover {
  background: #F6F6F6;
  color: #094067;
}
.cookie-banner strong { color: #094067; }

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 16px 3px 12px 3px;
    font-size: 0.99rem;
  }
}

/* COOKIE CONSENT MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,41,55, 0.35);
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  min-width: 320px;
  max-width: 97vw;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 34px rgba(9,64,103,0.23);
  padding: 30px 28px 30px 28px;
  z-index: 3020;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookie-modal-appear 0.28s ease-in;
}
@keyframes cookie-modal-appear {
  from { transform: translateY(30px) scale(0.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #FBCB40;
  margin-right: 5px;
}
.cookie-category label {
  font-size: 1.01rem;
  color: #094067;
  font-weight: 600;
  margin-right: 12px;
}
.cookie-category .always-on {
  color: #A4A9AD;
  font-style: italic;
  font-size: .9em;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  min-width: 110px;
  height: 38px;
  background: #FBCB40;
  color: #094067;
  border: none;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal-actions .cookie-btn-secondary {
  background: #ECECEC;
  color: #094067;
}
.cookie-modal-actions button:hover,
.cookie-modal-actions button:focus {
  background: #FFD86B;
  color: #094067;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 16px 7px 14px 7px;
    min-width: 0;
  }
}

/* === FORMS (if present in future) === */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1.5px solid #90B4CE;
  border-radius: 11px;
  margin-bottom: 18px;
  color: #272D37;
  background: #FFF;
  box-shadow: 0 1px 6px rgba(144,180,206,0.07);
  transition: border-color 0.14s, box-shadow 0.14s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #FBCB40;
  box-shadow: 0 2px 8px rgba(251,203,64,0.13);
}
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  background-color: #FBCB40;
  color: #094067;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: #FFD86B;
}

/* === GENERAL CARDS === */
.card {
  background: #fff;
  box-shadow: 0 3px 20px rgba(251,203,64,0.03);
  border-radius: 18px;
  margin-bottom: 20px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* === RESPONSIVE FLEX DIRECTION === */
.text-image-section,
.content-grid,
.card-container,
.features ul,
.service-list ul {
  flex-direction: row;
}
@media (max-width: 768px) {
  .text-image-section,
  .content-grid,
  .card-container,
  .features ul,
  .service-list ul {
    flex-direction: column !important;
    gap: 16px !important;
  }
}

/* === SPACING OVERRIDES === */
.card-container, .content-grid, .features, .testimonials, .services-overview, .usp {
  gap: 24px;
}
.features ul, .service-list ul, .testimonials {
  gap: 20px;
}

/* === UTILITIES & MISC === */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2px !important; }
.mb-2 { margin-bottom: 2px !important; }
.mt-8 { margin-top: 8px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.gap-20 { gap: 20px !important; }

/* === SHADOWS AND DEPTH === */
.shadow-xl { box-shadow: 0 12px 54px rgba(251,203,64,0.08) !important; }
.shadow-md { box-shadow: 0 3px 16px rgba(251,203,64,0.10) !important; }

/* === SCROLLBAR STYLES === */
::-webkit-scrollbar {
  width: 12px;
  background: #ECECEC;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #90B4CE;
  border-radius: 8px;
}

/* === FOCUS VISIBLE === */
:focus-visible {
  outline: 2px dashed #FBCB40;
  outline-offset: 2px;
}

/* === MEDIA QUERIES FOR MOBILE HEADINGS & TEXT === */
@media (max-width: 600px) {
  h1 { font-size: 1.60rem; }
  h2 { font-size: 1.24rem; }
  h3 { font-size: 1.06rem; }
  .footer-nav, .footer-info { font-size: 0.97rem; }
}

/* === MICRO-INTERACTIONS === */
.cta-btn, .cta-btn-secondary, .footer-nav a, .main-nav a, .mobile-nav a, button, input[type="submit"] {
  transition: background 0.17s, color 0.17s, box-shadow 0.19s, transform 0.16s;
}
.cta-btn:active, .cta-btn-secondary:active, .footer-nav a:active, .main-nav a:active,
.mobile-nav a:active, button:active, input[type="submit"]:active {
  transform: scale(0.97);
  box-shadow: 0 3px 12px rgba(251,203,64,0.11);
}

/* === Z-INDEX LAYERS === */
header { z-index: 100; }
.mobile-menu { z-index: 1600; }
.mobile-menu-toggle { z-index: 1700; }
.cookie-banner { z-index: 3000; }
.cookie-modal-backdrop { z-index: 3010; }

/* === HIDE / SHOW ON BREAKPOINTS ===*/
@media (min-width: 769px) {
  .main-nav, .cta-btn { display: flex !important; }
}

/* === END OF MAIN STYLES === */
