/* === CSS 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F5F7FA;
  color: #1c253a;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  background: #F5F7FA;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input[type="submit"] {
  font-family: inherit;
  font-size: inherit;
  border: none;
  cursor: pointer;
  background: none;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* === BRAND VARIABLES === */
:root {
  --brand-primary: #203464;
  --brand-secondary: #47A682;
  --brand-accent: #F5F7FA;
  --gold: #C29E4D;
  --text-main: #23242c;
  --text-light: #fff;
  --bg-section: #F5F7FA;
  --bg-card: #fff;
  --border-card: #e8e6e0;
}
/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.4rem; line-height: 1.15; }
h2 { font-size: 1.75rem; line-height: 1.25; }
h3 { font-size: 1.25rem; line-height: 1.4; }
h4 { font-size: 1.125rem; line-height: 1.4; }
p, li, blockquote, label, input, button, span, div {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-main);
}
p {
  margin-bottom: 16px;
  font-size: 1.06rem;
}
strong {
  font-weight: 700;
  color: var(--brand-primary);
}
.category {
  font-size: 0.89rem;
  background: var(--brand-secondary);
  color: #fff;
  border-radius: 24px;
  padding: 4px 14px;
  margin-top: 10px;
  display: inline-block;
  letter-spacing: 0.03em;
}

/* === LUXURY COLOR + PREMIUM ACCENTS === */
.gold {
  color: var(--gold);
}
.gold-bg {
  background: var(--gold)!important;
  color: #fff!important;
}

