/* 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, 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #1d2326;
  color: #E8EDED;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
  color: #d1d7db;
}

strong {
  color: #73C2BE;
  font-weight: 700;
}

/* TYPOGRAPHY - INDUSTRIAL MODERN */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, Helvetica, sans-serif;
  color: #F7EFE9;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  line-height: 1.1;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #C2B8AF;
}
h4, h5, h6 {
  font-size: 1.05rem;
}
p, li, blockquote {
  font-size: 1rem;
  color: #E8EDED;
  margin-bottom: 16px;
}
blockquote {
  border-left: 4px solid #73C2BE;
  padding-left: 16px;
  color: #F7EFE9;
  font-style: italic;
  background: rgba(34,38,43,0.8);
  margin-bottom: 12px;
}

/* LAYOUT CONTAINERS */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.content-wrapper, .footer-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #23272b;
  border-radius: 18px;
  box-shadow: 0 6px 22px 0 rgba(33,36,38,0.09);
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
    border-radius: 12px;
  }
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #17191b;
  border-bottom: 3px solid #383e40;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 6px 22px 0 rgba(12,13,17,0.17);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 70px;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  color: #C4CBCB;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 0.4em 0.2em;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border 0.2s;
}
header nav a:hover {
  color: #73C2BE;
  border-bottom: 2px solid #297374;
}
header img {
  height: 40px;
  margin-right: 10px;
  width: auto;
}
@media (max-width: 950px) {
  header nav {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  header .container {
    gap: 8px;
  }
  header nav {
    display: none;
  }
  .cta-primary {
    display: none !important;
  }
}

/* CTA BUTTONS */
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.10rem;
  border-radius: 8px;
  cursor: pointer;
  padding: 0.75em 2.2em;
  margin-top: 8px;
  box-shadow: 0 2px 10px 0 rgba(40,55,54,0.13);
  border: none;
  outline: none;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.18s;
}
.cta-primary {
  background: #297374;
  color: #F7EFE9;
  letter-spacing: 0.05em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #184646;
  color: #73C2BE;
  box-shadow: 0 4px 22px 0 rgba(34,45,45,0.13);
  transform: translateY(-2px) scale(1.017);
}
.cta-secondary {
  background: #23272b;
  color: #73C2BE;
  border: 2px solid #73C2BE;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #297374;
  color: #F7EFE9;
  border-color: #297374;
  transform: translateY(-1px) scale(1.014);
}

/* FLEX CONTAINER PATTERNS */
.features-grid, .services-preview-grid, .services-list, .workshops-grid, .benefits-grid, .posts-grid, .testimonials-preview, .categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #23272b;
  border-radius: 14px;
  box-shadow: 0 3px 12px 0 rgba(48,54,56,0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px 20px 22px;
  min-width: 260px;
  flex: 1 1 280px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section, .features-grid, .services-preview-grid, .workshops-grid, .content-grid, .posts-grid {
    flex-direction: column;
    align-items: stretch !important;
    gap: 20px;
  }
}

/* CARD-LIKE ELEMENTS */
.features-grid > div, .services-preview-grid > div, .services-list > div, .workshops-grid > div, .benefits-grid > ul, .blog-post {
  background: #23272b;
  border: 1.5px solid #383e40;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 rgba(48,54,56,0.07);
  padding: 26px 18px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
}
.featured-post {
  background: #23272b;
  border-left: 5px solid #297374;
  border-radius: 8px;
  padding: 20px 18px;
  margin: 14px 0 12px 0;
}
@media (max-width: 768px) {
  .features-grid > div, .services-preview-grid > div, .services-list > div, .workshops-grid > div, .benefits-grid > ul, .blog-post {
    min-width: 100%;
    align-items: flex-start;
  }
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F7EFE9;
  color: #292929 !important;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 rgba(48,54,56,0.13);
  margin-bottom: 22px;
  font-family: 'Montserrat', 'Arial Black', Arial, Helvetica, sans-serif;
  flex-direction: column;
}
.testimonial-card blockquote {
  color: #23272b;
  border-left: 4px solid #297374;
  background: transparent;
}
p.testimonial-author {
  font-size: 1rem;
  color: #297374;
  margin-bottom: 0;
  font-weight: 700;
}

