/* --------------------------------------------------
   AffraKnif Oratory – Industrial Modern CSS Theme
   Brand: Empowering, modern, trustworthy
   Colors: #1A3A5D (primary), #F4B41A (secondary), #FFFFFF (accent)
   Fonts: Montserrat (display), Open Sans (body)
   Style: Industrial Modern (dark, metallic, urban)
-------------------------------------------------- */

/* 1. CSS RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  background: #181C22;
  color: #E2E6EA;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

/* Font Imports */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F4B41A;
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol {
  margin-top: 0;
  margin-bottom: 1.2em;
  color: #E2E6EA;
}
strong { color: #F4B41A; font-weight: 700; }
a {
  color: #F4B41A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD76B;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
}

/* 2. LAYOUT CONTAINERS & FLEXBOX PATTERNS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(26,58,93,0.07);
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(20,24,30,0.10);
  border: 1px solid #23272F;
}

/* 3. HEADER & NAVIGATION */
header {
  background: #1A232E;
  border-bottom: 2px solid #23272F;
  box-shadow: 0 2px 8px 0 rgba(20,24,30,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
header img {
  height: 48px;
  width: auto;
  filter: grayscale(0.2) contrast(1.2) drop-shadow(0 2px 2px #0008);
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #E2E6EA;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F4B41A;
  border-bottom: 2px solid #F4B41A;
}
.cta-btn {
  background: linear-gradient(90deg, #F4B41A 60%, #FFD76B 100%);
  color: #1A232E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  margin-left: 16px;
  box-shadow: 0 2px 8px 0 rgba(244,180,26,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  outline: none;
  display: inline-block;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FFD76B 60%, #F4B41A 100%);
  color: #1A3A5D;
  box-shadow: 0 4px 16px 0 rgba(244,180,26,0.18);
  transform: translateY(-2px) scale(1.03);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F4B41A;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.2s, transform 0.2s;
  z-index: 120;
}
.mobile-menu-toggle:active {
  color: #FFD76B;
  transform: scale(1.1);
}

/* 4. MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 58, 93, 0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F4B41A;
  font-size: 2.2rem;
  margin: 24px 32px 0 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.2s, transform 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD76B;
  transform: scale(1.1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin: 48px 0 0 48px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #FFF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F4B41A;
  border-bottom: 2px solid #F4B41A;
}

/* 5. HERO SECTIONS */
.hero {
  background: linear-gradient(120deg, #23272F 60%, #1A3A5D 100%);
  color: #FFF;
  padding: 60px 0 60px 0;
  border-bottom: 2px solid #23272F;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  max-width: 700px;
}
.hero h1 {
  color: #F4B41A;
  font-size: 2.7rem;
  font-weight: 900;
  text-shadow: 0 2px 8px #1A232E44;
}
.hero p {
  color: #E2E6EA;
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}

/* 6. FLEXBOX LAYOUTS FOR CARDS & GRIDS */
.card-container, .card-grid, .feature-grid, .team-grid, .course-list-grid, .blog-post-grid, .testimonial-slider, .course-highlights, .instructor-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card, .feature-item, .team-member, .course-item, .blog-post, .testimonial-card, .course-category, .instructor-profile {
  background: #23272F;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(20,24,30,0.13);
  border: 1.5px solid #2D3742;
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
.testimonial-card p {
color: #F4B41A;}
.card:hover, .feature-item:hover, .team-member:hover, .course-item:hover, .blog-post:hover, .testimonial-card:hover, .course-category:hover, .instructor-profile:hover {
  box-shadow: 0 6px 24px 0 rgba(244,180,26,0.13);
  border-color: #F4B41A;
  transform: translateY(-3px) scale(1.02);
}

/* 7. FEATURE & COURSE ICONS */
.feature-icon, .course-icon, .method-icon {
  font-size: 2.2rem;
  color: #F4B41A;
  background: #181C22;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 #0004;
  padding: 12px;
  margin-bottom: 8px;
  align-self: flex-start;
}

/* 8. TESTIMONIALS */
.testimonials, .testimonial-slider {
  width: 100%;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F4F4F4;
  color: #23272F;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(26,58,93,0.08);
  border: 1.5px solid #E2E6EA;
  min-width: 260px;
  max-width: 380px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
.testimonial-card strong {
  color: #1A3A5D;
}
.star-rating {
  color: #F4B41A;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

/* 9. FOOTER */
footer {
  background: #1A232E;
  color: #E2E6EA;
  border-top: 2px solid #23272F;
  padding: 40px 0 20px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #F4B41A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFD76B;
}
.footer-contact {
  color: #E2E6EA;
  font-size: 0.98rem;
  margin-bottom: 12px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-brand img {
  height: 36px;
  width: auto;
  filter: grayscale(0.2) contrast(1.2) drop-shadow(0 2px 2px #0008);
}
.footer-brand span {
  color: #AAB4C2;
  font-size: 0.95rem;
}

/* 10. BLOG & FEATURED POSTS */
.blog-list .blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.blog-post {
  background: #23272F;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(20,24,30,0.13);
  border: 1.5px solid #2D3742;
  padding: 24px 20px;
  min-width: 260px;
  max-width: 350px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
.featured-posts {
  background: #1A3A5D;
  color: #FFF;
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 16px;
  box-shadow: 0 2px 8px 0 rgba(26,58,93,0.10);
  border-left: 4px solid #F4B41A;
}

/* 11. LEGAL & POLICY SECTIONS */
.legal {
  background: #23272F;
  color: #E2E6EA;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(20,24,30,0.13);
  border: 1.5px solid #2D3742;
  padding: 40px 24px;
  margin-bottom: 60px;
}
.legal h1, .legal h2 {
  color: #F4B41A;
}

/* 12. FLEXBOX SPACING & ALIGNMENT PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* 13. RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
  }
  .main-nav {
    gap: 18px;
  }
  .footer-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .footer-brand img {
    height: 28px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
    min-height: 56px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
    padding: 10px 20px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .footer-brand {
    align-items: flex-start;
  }
  .card-container, .card-grid, .feature-grid, .team-grid, .course-list-grid, .blog-post-grid, .testimonial-slider, .course-highlights, .instructor-profiles {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card, .card, .feature-item, .team-member, .course-item, .blog-post, .course-category, .instructor-profile {
    min-width: 0;
    max-width: 100%;
    padding: 18px 12px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    gap: 16px;
    max-width: 100%;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 8px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .footer-contact {
    font-size: 0.93rem;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .cta-btn {
    font-size: 0.98rem;
    padding: 8px 14px;
  }
  .mobile-nav {
    margin: 32px 0 0 18px;
    gap: 18px;
  }
  .mobile-menu-close {
    margin: 16px 18px 0 0;
    font-size: 1.7rem;
  }
}

/* 14. BUTTONS & INTERACTIONS */
button, .cta-btn, .mobile-menu-close, .mobile-menu-toggle {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
}
button:focus, .cta-btn:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #F4B41A;
  outline-offset: 2px;
}

/* 15. COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #23272F;
  color: #E2E6EA;
  border-top: 2px solid #F4B41A;
  box-shadow: 0 -2px 16px 0 rgba(26,58,93,0.13);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  gap: 24px;
  animation: cookie-slide-in 0.5s cubic-bezier(.77,0,.18,1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  color: #E2E6EA;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 5px;
  padding: 10px 22px;
  margin: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  font-size: 1rem;
}
.cookie-btn.accept {
  background: #F4B41A;
  color: #1A232E;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FFD76B;
  color: #1A3A5D;
}
.cookie-btn.reject {
  background: #23272F;
  color: #F4B41A;
  border: 1.5px solid #F4B41A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #1A3A5D;
  color: #FFD76B;
}
.cookie-btn.settings {
  background: #1A3A5D;
  color: #F4B41A;
  border: 1.5px solid #F4B41A;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #23272F;
  color: #FFD76B;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px;
    gap: 12px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,58,93,0.85);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #23272F;
  color: #E2E6EA;
  border-radius: 12px;
  box-shadow: 0 4px 32px 0 rgba(26,58,93,0.22);
  border: 2px solid #F4B41A;
  padding: 36px 32px 28px 32px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-fade-in 0.4s cubic-bezier(.77,0,.18,1);
  position: relative;
}
@keyframes modal-fade-in {
  from { transform: scale(0.95) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #F4B41A;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #E2E6EA;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 22px;
  background: #1A3A5D;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  margin-right: 6px;
}
.cookie-modal .cookie-toggle input {
  display: none;
}
.cookie-modal .cookie-toggle span {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #F4B41A;
  border-radius: 50%;
  transition: left 0.2s, background 0.2s;
}
.cookie-modal .cookie-toggle input:checked + span {
  left: 19px;
  background: #FFD76B;
}
.cookie-modal .cookie-category.essential label {
  color: #AAB4C2;
  font-style: italic;
}
.cookie-modal .cookie-category.essential .cookie-toggle {
  background: #23272F;
  cursor: not-allowed;
}
.cookie-modal .cookie-category.essential span {
  background: #AAB4C2;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #F4B41A;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #FFD76B;
  transform: scale(1.1);
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 18px 8px 14px 8px;
    min-width: 0;
  }
  .cookie-modal .cookie-modal-actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* 16. MISCELLANEOUS */
::-webkit-scrollbar {
  width: 10px;
  background: #23272F;
}
::-webkit-scrollbar-thumb {
  background: #1A3A5D;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F4B41A;
}

/* 17. ACCESSIBILITY */
:focus-visible {
  outline: 2px solid #F4B41A;
  outline-offset: 2px;
}

/* 18. INDUSTRIAL MODERN DECORATIVE ACCENTS */
.section, .card, .feature-item, .testimonial-card, .blog-post, .course-item, .instructor-profile, .legal {
  /* metallic accent border */
  border-left: 4px solid #F4B41A;
  box-shadow: 0 2px 12px 0 rgba(26,58,93,0.09), 0 1px 0 0 #23272F;
}

/* 19. BRAND VALUES & LISTS */
.brand-values ul, .unique-features-list, .contact-info ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1em 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brand-values ul li, .unique-features-list li, .contact-info ul li {
  position: relative;
  padding-left: 28px;
  color: #F4B41A;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.brand-values ul li:before, .unique-features-list li:before, .contact-info ul li:before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #FFD76B;
  font-size: 1.2em;
  top: 0;
}

/* 20. THANK YOU PAGE */
.thank-you {
  background: linear-gradient(120deg, #23272F 60%, #1A3A5D 100%);
  color: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(26,58,93,0.10);
  border: 1.5px solid #23272F;
  padding: 60px 24px;
  margin-bottom: 60px;
  text-align: center;
}
.thank-you h1 {
  color: #F4B41A;
  font-size: 2.2rem;
}

/* 21. MAP SECTION */
.map {
  background: #23272F;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(20,24,30,0.13);
  border: 1.5px solid #2D3742;
  padding: 40px 24px;
  margin-bottom: 60px;
}
.map h2 {
  color: #F4B41A;
}

/* 22. PHOTO GALLERY PLACEHOLDER */
.photo-gallery {
  background: #181C22;
  border-radius: 8px;
  padding: 24px;
  color: #AAB4C2;
  font-style: italic;
  border: 1.5px dashed #2D3742;
  margin-bottom: 20px;
}

/* 23. COURSE HIGHLIGHTS & CATEGORIES */
.course-highlights, .course-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.course-category, .course-item {
  background: #23272F;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(20,24,30,0.13);
  border: 1.5px solid #2D3742;
  padding: 24px 20px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}

/* 24. TEAM & INSTRUCTOR PROFILES */
.team-grid, .instructor-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member, .instructor-profile {
  background: #23272F;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(20,24,30,0.13);
  border: 1.5px solid #2D3742;
  padding: 24px 20px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}

/* 25. METHODOLOGY STEPS */
.method-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.method-step {
  background: #23272F;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(20,24,30,0.13);
  border: 1.5px solid #2D3742;
  padding: 24px 20px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}

/* 26. CONTACT INFO */
.contact-info ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1em 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info ul li {
  color: #F4B41A;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  padding-left: 28px;
}
.contact-info ul li:before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #FFD76B;
  font-size: 1.2em;
  top: 0;
}

/* 27. FORM BUTTONS (for future forms) */
input[type="submit"], button[type="submit"] {
  background: #F4B41A;
  color: #1A232E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  box-shadow: 0 2px 8px 0 rgba(244,180,26,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  outline: none;
}
input[type="submit"]:hover, button[type="submit"]:hover {
  background: #FFD76B;
  color: #1A3A5D;
  box-shadow: 0 4px 16px 0 rgba(244,180,26,0.18);
  transform: translateY(-2px) scale(1.03);
}

/* 28. HIDE ELEMENTS UTILITY */
.hide {
  display: none !important;
}

/* END OF INDUSTRIAL MODERN THEME */
