/* === BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f3f4f6 100%);
  overflow-x: hidden;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-knime {
  width: 160px;
  height: 56px;
  object-fit: contain;
}

.logo-dvw {
  width: 160px;
  height: 56px;
  object-fit: contain;
  padding-top: 1rem;
}

/* === LANGUAGE SELECTOR === */
.language-selector {
  position: relative;
}

.language-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1a1a1a;
}

.language-button:hover {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.2) 100%);
  border-color: rgba(251, 191, 36, 0.4);
}

.icon-globe {
  color: #ca8a04;
}

.icon-chevron {
  color: #6b7280;
  transition: transform 0.3s ease;
}

.icon-chevron.rotate {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  width: 192px;
  background: white;
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  border-left: 4px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.language-option:hover {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
}

.language-option.active {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.2) 100%);
  border-left-color: #eab308;
  color: #ca8a04;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.2) 0%, transparent 100%);
}

.hero-content {
  max-width: 1152px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #1a1a1a 0%, #eab308 50%, #1a1a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: #6b7280;
}

.powered-logo {
  height: 2rem;
  object-fit: contain;
}

/* === BUTTONS === */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #fbbf24 0%, #eab308 100%);
  color: #000;
  border: none;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
  box-shadow: 0 25px 50px -12px rgba(251, 191, 36, 0.25);
  transform: scale(1.05);
}

.icon-arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .icon-arrow {
  transform: translateX(4px);
}

.fixed-contact-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #fbbf24 0%, #eab308 100%);
  color: #000;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.fixed-contact-button:hover {
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
  box-shadow: 0 25px 50px -12px rgba(251, 191, 36, 0.5);
  transform: scale(1.05);
}

/* === SECTIONS === */
.services-section,
.experience-section,
.partners-section,
.contact-section,
.insights-section {
  padding: 6rem 1.5rem;
}

.services-section {
  background: rgba(249, 250, 251, 0.5);
}

.experience-section {
  background: linear-gradient(135deg, rgba(254, 252, 232, 1) 0%, #ffffff 50%, rgba(249, 250, 251, 1) 100%);
}

.partners-section {
  background: linear-gradient(180deg, #ffffff 0%, rgba(254, 252, 232, 0.2) 50%, rgba(249, 250, 251, 0.5) 100%);
}

.contact-section {
  background: linear-gradient(135deg, rgba(254, 252, 232, 0.5) 0%, #ffffff 50%, rgba(249, 250, 251, 1) 100%);
}

.insights-section {
  background: #ffffff;
}

/* === CONTAINERS === */
.container {
  max-width: 1280px;
  margin: 0 auto;
}

.container-small {
  max-width: 1024px;
  margin: 0 auto;
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #eab308 0%, #1a1a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.5rem;
  color: #4b5563;
  max-width: 768px;
  margin: 0 auto;
}

/* === SERVICES === */
.services-tabs-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.services-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-tab {
  padding: 1rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.service-tab-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-tab:hover {
  border-color: rgba(251, 191, 36, 0.5);
  background: rgba(251, 191, 36, 0.05);
}

.service-tab.active {
  background: linear-gradient(135deg, #fbbf24 0%, #eab308 100%);
  border-color: #eab308;
  color: #000;
}

.services-content {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
  min-height: 500px;
}

.service-content-item {
  display: none;
  
}

.service-content-item.active {
  display: block;
}

.service-content-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(251, 191, 36, 0.2);
}

.service-content-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.service-content-subtitle {
  font-size: 1.25rem;
  color: #eab308;
  font-weight: 600;
}

.service-content-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 2rem;
  white-space: pre-line;
}

.service-title-with-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-title-logo {
  height: 70px;
  width: auto;
  display: block;
  margin-left: auto;
}

.service-case-study {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, transparent 100%);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border-left: 4px solid #eab308;
  margin-top: 2rem;
}

.case-study-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-case-study-title,
.case-study-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.case-study-logo {
  height: 85px;
  width: auto;
  margin-bottom: 0;
}

.service-case-study-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #4b5563;
}

/* === SERVICES CONTENT HEIGHT FIX === */
.services-content {
  background: white;
 padding: 2.5rem 2.5rem 6rem 2.5rem; /* Aumenta solo il padding in basso */
  border-radius: 1rem;
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
  /* Set a fixed height based on the virtual assistant card */
  height: 400px; /* Adjust this value as needed */
  overflow-y: auto;
   /* Aggiungi padding in basso per lo spazio extra */

}

.service-content-item {
  display: none;
  height: 100%;
  /* Aggiungi padding in basso per garantire spazio extra */
  padding-bottom: 20px;
}

.service-content-item.active {
  display: block;
}

.scroll-spacer {
  height: 40px;
}

/* Style the scrollbar */
.services-content::-webkit-scrollbar {
  width: 8px;
}

.services-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.services-content::-webkit-scrollbar-thumb {
  background: #eab308;
  border-radius: 10px;
}

.services-content::-webkit-scrollbar-thumb:hover {
  background: #d97706;
}

/* Ensure the content inside doesn't overflow */
.service-content-header,
.service-content-text,
.service-case-study {
  max-width: 100%;
}



/* === EXPERIENCE === */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.experience-card {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  text-align: center;
}

.experience-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border-color: rgba(251, 191, 36, 0.6);
}