/* NEWSLETTER SIGNUP & ACCORDION */
.newsletter-signup {
  background: #23272b;
  border: 1.5px solid #383e40;
  border-radius: 11px;
  padding: 22px 18px;
  margin: 10px 0 12px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}
.faq-accordion > div {
  background: #23272b;
  border-left: 5px solid #297374;
  border-radius: 7px;
  padding: 17px 16px;
  transition: box-shadow 0.15s;
}
.faq-accordion > div:hover {
  box-shadow: 0 2px 12px 0 rgba(64,102,98,0.13);
}

/* CONTACT INFO */
.contact-info {
  background: #23272b;
  border: 1.5px solid #383e40;
  border-radius: 8px;
  padding: 16px 16px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-map {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}
@media (max-width: 768px) {
  .contact-map img {
    width: 50px;
  }
}

/* FOOTER */
footer {
  background: #17191b;
  color: #A7B1B5;
  border-top: 2px solid #383e40;
  padding: 36px 0 14px 0;
  font-size: 1rem;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.footer-content nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.975rem;
}
.footer-content nav a {
  color: #73C2BE;
  text-decoration: none;
  transition: color 0.16s;
}
.footer-content nav a:hover {
  color: #fff;
}
.footer-content img {
  height: 30px;
  margin-bottom: 4px;
}
.footer-content p {
  margin: 0;
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  .footer-content nav {
    flex-direction: column;
    gap: 7px;
  }
}

/* LINKS & INTERACTIONS */
a {
  color: #73C2BE;
  text-decoration: underline;
  transition: color 0.15s;
}
a:hover:not(nav a):not(.cta-primary):not(.cta-secondary) {
  color: #F7EFE9;
}

/* FORM ELEMENTS */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  background: #23272b;
  color: #F7EFE9;
  border: 1.5px solid #383e40;
  border-radius: 6px;
  padding: 10px 8px;
  outline: none;
  transition: border-color 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #73C2BE;
}
.button, button {
  background: #297374;
  color: #F7EFE9;
  border: none;
  border-radius: 7px;
  padding: 0.65em 1.5em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.2s, color 0.12s;
}
.button:hover, button:hover {
  background: #184646;
  box-shadow: 0 3px 14px 0 rgba(41,115,116,0.15);
}