/* === CONTAINER & SECTIONS === */
.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-section);
  border-radius: 14px;
  box-shadow: 0 2px 24px rgba(32,52,100,0.04);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  border-bottom: 1px solid #e8e6e0;
  min-height: 70px;
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  color: var(--brand-primary);
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
header nav a:hover, header nav a:focus {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
.cta-button {
  background: var(--brand-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 32px;
  letter-spacing: 0.05em;
  margin-left: 18px;
  box-shadow: 0 4px 20px rgba(32,52,100,0.07);
  position: relative;
  border: 2px solid var(--gold);
  transition: background 0.25s, color 0.18s, box-shadow 0.3s, border-color 0.2s;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: var(--gold);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: 0 6px 32px rgba(32,52,100,0.16);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-left: 16px;
  z-index: 101;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--brand-primary);
  color: #fff;
}
.mobile-menu {
  display: none; /* toggled visible via JS */
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32, 52, 100, 0.98);
  z-index: 120;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.3s;
  transform: translateX(-100%);
  opacity: 0;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 150;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 96px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  width: 76vw;
  text-align: center;
  transition: color 0.2s, border 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
@media (max-width: 1080px) {
  header .container {
    gap: 18px;
  }
  nav {
    gap: 14px;
  }
  .cta-button {
    padding: 10px 26px;
    font-size: 0.98rem;
  }
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 600px) {
  header .container {
    gap: 7px;
    padding: 6px 10px 6px 10px;
  }
  .logo img { height: 34px; }
  .mobile-menu-close {
    top: 18px;
    right: 14px;
    width: 40px; height: 40px;
    font-size: 1.6rem;
  }
}

/* === HERO & SECTION LAYOUTS === */
.hero {
  background: linear-gradient(135deg, #f8f6f2 70%, #FFF3D6 100%);
  border-radius: 19px;
  margin-bottom: 60px;
  padding: 56px 0 56px 0;
  box-shadow: 0 8px 34px rgba(32,52,100,0.10);
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 2.7rem;
  background: linear-gradient(90deg,var(--brand-primary) 56%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero p {
  color: #354052;
  font-size: 1.25rem;
  margin-bottom: 32px;
}
.hero .cta-button {
  font-size: 1.18rem;
}

/* === FLEX CONTAINER CLASSES (AS PER MANDATE) === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--bg-card);
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 28px rgba(32,52,100,.07);
  padding: 30px 24px;
  position: relative;
  border: 1px solid var(--gold);
}
.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: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(44,46,56,0.08);
  margin-bottom: 20px;
  border-left: 6px solid var(--gold);
  flex-direction: column;
  transition: box-shadow .25s, transform .22s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 40px rgba(32,52,100,0.13);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-meta {
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === INDEX & ABOUT PAGE UNIQUE FLEX LAYOUTS === */
.course-cards, .course-tile-grid, .service-cards, .blog-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 26px;
}
.course-card, .course-tile, .service-card, .blog-post-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 22px rgba(32,52,100,0.05);
  border: 1px solid #edeaed;
  padding: 24px 18px;
  flex: 1 1 290px;
  min-width: 260px;
  max-width: 320px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.course-card:hover, .course-tile:hover, .service-card:hover, .blog-post-card:hover {
  box-shadow: 0 8px 32px rgba(194,158,77,0.15), 0 2px 22px rgba(32,52,100,0.14);
  border-color: var(--gold);
}

.benefit-list, .service-benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 24px 0 18px 0;
}
.benefit-list li, .service-benefits-list li {
  background: #fff;
  padding: 18px 16px;
  border-radius: 11px;
  border-left: 4px solid var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(32,52,100,0.045);
}
.benefit-list img, .service-benefits-list img {
  height: 32px;
  width: auto;
}

.faq {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq > div {
  background: #fff;
  border-radius: 11px;
  border-left: 4px solid var(--brand-secondary);
  box-shadow: 0 2px 14px rgba(32,52,100,0.14);
  padding: 16px 16px 12px 16px;
  flex: 1 1 280px;
  min-width: 260px;
}

/* === TEAM & ACHIEVEMENTS FLEX === */
.team-member {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 4px 28px rgba(32, 52, 100, 0.07);
  border: 1px solid #edeaed;
  padding: 20px 18px 16px 18px;
  margin-bottom: 20px;
}
.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.achievements-grid > div {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8e6e0;
  box-shadow: 0 1px 16px rgba(32,52,100,0.07);
  min-width: 180px;
  text-align: center;
  flex: 1 1 140px;
  padding: 22px 0 16px 0;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--brand-primary);
}
.notable-customers {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 1.08rem;
}
.media-mentions {
  font-size: 1.05rem;
  color: var(--brand-secondary);
}

.step-by-step-timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.success-cases {
  background: var(--bg-card);
  padding: 18px 16px;
  border-left: 4px solid var(--brand-primary);
  border-radius: 10px;
  color: var(--brand-primary);
  font-size: 1rem;
  box-shadow: 0 2px 18px rgba(32,52,100,0.10);
}

/* === BLOG & NEWSLETTER === */
.blog-list {
  gap: 26px;
}
.blog-post-card {
  margin-bottom: 20px;
}
.categories-filter, .recent-posts {
  margin-top: 18px;
  font-size: 1rem;
}
.categories-filter a {
  color: var(--brand-secondary);
  font-weight: 600;
  padding: 4px 7px;
  border-radius: 7px;
  transition: background 0.15s, color 0.18s;
}
.categories-filter a:hover, .categories-filter a:focus {
  background: var(--brand-secondary);
  color: #fff;
}

/* === FORMS & NEWSLETTER === */
input[type="email"], input[type="text"], input[type="number"] {
  padding: 11px 14px;
  border-radius: 7px;
  border: 1px solid #cfcaca;
  box-sizing: border-box;
  font-size: 1rem;
  width: 240px;
  margin-right: 10px;
  transition: border 0.2s;
}
input[type="email"]:focus, input[type="text"]:focus {
  border-color: var(--brand-secondary);
}
button[type="submit"] {
  background: var(--brand-primary);
  color: #fff;
  border-radius: 24px;
  padding: 11px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: 2px solid var(--gold);
  margin-left: 8px;
  transition: background 0.2s,color 0.2s,border 0.2s, box-shadow 0.18s;
}
button[type="submit"]:hover, button[type="submit"]:focus {
  background: var(--gold);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: 0 8px 32px rgba(32,52,100,0.07);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
  font-weight: 500;
  display: block;
}

/* === CONTACT & MAP SECTION === */
.contact-data {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.contact-data > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
}
.additional-info {
  color: var(--brand-secondary);
  font-size: 1.03rem;
  margin-top: 12px;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 14px;
  padding: 26px 20px 20px 24px;
  box-shadow: 0 2px 18px rgba(32,52,100,0.07);
  margin-bottom: 18px;
}

/* === FOOTER === */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 40px 0 0 0;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-top: 80px;
}
footer div {
  color: white;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid #374466;
  justify-content: space-between;
}
.footer-logo img {
  width: 130px;
  margin-bottom: 14px;
}
footer nav {
  flex-direction: column;
  gap: 12px;
  display: flex;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 3px 0;
  opacity: 0.86;
  transition: color 0.17s, opacity 0.17s;
  font-size: 1.03rem;
}
footer nav a:hover, footer nav a:focus {
  color: var(--gold);
  opacity: 1;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.97rem;
  color: #f5f5f5;
}
.contact-info img {
  width: 20px; height: 20px;
  margin-right: 6px;
}
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 15px;
}
.footer-social-icons img {
  width: 34px; height: 34px; opacity: 0.95;
  transition: opacity 0.18s;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}