.experience-icon-wrapper {
  display: inline-flex;
  padding: 4px;
  background: transparent;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.experience-icon {
  display: inline-flex;
  padding: 0.75rem;
  background: linear-gradient(135deg, #fbbf24 0%, #eab308 100%);
  border-radius: 0.75rem;
  color: #000;
}

.experience-icon svg {
  width: 24px;
  height: 24px;
}

.experience-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.experience-description {
  color: #4b5563;
  line-height: 1.6;
}

/* === PARTNERS === */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.partner-logo img {
  max-height: 3rem;
  max-width: 6rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}



/* === INSIGHTS/WEBINAR/BLOG === */
.webinar-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

.webinar-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.webinar-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.webinar-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  white-space: pre-line;
}



.webinar-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Rapporto 16:9 */
    height: 0;
    overflow: hidden;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
     cursor: pointer;
  display: inline-block;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.wistia_embed {
    width: 100%;
    height: 100%;
}

.video-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



.video-placeholder .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color:  #413c3c;
  pointer-events: none;
}


.blog-section {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: stretch;
}

.blog-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.blog-tab {
  padding: 16px 24px;
  min-height: 100px;
  background: transparent;
  border: 2px solid #eab308;
  border-radius: 12px;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  white-space: normal;
  line-height: 1.4;
  display: flex;
  align-items: center;
  text-align: center;
}

.blog-tab:hover {
  background: rgba(251, 191, 36, 0.1);
}

.blog-tab.active {
  background: linear-gradient(135deg, #fbbf24 0%, #eab308 100%);
  border-color: #eab308;
  color: #000000;
}

.blog-content {
  position: relative;
  height: 100%;
}

.blog-content-item {
  display: none;
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 40px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(251, 191, 36, 0.3);
  transition: all 0.3s ease;
}

.blog-content-item.active {
  display: block;
}

.blog-content-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.blog-content-text {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

/* Style the scrollbar */
.blog-content-item::-webkit-scrollbar {
  width: 8px;
}

.blog-content-item::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.blog-content-item::-webkit-scrollbar-thumb {
  background: #eab308;
  border-radius: 10px;
}

.blog-content-item::-webkit-scrollbar-thumb:hover {
  background: #d97706;
}

/* === CONTACT FORM === */
.contact-title {
  line-height: 1.4;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label,
.custom-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 0.5rem;
  display: block;
}

.form-group input,
.form-group textarea,
.custom-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.custom-input {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border-color: #e5e7eb;
}

.form-group input:focus,
.form-group textarea:focus,
.custom-input:focus {
  outline: none;
  border-color: #eab308;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.custom-input:focus {
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

.form-group textarea {
  resize: none;
}

.submit-button,
.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #fbbf24 0%, #eab308 100%);
  color: #000;
  border: none;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.submit-button {
  width: 100%;
}

.custom-button {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  width: auto;
  min-width: 150px;
  margin-top: 1.5rem;
}

.submit-button:hover,
.custom-button:hover {
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
  box-shadow: 0 25px 50px -12px rgba(251, 191, 36, 0.25);
}

.submit-button:hover {
  transform: scale(1.02);
}

.custom-button:hover {
  transform: translateY(-2px);
}

.custom-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* === HUBSPOT FORM === */
#hubspot-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hs-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.hs-form-field {
  margin-bottom: 1.5rem;
}

.hs-error-msgs {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  color: #ef4444;
  font-size: 0.875rem;
}

.form-success-message {
  text-align: center;
  color: #059669;
  font-weight: 600;
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #ecfdf5;
  border-radius: 0.5rem;
}

/* === FOOTER === */
.footer {
  background: #f3f4f6;
  border-top: 1px solid rgba(251, 191, 36, 0.2);
  padding: 4rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-about {
  grid-column: span 2;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logos img {
  height: 2.5rem;
  object-fit: contain;
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #eab308;
  margin-bottom: 1rem;
}

.footer p,
.footer a {
  color: #4b5563;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-item .icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-item a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #eab308;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #e5e7eb;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #eab308;
  color: #000;
}

.footer-bottom {
  border-top: 1px solid #d1d5db;
  padding-top: 2rem;
  text-align: center;
  color: #4b5563;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-on-scroll.animate-fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-tabs-container {
    grid-template-columns: 1fr;
  }

  .services-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-title-logo {
  width: 100px;
    height: auto;
  
}
}

@media (max-width: 768px) {
  .header-logos {
    flex-direction: column;
    gap: 0.5rem;
  }
  .service-title-with-logo {
    flex-direction: column;
   align-items: flex-start !important; /* force children to the left */
  justify-content: flex-start;
    text-align: left;   
  }
  .service-title-logo {
  align-self: flex-start;     /* ensure the image itself is left-aligned */
  margin: 0;                  /* remove center margins like margin: 0 auto */
  display: block;             /* avoid inline baseline quirks */
}

  .logo-knime,
  .logo-dvw {
    width: 120px;
    height: 42px;
  }

  .footer-about {
    grid-column: span 1;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .webinar-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .webinar-video {
    margin: 0 -20px;
    width: calc(100% + 40px);
  }

  .blog-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-tabs {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 20px;
    margin: 0 -20px;
  }

  .blog-tab {
    min-height: 100px;
    width: 100%;
    padding: 16px;
    font-size: 14px;
    justify-content: center;
    text-align: center;
  }

  .blog-content {
    position: static;
    height: auto !important;
  }

  .blog-content-item {
    position: static;
    height: auto;
    min-height: 300px;
  }
  

  .hs-form {
    padding: 1rem;
  }
}

@media (max-width: 640px) {
  .services-tabs {
    grid-template-columns: 1fr;
  }

  .services-content {
    padding: 1.5rem;
  }

  #hubspot-form-container {
    padding: 1.5rem;
  }

  .submit-button,
  .custom-button {
    width: 100%;
  }
}

