/*
  style.css
  Social Casino UK Website
*/

/* ------------------------ */
/* --- CSS VARIABLES --- */
/* ------------------------ */
:root {
  /* Fonts */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'IBM Plex Sans', sans-serif;

  /* Monochrome Color Scheme - Neomorphism Inspired */
  --color-background: #e0e5ec; /* Light grey, main surface */
  --color-background-alt: #d1d9e6; /* Slightly darker grey for alternate sections */
  --color-surface: #e0e5ec; /* For elements like cards, buttons */

  --color-text-primary: #3a3b3c; /* Dark grey for primary text, high contrast */
  --color-text-secondary: #5f6778; /* Medium grey for secondary text */
  --color-text-headings: #2c2f36; /* Even darker for main headings */
  --color-text-light: #ffffff; /* For text on dark backgrounds */

  --color-accent-strong: #4a5568; /* A strong, dark grey for CTAs and accents */
  --color-accent-strong-hover: #2d3748; /* Darker hover for strong accent */

  --color-border: #c8d0e0; /* Subtle border color */

  /* Neomorphism Shadows */
  --shadow-light-source: #ffffff; /* Light source for highlights */
  --shadow-dark-source: #a3b1c6; /* Dark source for shadows */

  --neumorphic-shadow-convex: -6px -6px 12px var(--shadow-light-source),
                             6px 6px 12px var(--shadow-dark-source);
  --neumorphic-shadow-concave: inset -5px -5px 10px var(--shadow-light-source),
                              inset 5px 5px 10px var(--shadow-dark-source);
  --neumorphic-shadow-pressed: inset -3px -3px 7px var(--shadow-dark-source), /* Simulating pressed state */
                               inset 3px 3px 5px var(--shadow-light-source);

  /* Borders & Radii */
  --border-radius-soft: 15px;
  --border-radius-medium: 10px;
  --border-radius-sharp: 5px;

  /* Layout */
  --container-width: 1140px;
  --header-height: 80px;
  --section-padding-y: 60px;

  /* Transitions */
  --transition-smooth: all 0.3s ease-in-out;
}

/* ------------------------ */
/* --- GLOBAL RESET & DEFAULTS --- */
/* ------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* Base font size */
}

body {
  font-family: var(--font-secondary);
  background-color: var(--color-background);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* For Barba.js transitions */
.barba-container {
  width: 100%;
}

/* ------------------------ */
/* --- TYPOGRAPHY --- */
/* ------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--color-text-headings);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Subtle shadow for definition */
}

h1 { font-size: 2.8rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}

a {
  color: var(--color-accent-strong);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-accent-strong-hover);
  text-decoration: underline;
}

strong {
  font-weight: 700;
  color: var(--color-text-primary);
}

/* Section title common style */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: var(--color-text-headings);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.section-summary {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: var(--color-text-secondary);
  font-size: 1.1rem;
}

/* ------------------------ */
/* --- LAYOUT & STRUCTURE --- */
/* ------------------------ */
.main-container {
  max-width: 100%; /* Full width */
  margin: 0 auto;
}

.content-section {
  padding: var(--section-padding-y) 20px;
  overflow: hidden; /* For animations */
}

.alt-bg {
  background-color: var(--color-background-alt);
  box-shadow: inset 0 5px 10px rgba(0,0,0,0.03), inset 0 -5px 10px rgba(0,0,0,0.03);
}

/* For full-width sections inside main-container if needed */
.container-fluid {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}


/* ------------------------ */
/* --- HEADER & NAVIGATION --- */
/* ------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-surface);
  box-shadow: var(--neumorphic-shadow-convex); /* More subtle shadow for header */
  transition: var(--transition-smooth);
}

.header-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-headings);
  text-decoration: none;
}
.logo:hover {
  color: var(--color-accent-strong);
}

.main-navigation ul {
  list-style: none;
  display: flex;
}

.main-navigation li {
  margin-left: 25px;
}

.main-navigation a {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--border-radius-sharp);
  transition: var(--transition-smooth);
}

.main-navigation a:hover,
.main-navigation a.active {
  background-color: rgba(0,0,0,0.05);
  color: var(--color-accent-strong);
  box-shadow: var(--neumorphic-shadow-concave);
}

