/* ===== VARIABLES ===== */
:root {
  /* Color Scheme - Complementary */
  --primary-color: #3273dc;
  --primary-dark: #205bbc;
  --primary-light: #5e90e5;
  --secondary-color: #dc7a32;
  --secondary-dark: #b35a1a;
  --secondary-light: #e79355;
  --accent-color: #32dc9a;
  --accent-dark: #20bc7f;
  --accent-light: #55e7b3;
  
  /* Neutral Colors */
  --dark: #1a1a2e;
  --dark-medium: #333545;
  --medium: #595b74;
  --light-medium: #8e8fa4;
  --light: #f5f5f7;
  
  /* Typography */
  --heading-font: 'Manrope', sans-serif;
  --body-font: 'Rubik', sans-serif;
  
  /* Shadows & Effects */
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  --btn-shadow: 0 5px 15px rgba(50, 115, 220, 0.3);
  --text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.7s ease;
  
  /* Border Radius */
  --radius-small: 5px;
  --radius-medium: 10px;
  --radius-large: 20px;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
}

/* ===== RESET & BASE STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark-medium);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section {
  padding: var(--space-lg) 0;
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-header .title {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.section-header .title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: var(--radius-small);
}

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

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-small);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--btn-shadow);
}

.button.is-primary {
  background-color: var(--primary-color);
  color: white;
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(50, 115, 220, 0.4);
}

.button.is-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.button.is-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(220, 122, 50, 0.4);
}

.button.is-light {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.button.is-light:hover {
  background-color: var(--primary-light);
  color: white;
  transform: translateY(-3px);
}

.button.is-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.button.is-medium {
  padding: 0.85rem 1.75rem;
  font-size: 1.05rem;
}

.button.is-fullwidth {
  width: 100%;
}

.button.is-primary.is-light {
  background-color: rgba(50, 115, 220, 0.1);
  color: var(--primary-color);
  box-shadow: none;
}

.button.is-primary.is-light:hover {
  background-color: rgba(50, 115, 220, 0.2);
  transform: translateY(-2px);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.navbar-item {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark-medium);
  transition: var(--transition-fast);
  padding: 1rem;
}

.navbar-item:hover {
  color: var(--primary-color);
}

.navbar-brand {
  padding: 0.5rem 0;
}

.navbar-brand .title {
  color: var(--primary-color);
  margin-bottom: 0;
}

.navbar-burger {
  color: var(--dark-medium);
  height: 3.25rem;
  width: 3.25rem;
}

.navbar-burger span {
  background-color: var(--dark-medium);
  height: 2px;
  width: 20px;
}

.navbar-burger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.navbar-menu.is-active {
  box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
}

@media screen and (max-width: 1023px) {
  .navbar-menu {
    padding: 0;
  }
  
  .navbar-item {
    text-align: center;
    padding: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-xl) 0;
}

.hero .title,
.hero .subtitle,
.hero-description {
  color: white;
  text-shadow: var(--text-shadow);
}

.hero .title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}

/* ===== SERVICES SECTION ===== */
.service-card {
  height: 100%;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-medium);
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.service-card .card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}

.service-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  text-align: center;
}

.service-card .title {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-card .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: var(--radius-small);
}

/* ===== STATISTICS SECTION ===== */
.statistics-section {
  background-color: var(--light);
  padding: var(--space-xl) 0;
}

.stat-card {
  padding: 2rem;
  background-color: white;
  border-radius: var(--radius-medium);
  box-shadow: var(--card-shadow);
  transition: var(--transition-medium);
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.stat-card .icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.stat-card .title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-card .subtitle {
  font-size: 1.1rem;
  color: var(--medium);
  font-weight: 500;
}

/* ===== EXTERNAL LINKS SECTION ===== */
.external-links-section {
  padding: var(--space-xl) 0;
}

.external-link-card {
  height: 100%;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-medium);
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.external-link-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.external-link-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.external-link-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.external-link-card:hover .card-image img {
  transform: scale(1.05);
}

.external-link-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  text-align: center;
}

.external-link-card .title {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: var(--space-xl) 0;
}

.blog-card {
  height: 100%;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-medium);
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.blog-card .card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.blog-card:hover .card-image img {
  transform: scale(1.05);
}

.blog-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  text-align: center;
}

.blog-card .date {
  font-size: 0.9rem;
  color: var(--light-medium);
  margin-bottom: 0.75rem;
}

.blog-card .title {
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--medium);
  margin-bottom: 1.5rem;
}

/* ===== EVENTS SECTION ===== */
.events-section {
  padding: var(--space-xl) 0;
}

.event-card {
  height: 100%;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-medium);
  background-color: white;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.event-card .card-content {
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
}

.event-date {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem;
  border-radius: var(--radius-small);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  text-align: center;
}

.event-date .day {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.event-date .month {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-details {
  flex-grow: 1;
}

.event-details .title {
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.event-details .location,
.event-details .time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--medium);
  font-size: 0.95rem;
}

.event-details .description {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  color: var(--medium);
}

@media screen and (max-width: 768px) {
  .event-card .card-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .event-date {
    margin-bottom: 1rem;
  }
}

/* ===== WEBINARS SECTION ===== */
.webinars-section {
  padding: var(--space-xl) 0;
}

.webinar-card {
  height: 100%;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-medium);
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.webinar-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.webinar-card .card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.webinar-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.webinar-card:hover .card-image img {
  transform: scale(1.05);
}

.webinar-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  text-align: center;
}