/* MOBILE BURGER MENU (with Animations) */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    background: #23272b;
    color: #F7EFE9;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 203;
    border: none;
    font-size: 2rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    box-shadow: 0 2px 12px 0 rgba(41,115,116,0.12);
  }
  .mobile-menu-toggle:hover {
    background: #297374;
    color: #fff;
  }
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1d2326;
  z-index: 302;
  padding: 32px 28px 16px 28px;
  transition: transform 0.30s cubic-bezier(0.63,0.04,0.29,0.95);
  transform: translateX(-100vw);
  box-shadow: 3px 0 28px 0 rgba(33,38,38,0.30);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: #23272b;
  color: #73C2BE;
  border: none;
  border-radius: 50%;
  margin-bottom: 20px;
  width: 44px;
  height: 44px;
  transition: background 0.2s;
  cursor: pointer;
  z-index: 306;
}
.mobile-menu-close:hover {
  background: #297374;
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F7EFE9;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 10px;
  border-radius: 7px;
  text-decoration: none;
  width: 100%;
  display: flex;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover {
  background: #297374;
  color: #fff;
}

/* MOBILE MENU OVERLAY SCROLLING HANDLING */
body.menu-open {
  overflow: hidden;
}

/* Cookie Consent Banner Styles */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #23272b;
  color: #F7EFE9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(23,27,31,0.27);
  border-top: 3px solid #297374;
  z-index: 501;
  padding: 26px 18px 21px 18px;
  font-size: 1rem;
  animation: cookieBannerIn 0.42s cubic-bezier(0.62,0.04,0.29,0.95);
}
@keyframes cookieBannerIn {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner strong {
  font-weight: 700;
  color: #73C2BE;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.cookie-btn {
  background: #297374;
  color: #F7EFE9;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  margin: 0 2px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.15s;
  box-shadow: 0 1px 10px 0 rgba(47,76,78,0.09);
}
.cookie-btn.reject {
  background: #23272b;
  color: #F7EFE9;
  border: 2px solid #73C2BE;
}
.cookie-btn.settings {
  background: #383e40;
  color: #73C2BE;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #184646;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34,34,34,0.72);
  z-index: 530;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBg 0.22s;
}
@keyframes fadeInBg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #212326;
  color: #E8EDED;
  border-radius: 13px;
  min-width: 320px;
  max-width: 92vw;
  padding: 42px 32px 30px 32px;
  box-shadow: 0 6px 34px rgba(21,33,42,0.33);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalIn 0.31s cubic-bezier(0.62,0.04,0.29,0.95);
}
@keyframes modalIn {
  from {transform: scale(0.88) translateY(38px); opacity: 0.4;}
  to {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 10px;
  color: #F7EFE9;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
}
.cookie-modal label {
  color: #73C2BE;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #297374;
  width: 21px; height: 21px;
}
.cookie-modal .essential {
  color: #A7B1B5;
  font-size: 0.98rem;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 2rem;
  background: #23272b;
  color: #73C2BE;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 2;
}
.cookie-modal-close:hover {
  background: #297374;
  color: #fff;
}

/* SPACING AND RESPONSIVE LAYOUTS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 40px;
    padding: 28px 6px;
  }
}

.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;
}

/* Responsive typography and layout */
@media (max-width: 900px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 1.5rem;
  }
  .container {
    width: 97%;
    max-width: none;
  }
}

/* MICRO-INTERACTIONS, METALLIC ACCENTS, INDUSTRIAL FEEL */
hr {
  border: none;
  border-top: 2px solid #383e40;
  margin: 18px 0;
}

.section, .card, .card-content, .testimonial-card, .features-grid > div, .services-preview-grid > div, .services-list > div, .workshops-grid > div, .benefits-grid > ul, .blog-post {
  transition: box-shadow 0.18s cubic-bezier(0.62,0.04,0.29,0.95), border-color 0.2s;
}
.section:hover, .card:hover, .features-grid > div:hover, .services-preview-grid > div:hover, .workshops-grid > div:hover, .blog-post:hover {
  box-shadow: 0 6px 33px 0 rgba(71,123,122,0.15);
  border-color: #73C2BE;
}

/* Metallic accents: border or highlights */
.features-grid > div, .services-preview-grid > div, .services-list > div, .workshops-grid > div, .blog-post {
  border-left: 4px solid #383e40;
}
.features-grid > div:hover, .services-preview-grid > div:hover, .workshops-grid > div:hover, .blog-post:hover {
  border-left: 4px solid #297374;
  background: #232e30;
}

/* Industrial Style Shadows, Typography and Color Accents */
.section, .card, .testimonial-card {
  box-shadow: 0 4px 28px rgba(41, 51, 53, 0.16);
}

::selection {
  background: #73C2BE;
  color: #23272b;
}

/* UTILITY */
.hide {
  display: none !important;
}
.flex {
  display: flex;
}
.center {
  align-items: center;
  justify-content: center;
}

/* THANK YOU PAGE */
.thank-you-message {
  margin-top: 12px;
  font-size: 1.12rem;
  color: #73C2BE;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}
.next-steps {
  margin: 16px 0 24px 0;
  padding: 15px 0 0 0;
}

/* ACCESSIBILITY/CONTRAST */
.testimonial-card, .testimonial-card blockquote, .testimonial-card .testimonial-author {
  color: #191919 !important;
  background: none !important;
}

/* END OF STYLE.CS */