.burger-menu {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001; /* Above nav */
}

.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-text-headings);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* Burger active states - controlled by JS */
.burger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ------------------------ */
/* --- GLOBAL BUTTON STYLES --- */
/* ------------------------ */
.cta-button,
button,
input[type="submit"],
input[type="button"] {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light);
  background-color: var(--color-accent-strong);
  padding: 12px 28px;
  border: none;
  border-radius: var(--border-radius-medium);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: -3px -3px 7px rgba(255,255,255,0.1), /* Lighter part of shadow */
               3px 3px 7px rgba(0,0,0,0.3);    /* Darker part of shadow */
  outline: none;
}

.cta-button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background-color: var(--color-accent-strong-hover);
  color: var(--color-text-light);
  box-shadow: -2px -2px 5px rgba(255,255,255,0.05),
               2px 2px 5px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.cta-button:active,
button:active,
input[type="submit"]:active,
input[type="button"]:active {
  background-color: var(--color-accent-strong-hover);
  box-shadow: var(--neumorphic-shadow-pressed); /* Neomorphic pressed effect */
  transform: translateY(1px);
}

/* Read more link style */
.read-more-link {
  display: inline-block;
  font-weight: 600;
  color: var(--color-accent-strong);
  margin-top: 10px;
  text-decoration: underline;
  transition: var(--transition-smooth);
}
.read-more-link:hover {
  color: var(--color-accent-strong-hover);
  text-decoration: none;
}


/* ------------------------ */
/* --- CARDS --- */
/* ------------------------ */
.card,
.resource-item, /* Apply to resource items as well */
.insight-card {   /* Apply to insight cards */
  background-color: var(--color-surface);
  border-radius: var(--border-radius-soft);
  box-shadow: var(--neumorphic-shadow-convex);
  padding: 25px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center; /* Center card-image and card-content if they don't take full width */
  text-align: center; /* Center text content by default */
  overflow: hidden; /* Ensure content doesn't spill out */
}

.card:hover,
.resource-item:hover,
.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: -8px -8px 16px var(--shadow-light-source),
               8px 8px 16px var(--shadow-dark-source);
}

.card-image {
  width: 100%; /* Image container takes full width of card */
  height: 200px; /* Fixed height for consistency */
  border-radius: var(--border-radius-medium); /* Rounded corners for the image container */
  overflow: hidden; /* Clip the image */
  margin-bottom: 20px;
  background-color: #ccc; /* Placeholder background */
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Scale image to cover, cropping if necessary */
  display: block; /* Remove bottom space under image */
  border-radius: var(--border-radius-medium); /* Ensure image itself has rounded corners if container does */
}

.card-content {
  width: 100%; /* Content takes full width */
}

.card-content h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: var(--color-text-headings);
}

.card-content p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}


/* ------------------------ */
/* --- FORMS & INPUTS --- */
/* ------------------------ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-primary);
  text-align: left;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea {
  width: 100%;
  padding: 12px 15px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--color-text-primary);
  background-color: var(--color-background); /* Slightly different from main bg for depth */
  border: 1px solid transparent; /* Neomorphism prefers no hard border, shadow does the work */
  border-radius: var(--border-radius-medium);
  box-shadow: var(--neumorphic-shadow-concave);
  transition: var(--transition-smooth);
  outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  background-color: var(--color-surface);
  box-shadow: inset -3px -3px 7px var(--shadow-light-source),
              inset 3px 3px 7px var(--shadow-dark-source),
              0 0 0 2px var(--color-accent-strong); /* Focus ring */
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch .switch-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-background-alt);
  border-radius: 34px;
  box-shadow: var(--neumorphic-shadow-concave);
  transition: var(--transition-smooth);
}

.switch-label:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--color-surface);
  border-radius: 50%;
  box-shadow: var(--neumorphic-shadow-convex);
  transition: var(--transition-smooth);
}

.switch-input:checked + .switch-label {
  background-color: var(--color-accent-strong);
  box-shadow: var(--neumorphic-shadow-concave); /* Keep concave for the track */
}
.switch-input:checked + .switch-label:before {
  transform: translateX(26px);
  box-shadow: var(--neumorphic-shadow-convex); /* Ball remains convex */
}