.webinar-card .date {
  font-size: 0.9rem;
  color: var(--light-medium);
  margin-bottom: 0.75rem;
}

.webinar-card .title {
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.webinar-card p {
  color: var(--medium);
  margin-bottom: 1.5rem;
}

/* ===== INSIGHTS SECTION ===== */
.insights-section {
  padding: var(--space-xl) 0;
}

.insight-card {
  height: 100%;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-medium);
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insight-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.insight-card .card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.insight-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.insight-card:hover .card-image img {
  transform: scale(1.05);
}

.insight-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  text-align: center;
}

.insight-card .title {
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.insight-card p {
  color: var(--medium);
}

/* ===== CLIENTS SECTION ===== */
.clientele-section {
  padding: var(--space-xl) 0;
}

.client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--radius-medium);
  box-shadow: var(--card-shadow);
  height: 120px;
  transition: var(--transition-medium);
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.client-logo img {
  max-width: 80%;
  max-height: 60px;
  margin: 0 auto;
}

.testimonial-carousel {
  margin-top: 4rem;
}

.testimonial-item {
  padding: 3rem;
  background-color: white;
  border-radius: var(--radius-medium);
  box-shadow: var(--card-shadow);
  transition: var(--transition-medium);
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.testimonial-item .quote {
  position: relative;
  padding: 0 2rem;
}

.testimonial-item .quote i {
  color: var(--primary-light);
  opacity: 0.5;
}

.testimonial-item .quote i:first-child {
  position: absolute;
  top: -10px;
  left: 0;
}

.testimonial-item .quote i:last-child {
  position: absolute;
  bottom: -10px;
  right: 0;
}

.testimonial-item .quote p {
  font-size: 1.1rem;
  color: var(--dark-medium);
  line-height: 1.8;
  margin: 1.5rem 0;
}

.client-info .name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.client-info .position {
  font-size: 0.95rem;
  color: var(--light-medium);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: var(--space-xl) 0;
}

.contact-info {
  padding: 2rem;
  background-color: white;
  border-radius: var(--radius-medium);
  box-shadow: var(--card-shadow);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.25rem;
  border-radius: 50%;
  margin-right: 1rem;
}

.info-content .title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.info-content p {
  margin-bottom: 0;
  color: var(--medium);
}

.contact-form-container {
  padding: 2rem;
  background-color: white;
  border-radius: var(--radius-medium);
  box-shadow: var(--card-shadow);
}

.contact-form-container .label {
  color: var(--dark-medium);
  font-weight: 600;
}

.contact-form-container .input,
.contact-form-container .textarea,
.contact-form-container .select select {
  border: 2px solid #e1e1e1;
  border-radius: var(--radius-small);
  font-family: var(--body-font);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.contact-form-container .input:focus,
.contact-form-container .textarea:focus,
.contact-form-container .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(50, 115, 220, 0.25);
}

.contact-form-container .field {
  margin-bottom: 1.5rem;
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(20%);
  transition: var(--transition-medium);
}

.map-container:hover {
  filter: grayscale(0%);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
}

.footer .title {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-description {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-right: 1rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  color: white;
  text-decoration: underline;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
  margin-right: 0.75rem;
  color: var(--primary-light);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.legal-links a:hover {
  color: white;
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 600px;
  padding: 3rem;
  background-color: white;
  border-radius: var(--radius-medium);
  box-shadow: var(--card-shadow);
}

.success-icon {
  font-size: 5rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.success-title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.success-message {
  font-size: 1.1rem;
  color: var(--medium);
  margin-bottom: 2rem;
}

/* ===== PRIVACY & TERMS PAGES ===== */
.content-page {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

.content-page .container {
  max-width: 900px;
}

.content-page .title {
  margin-bottom: 2rem;
  text-align: center;
}

.content-page p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.content-page h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.content-page h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.content-page ul, 
.content-page ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.content-page li {
  margin-bottom: 0.5rem;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 46, 0.95);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin-bottom: 0;
  flex-grow: 1;
}

/* ===== ANIMATIONS & TRANSITIONS ===== */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ===== UTILITY CLASSES ===== */
.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.has-background-light {
  background-color: var(--light);
}

.has-text-white {
  color: white;
}

.container-fluid {
  width: 100%;
  padding: 0;
}

.p-0 {
  padding: 0;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media screen and (max-width: 1023px) {
  .container {
    padding: 0 2rem;
  }
  
  .section {
    padding: var(--space-md) 0;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 5rem;
  }
  
  .section-header {
    margin-bottom: var(--space-md);
  }
  
  .section-header .title {
    font-size: 2rem;
  }
  
  .navbar-brand .title {
    font-size: 1.25rem;
  }
  
  .service-card .card-image,
  .blog-card .card-image,
  .insight-card .card-image,
  .webinar-card .card-image,
  .external-link-card .card-image {
    height: 180px;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.25rem;
  }
  
  .service-card .card-image,
  .blog-card .card-image,
  .insight-card .card-image,
  .webinar-card .card-image,
  .external-link-card .card-image {
    height: 160px;
  }
  
  .buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .buttons .button {
    width: 100%;
    margin-bottom: 0.75rem;
  }
}

.title.is-2{
  margin-bottom: 40px;
}