/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F6F5F3;
  color: #0F3057;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/* BRAND VARIABLES */
:root {
  --primary: #0F3057;
  --secondary: #2A9134;
  --accent: #F6F5F3;
  --gray: #dedede;
  --danger: #d9534f;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --radius: 12px;
  --shadow: 0 2px 16px 0 rgba(15, 48, 87, 0.14);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, li, a, span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #212529;
}
p.lead {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 24px;
}
strong {
  font-weight: 700;
}
.hint {
  font-size: 0.9rem;
  color: #606060;
}

/* CONTAINER AND FLEX LAYOUTS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  min-width: 250px;
  max-width: 350px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f4f7fa;
  border: 2px solid var(--secondary);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 rgba(40,60,90,0.04);
  margin-bottom: 24px;
  min-width: 260px;
  max-width: 600px;
  color: #171b23;
}
.testimonial-card p {
  font-family: var(--font-body);
  font-style: italic;
  color: #212529;
  font-size: 1.08rem;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(15, 48, 87,0.07);
  z-index: 70;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 0 12px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.btn-primary {
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.125rem;
  border-radius: 7px;
  padding: 12px 32px;
  box-shadow: 0 4px 16px 0 rgba(40, 140, 80, 0.08);
  transition: background 0.18s, color 0.18s, transform 0.12s;
  border: none;
  display: inline-block;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: var(--accent);
  transform: translateY(-2px) scale(1.025);
}
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 2rem;
  padding: 6px 15px;
  border-radius: 9px;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.14s, color 0.14s, border 0.14s;
  z-index: 105;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--accent);
  border-color: var(--secondary);
  color: var(--secondary);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 0 100vw rgba(15, 48, 87, 0.07);
  z-index: 3000;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.76,.21,.29,.98);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  box-shadow: 0 0 0 100vw rgba(15, 48, 87, 0.10);
}
.mobile-menu-close {
  font-size: 2.25rem;
  background: none;
  border: none;
  color: var(--primary);
  padding: 16px 20px 8px 16px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 16px 30px;
  width: 100vw;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.275rem;
  color: var(--primary);
  padding: 10px 8px;
  border-radius: 5px;
  width: 100%;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(-8deg, #f6f5f3 60%, #e3eaed 100%);
  border-bottom: 4px solid var(--secondary);
  display: flex;
  align-items: center;
  min-height: 380px;
  justify-content: flex-start;
  padding: 56px 0 42px 0;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 240px;
    padding: 32px 0 28px 0;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}

/* FEATURES SECTION */
.features-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 30px 0 rgba(15, 48, 87,0.07);
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.feature-card {
  background: #f6fbf7;
  border: 2.4px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  min-width: 260px;
  max-width: 370px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.13s;
}
.feature-card img {
  width: 40px;
  height: 40px;
}
.feature-card:hover {
  box-shadow: 0 6px 32px 0 rgba(15,48,87,0.15);
  border-color: var(--secondary);
  transform: translateY(-7px) scale(1.015);
}

/* GENERIC CARDS / CARD GRIDS */
.service-list, .partner-list, .industry-grid, .news-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card, .partner-card, .industry-card, .news-article {
  background: #fff;
  border: 2.4px solid var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  flex: 1 1 275px;
  min-width: 240px;
  max-width: 370px;
  margin-bottom: 20px;
  position: relative;
  transition: border-color 0.14s, box-shadow 0.16s, transform 0.12s;
}
.service-card:hover, .partner-card:hover, .industry-card:hover, .news-article:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 34px 0 rgba(42,145,52, 0.07);
  transform: translateY(-5px) scale(1.01);
}

/* ABOUT/VALUES/TEAM */
.values-section ul, .industry-highlights ul, .partnership-benefits ul, .case-briefs ul, .event-announcements ul {
  padding-left: 22px;
  margin-top: 8px;
}
.values-section li, .industry-highlights li, .partnership-benefits li, .case-briefs li, .event-announcements li {
  font-size: 1.04rem;
  margin-bottom: 8px;
  padding-left: 10px;
  position: relative;
}
.values-section li:before, .industry-highlights li:before, .partnership-benefits li:before, .case-briefs li:before, .event-announcements li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 2px;
  margin-right: 13px;
  margin-left: -21px;
  vertical-align: middle;
}
.leadership-bio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
  margin-bottom: 20px;
}
.leadership-bio {
  background: #fff;
  border-left: 5px solid var(--primary);
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow);
  padding: 18px 20px;
  flex: 1 1 340px;
  min-width: 270px;
  max-width: 480px;
  margin-bottom: 20px;
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 1.05rem;
  font-family: var(--font-body);
  color: var(--primary);
  margin-top: 18px;
}
.trust-badges img {
  vertical-align: middle;
  width: 28px;
  margin-right: 6px;
}

/* CTAs */
.cta-section {
  background: var(--secondary);
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(15,48,87, 0.09);
  margin-top: 38px;
}
.cta-section h2 {
  color: #fff;
  font-size: 2rem;
}
.cta-section .btn-primary {
  margin-top: 16px;
  background: #fff;
  color: var(--secondary);
  box-shadow: none;
}
.cta-section .btn-primary:hover, .cta-section .btn-primary:focus {
  background: var(--primary);
  color: #fff;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 210px;
}
.contact-details img {
  width: 28px;
  height: 28px;
}