/* ------------------------ */
/* --- HERO SECTION --- */
/* ------------------------ */
.hero-section {
  /* background-image handled inline with linear-gradient and data-prompt */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--color-text-light);
  padding: 120px 20px 80px; /* More padding top due to fixed header */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-height: calc(100vh - var(--header-height)); Remove if too large, height is natural */
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--color-text-light);
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  margin-bottom: 20px;
}

.hero-subtext { /* Already specified color: #FFFFFF in HTML */
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.7;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero-section .cta-button {
  padding: 15px 35px;
  font-size: 1.1rem;
  background-color: rgba(255,255,255,0.2); /* Semi-transparent button on hero */
  border: 2px solid var(--color-text-light);
  color: var(--color-text-light);
  box-shadow: none; /* Remove neomorphic shadow for this specific button style */
}
.hero-section .cta-button:hover {
  background-color: var(--color-text-light);
  color: var(--color-accent-strong);
}

/* ------------------------ */
/* --- SERVICES SECTION --- */
/* ------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ------------------------ */
/* --- OUR PROCESS SECTION --- */
/* ------------------------ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: var(--container-width);
  margin: 0 auto 40px auto;
  text-align: center;
}

.process-step {
  padding: 20px;
  background-color: var(--color-surface);
  border-radius: var(--border-radius-soft);
  box-shadow: var(--neumorphic-shadow-convex);
  transition: var(--transition-smooth);
}
.process-step:hover {
  transform: translateY(-5px);
}

.process-icon-placeholder {
  font-size: 2.5rem;
  color: var(--color-accent-strong);
  margin-bottom: 15px;
  /* Replace with actual animated icons or SVGs */
  padding: 15px;
  display: inline-block;
  background-color: var(--color-background);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  line-height: 40px; /* Adjust for icon */
  box-shadow: var(--neumorphic-shadow-concave);
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.settings-toggle-example {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background-color: var(--color-surface);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--neumorphic-shadow-convex);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.settings-toggle-example label {
    margin-right: 10px;
}

/* ------------------------ */
/* --- STATISTICS SECTION --- */
/* ------------------------ */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: var(--container-width);
  margin: 0 auto 40px auto;
  text-align: center;
}

.stat-item {
  padding: 25px;
  background-color: var(--color-surface);
  border-radius: var(--border-radius-soft);
  box-shadow: var(--neumorphic-shadow-convex);
}

.stat-icon-placeholder {
  font-size: 2.5rem;
  color: var(--color-accent-strong);
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-text-headings);
  margin-bottom: 5px;
}

/* ------------------------ */
/* --- INSIGHTS SECTION (CAROUSEL) --- */
/* ------------------------ */
.insights-carousel-container {
  /* Basic styling for carousel wrapper. JS will handle items. */
  display: flex; /* For simple horizontal scroll or JS-controlled slides */
  overflow-x: auto; /* Allows horizontal scrolling if items overflow */
  gap: 20px;
  padding-bottom: 20px; /* Space for scrollbar if visible */
  max-width: var(--container-width);
  margin: 0 auto;
}

.insights-carousel-container .insight-card {
  min-width: 320px; /* Minimum width for carousel items */
  flex-shrink: 0; /* Prevent items from shrinking */
}


/* ------------------------ */
/* --- GALLERY SECTION --- */
/* ------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--neumorphic-shadow-convex);
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 200px; /* Fixed height for gallery images */
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:hover {
  box-shadow: -8px -8px 16px var(--shadow-light-source),
               8px 8px 16px var(--shadow-dark-source);
}

/* ------------------------ */
/* --- RESOURCES SECTION --- */
/* ------------------------ */
.resources-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.resource-item h4 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.resource-item h4 a {
  color: var(--color-text-headings);
}
.resource-item h4 a:hover {
  color: var(--color-accent-strong);
}

/* ------------------------ */
/* --- CONTACT SECTION --- */
/* ------------------------ */
.contact-form {
  max-width: 700px;
  margin: 0 auto 40px auto;
  padding: 30px;
  background-color: var(--color-surface);
  border-radius: var(--border-radius-soft);
  box-shadow: var(--neumorphic-shadow-convex);
}

