/* Full Width CTA Styles */
.full-width-cta {
  background: #f5f5f5;
  color: #333;
  padding: 60px 0;
  margin: 0;
  margin-bottom: 0 !important;
  text-align: center;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Override any existing layout styles for CTA */
.layout-container.basic-page .section-content .full-width-cta .inner-container,
.full-width-cta .inner-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  grid-template-columns: none !important;
  grid-gap: 0 !important;
  gap: 0 !important;
}

.full-width-cta .cta-headline {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: #333;
  width: 100%;
  text-align: center;
}

.full-width-cta .cta-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 30px 0;
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.full-width-cta .cta-text p {
  margin: 0 0 15px 0;
  color: #666;
}

.full-width-cta .cta-text p:last-child {
  margin-bottom: 0;
}

.full-width-cta .cta-button-wrapper {
  margin-top: 15px;
  width: 100%;
  text-align: center;
}

.full-width-cta .cta-button {
  display: inline-block;
  background: #C05010;
  color: white;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid #C05010;
}

.full-width-cta .cta-button:hover {
  background: #E06515;
  border-color: #E06515;
  color: white;
  text-decoration: none;
}

/* Annual Partners Page Only - Left Align Button Groups */
.page-node-page.node-id-299 .paragraph--type--button {
  text-align: left;
  justify-content: left;
}

/* Reduce space between paragraph and button on annual partners page */
.page-node-page.node-id-299 .paragraph--type--button-group {
  margin-top: 10px !important;
  justify-content: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  .full-width-cta {
    padding: 40px 0;
  }
  
  .full-width-cta .cta-headline {
    font-size: 2rem;
  }
  
  .full-width-cta .cta-text {
    font-size: 1rem;
  }
  
  .full-width-cta .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}