.footer-social-icons img:hover, .footer-social-icons img:focus {
  opacity: 1;
  box-shadow: 0 2px 12px rgba(194,158,77,0.14);
}
.utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 18px 0;
  align-items: center;
  justify-content: center;
}
.utility-links a {
  color: #B3B7CA;
  font-size: 0.94rem;
  transition: color 0.18s;
}
.utility-links a:hover {
  color: var(--gold);
}
.copyright {
  text-align: center;
  color: #bbc6df;
  font-size: 0.97rem;
  padding-bottom: 32px;
  margin-top: 0;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff9ed;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 30px rgba(32,52,100,0.13);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 32px;
  font-size: 1.08rem;
  animation: bannerIn 0.55s cubic-bezier(.55, .06, .59, .84);
  transition: transform .34s cubic-bezier(.85,0,.18,1), opacity .33s;
}
@keyframes bannerIn {0%{transform:translateY(60px);opacity:0;}100%{transform:none;opacity:1;}}
.cookie-banner p {
  flex: 1 1;
  color: var(--brand-primary);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner .cookie-btn,
.cookie-banner .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 22px;
  padding: 10px 22px;
  font-size: 1rem;
  border: 2px solid var(--gold);
  background: #fff;
  color: var(--brand-primary);
  transition: background 0.2s, color 0.2s, border 0.15s, box-shadow .13s;
  margin-right: 4px;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(194,158,77,0.16);
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  border: 2px solid var(--brand-secondary);
  color: var(--brand-secondary);
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: var(--brand-secondary);
  color: #fff;
}

/* === COOKIE MODAL OVERLAY === */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,52,100,0.55);
  z-index: 170;
  align-items: center;
  justify-content: center;
  animation: fadein .3s;
}
.cookie-modal-overlay.active { display: flex; }
@keyframes fadein {from{opacity:0;} to{opacity:1;}}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  min-width: 330px;
  max-width: 92vw;
  padding: 40px 32px 30px 32px;
  box-shadow: 0 8px 64px rgba(32,52,100,0.24);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: popin .32s cubic-bezier(.55, .09,.44,1.18);
}
@keyframes popin {0%{transform:scale(.9);opacity:0;}100%{transform:none;opacity:1;}}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  color: var(--brand-primary);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f2e7;
  transition: background 0.15s;
}
.cookie-modal .close-modal:hover { background: var(--gold); color: #fff; }
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--brand-primary);
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.cookie-category {
  background: #f6f2e7;
  border-radius: 10px;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
}
.cookie-category label {
  cursor: pointer;
  margin: 0;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-secondary);
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal .modal-actions .cookie-btn { min-width: 98px; }

/* Essential cookies always enabled */
.cookie-category.essential label {
  color: #bcc0ce;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #bbb;
  pointer-events: none;
}

/* === MEDIA QUERIES: RESPONSIVE === */
@media (max-width: 1020px) {
  .card-container, .content-grid, .team-member, .achievements-grid, .blog-list, .course-cards, .course-tile-grid, .service-cards, .faq, .benefit-list, .service-benefits-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .achievements-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
  .card, .team-member, .course-card, .course-tile, .service-card, .blog-post-card, .faq > div {
    min-width: 95%;
    max-width: 100%;
  }
}
@media (max-width: 830px) {
  .section, .hero {
    padding: 30px 10px;
    margin-bottom: 38px;
  }
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.25rem; }
  .footer-main { gap: 18px; }
  .achievements-grid > div {
    font-size: 1rem;
    padding: 14px 0;
  }
}
@media (max-width: 600px) {
  .container { padding: 0 7px; }
  .section, .hero {
    padding: 16px 3px;
    border-radius: 6px;
    margin-bottom: 20px;
  }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.13rem; }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 10px; padding-bottom: 18px; }
}
@media (max-width: 450px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px 8px;
    font-size: 0.95rem;
  }
  .cookie-banner .cookie-buttons {
    gap: 8px;
    flex-direction: column;
  }
  .cookie-modal {
    padding: 22px 7px 18px 7px;
    min-width: unset;
  }
}

/* === ANIMATION UTILITIES === */
.fade-in {
  animation: fadein 0.18s cubic-bezier(.74,0,.55,1.1);
}
.slide-in-right {
  animation: slideinright .35s cubic-bezier(.55,.13, .6,1.27);
}
@keyframes slideinright { 0%{transform:translateX(80vw);opacity:0;} 100%{transform:none; opacity:1;}}

/* === VISUAL HIERARCHY === */
main {
  min-height: 60vh;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.certification-info {
  background: #fff7df;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 18px 16px;
  font-weight: 600;
  color: var(--brand-primary);
  margin: 18px 0;
  font-size: 1.09rem;
}

/* === UTILITY === */
::-webkit-input-placeholder { color: #b0b5c1; opacity: 1; }
::-moz-placeholder { color: #b0b5c1; opacity: 1; }
:-ms-input-placeholder { color: #b0b5c1; opacity: 1; }
::placeholder { color: #b0b5c1; opacity: 1; }
.no-select {
  user-select: none; -webkit-user-select: none;
}

/* === Z-INDEX LAYERS === */
header { z-index: 60; }
.mobile-menu { z-index: 120; }
.cookie-banner { z-index: 150; }
.cookie-modal-overlay { z-index: 170; }

/* === NO ABSOLUTE LAYOUTS for content cards! Only for icons/close buttons === */

/* === SHADOWS & ROUNDED CORNERS === */
/* Already applied above to cards, buttons, modal, etc. */

/* === INTERACTIVITY & HOVER EFFECTS === */
.cta-button:active { transform: scale(0.97); }
input[type="email"]:focus, input[type="text"]:focus { outline: 1px solid var(--gold); }

/* === END === */