.contact-details {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.contact-details h3 {
    margin-bottom: 15px;
}


/* ------------------------ */
/* --- FOOTER --- */
/* ------------------------ */
.site-footer {
  background-color: var(--color-background-alt);
  padding: 40px 20px 20px;
  color: var(--color-text-secondary);
  text-align: center;
  box-shadow: inset 0 5px 10px rgba(0,0,0,0.05); /* Inner shadow from top */
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: var(--container-width);
  margin: 0 auto 30px auto;
  text-align: left;
}

.footer-column h4 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--color-text-headings);
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: var(--color-text-secondary);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--color-accent-strong);
  text-decoration: underline;
}

.social-links-text a {
  display: inline-block;
  margin-right: 10px; /* For horizontal layout if needed, or use li margin */
  font-weight: 500;
}
.social-links-text a:last-child {
  margin-right: 0;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  font-size: 0.9rem;
}


/* ------------------------ */
/* --- UTILITY CLASSES & ANIMATIONS --- */
/* ------------------------ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center {
  text-align: center;
}

/* Parallax background example (simple) */
.parallax-background-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ------------------------ */
/* --- SPECIFIC PAGE STYLES --- */
/* ------------------------ */

/* Success Page */
.success-page-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 40px 20px;
  background-color: var(--color-background);
}
.success-page-container .card {
    max-width: 500px;
    width: 100%;
}
.success-page-container h1 {
    color: var(--color-text-headings);
    font-size: 2.5rem;
}
.success-page-container p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.success-page-container .cta-button {
    margin-top: 20px;
}


/* Privacy & Terms Pages */
.privacy-page-container,
.terms-page-container {
  padding-top: calc(var(--header-height) + 40px); /* Header height + extra space */
  padding-bottom: var(--section-padding-y);
  max-width: 900px;
  margin: 0 auto;
}
.privacy-page-container h1,
.terms-page-container h1 {
    margin-bottom: 30px;
}
.privacy-page-container h2,
.terms-page-container h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

/* ------------------------ */
/* --- RESPONSIVENESS --- */
/* ------------------------ */
@media (max-width: 992px) {
  h1 { font-size: 2.5rem; }
  h2, .section-title { font-size: 2rem; }
  .hero-content h1 { font-size: 3rem; }
  .hero-subtext { font-size: 1.15rem; }

  .services-grid,
  .process-steps,
  .stats-container,
  .gallery-grid,
  .resources-list,
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .main-navigation {
    display: none; /* Hide desktop nav */
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--color-surface);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    flex-direction: column;
    padding: 10px 0;
    border-top: 1px solid var(--color-border);
  }

  .main-navigation.active {
    display: flex; /* Show mobile nav */
  }

  .main-navigation ul {
    flex-direction: column;
    width: 100%;
  }

  .main-navigation li {
    margin: 0;
    width: 100%;
    text-align: center;
  }

  .main-navigation a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid var(--color-background-alt);
  }
  .main-navigation li:last-child a {
    border-bottom: none;
  }
  .main-navigation a:hover,
  .main-navigation a.active {
    background-color: var(--color-background-alt); /* Different hover for mobile nav */
    box-shadow: none;
  }

  .burger-menu {
    display: block; /* Show burger icon */
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 40px);
  }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-subtext { font-size: 1.1rem; }

  .section-title { font-size: 1.8rem; margin-bottom: 30px;}
  .section-summary { font-size: 1rem; }

  .footer-content {
    grid-template-columns: 1fr; /* Stack columns */
    text-align: center;
  }
  .footer-column {
    margin-bottom: 20px;
  }
  .footer-column ul {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2, .section-title { font-size: 1.6rem; }
  .hero-content h1 { font-size: 2.2rem; }

  .cta-button, button, input[type="submit"], input[type="button"] {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  .hero-section .cta-button {
    padding: 12px 25px;
  }

  .card, .resource-item, .insight-card {
    padding: 20px;
  }
  .card-image {
    height: 180px;
  }
}
*{
  opacity: 1 !important;
}