/* FOOTER */
footer {
  background: #0F3057;
  color: #fff;
  padding-top: 36px;
  padding-bottom: 24px;
  border-top: 5px solid var(--secondary);
  box-shadow: 0 -3px 20px 0 rgba(15,48,87,0.05);
}
.footer-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-top: 7px;
}
.footer-nav a {
  color: #F6F5F3;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 10px;
}
.footer-contact img {
  vertical-align: text-bottom;
  width: 19px;
  margin-right: 8px;
}
footer img[alt="Evanilotri Handelspartner"] {
  height: 44px;
  border-radius: 11px;
  background: #e7f0ea;
  padding: 7px 16px;
  box-shadow: 0 1px 8px rgba(15,48,87,0.07);
}

/* LEGAL SECTIONS */
.legal-section h1, .legal-section h2, .legal-section h3 {
  margin-top: 10px;
  margin-bottom: 16px;
}
.legal-section ul {
  margin-top: 14px;
  margin-bottom: 18px;
}
.legal-section p {
  margin-bottom: 10px;
}

/* THANK-YOU SECTION */
.thank-you-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(15,48,87,.08);
  text-align: center;
  padding: 40px 24px;
}

/* ANIMATION/MICRO-INTERACTION */
.card, .feature-card, .service-card, .partner-card, .industry-card, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.10s;
}
.card:hover, .feature-card:hover, .service-card:hover, .partner-card:hover, .industry-card:hover {
  box-shadow: 0 6px 28px rgba(15,48,87,.13);
  transform: scale(1.015) translateY(-4px);
}

/* RESPONSIVE LAYOUT (MOBILE-FIRST) */
@media (max-width: 1024px) {
  .container {
    padding-left: 13px;
    padding-right: 13px;
  }
  .features-grid, .service-list, .partner-list, .industry-grid, .news-articles {
    gap: 16px;
  }
  .footer-flex {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .header-flex {
    gap: 16px;
  }
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .contact-details {
    flex-direction: column;
    gap: 19px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero-section {
    flex-direction: column;
    padding: 22px 0 24px 0;
    min-height: 136px;
  }
  .features-section, .cta-section, .thank-you-section, .about-section, .values-section, .team-section {
    padding: 24px 5px;
  }
  .features-grid, .service-list, .partner-list, .industry-grid, .news-articles {
    flex-direction: column;
    gap: 17px;
  }
  .card, .feature-card, .service-card, .partner-card, .industry-card, .news-article {
    min-width: 95%;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
  }
  .testimonial-card {
    max-width: 100%;
  }
  .leadership-bio-list {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 520px) {
  .section {
    margin-bottom: 35px;
    padding: 20px 2px;
  }
  .card, .feature-card, .service-card, .partner-card, .industry-card, .news-article {
    padding: 13px 8px;
  }
}

/* SPACING RULES */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card {
  margin-bottom: 20px;
}
.card-container, .features-grid, .service-list, .partner-list, .industry-grid, .news-articles, .leadership-bio-list {
  gap: 24px;
}
.content-grid, .text-image-section {
  gap: 20px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -2px 22px 0 rgba(15,48,87,.15);
  z-index: 50000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  font-size: 1rem;
  transition: transform 0.36s;
  border-top: 3px solid var(--secondary);
}
.cookie-banner.hide {
  transform: translateY(150%);
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--secondary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s, transform 0.13s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.04);
}
.cookie-btn.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b02c2a;
}
.cookie-btn.settings {
  background: #dddfe3;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--primary);
  color: #fff;
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 60000;
  background: rgba(15,48,87,0.15);
  justify-content: center;
  align-items: center;
  transition: background 0.22s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 15px;
  box-shadow: 0 6px 38px rgba(15,48,87,.23);
  min-width: 340px;
  max-width: 92vw;
  padding: 36px 30px 28px 30px;
  text-align: left;
  position: relative;
  font-family: var(--font-body);
  animation: fadeInModal 0.28s cubic-bezier(.6,.1,.35,1);
}
@keyframes fadeInModal {
  from {transform: translateY(40px) scale(0.96); opacity: 0;}
  to {transform: none; opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-family: var(--font-display);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
}
.cookie-category.essential input[type='checkbox'] {
  accent-color: var(--primary);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 16px; top: 10px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.45rem;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .close-cookie-modal:hover {
  color: var(--secondary);
}

/* GEOMETRIC STRUCTURED ELEMENTS */
.card, .feature-card, .service-card, .partner-card, .industry-card, .news-article, .testimonial-card, .leadership-bio {
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  border-style: solid;
  border-width: 2.2px;
  border-color: #e8e8e8;
  position: relative;
  background: #fff;
}
.card:after, .feature-card:after, .partner-card:after, .industry-card:after, .testimional-card:after, .leadership-bio:after {
  content: '';
  display: none;
}

/* UTILITY CLASSES */
.hidden {
  display: none !important;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }


/* --- END OF FILE --- */
