.subheading {
  	position: relative;
  	line-height: 24px;
  	font-weight: 500;
}
.heading {
  	align-self: stretch;
  	position: relative;
  	letter-spacing: -0.02em;
  	line-height: 60px;
}
.learn-more {
  	position: relative;
  	font-weight: 500;
}
.component-7 {
  	position: absolute;
  	top: 0px;
  	left: 0px;
  	border-radius: 8px;
  	background-color: #f2994a;
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	justify-content: center;
  	padding: 16px 24px;
}
.button {
  	width: 201px;
  	position: relative;
  	height: 47px;
  	text-align: center;
  	font-size: 16px;
  	color: #fff;
  	font-family: 'Gotham Pro';
}
.heading-and-action {
  	width: 100%;
  	display: flex;
  	flex-direction: row;
  	align-items: flex-start;
  	justify-content: space-between;
  	gap: 40px;
}
.supporting-text {
  	align-self: stretch;
  	position: relative;
  	line-height: 30px;
	font-size: 20px;
  	color: #475467;
	font-family: 'Gotham Pro';
}
.content {
  	flex: 1;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	padding: 12px 0px 0px;
  	font-size: 20px;
  	color: #475467;
  	font-family: 'Gotham Pro';
}
.heading-and-supporting-text {
  	align-self: stretch;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 64px;
  	font-size: 48px;
  	color: #101828;
  	font-family: Ubuntu;
}
.container {
  	width: 1280px;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	padding: 0px 32px;
  	box-sizing: border-box;
  	gap: 12px;
}
.header-section {
  	width: 100%;
  	position: relative;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	padding: 96px 0px;
  	box-sizing: border-box;
  	text-align: left;
  	font-size: 16px;
  	color: #f2994a;
  	font-family: 'Gotham Pro';
}

/* FAQ Section Styles */
.faq-section {
  width: 100%;
  padding: 80px 0;
}

.faq-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}


.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-answer {
  font-size: 16px;
  line-height: 1.6;
  color: #475467;
  font-family: 'Gotham Pro';
}

.faq-cta {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.cta-heading {
  font-size: 28px;
  color: #101828;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 18px;
  color: #475467;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: #F2994A;
  color: #FFFFFF;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: -2%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #E68A3E;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-cta {
    padding: 32px 24px;
  }
  
  .cta-heading {
    font-size: 24px;
  }
  
  .cta-text {
    font-size: 16px;
  }
}

/* Tablet Responsive Styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
    /* Header Section */
    .header-section {
        padding: 64px 32px;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 24px;
    }
    
    .heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .heading-and-supporting-text {
        gap: 32px;
    }
    
    .heading-and-action {
        width: 100%;
    }
    
    .supporting-text {
        font-size: 18px;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 64px 32px;
    }
    
    .faq-container {
        padding: 0 24px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .faq-cta {
        padding: 40px 32px;
    }
    
    .cta-heading {
        font-size: 26px;
    }
    
    .cta-text {
        font-size: 17px;
    }
}

/* Mobile Responsive Styles (up to 767px) */
@media screen and (max-width: 767px) {
    /* Header Section */
    .header-section {
        padding: 48px 4px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .heading {
        font-size: 28px;
        line-height: 36px;
    }
    
    .heading-and-supporting-text {
        flex-direction: column;
        gap: 24px;
    }

	.heading-and-action {
        flex-direction: column;
        gap: 8px;
    }
    
    .button {
        width: 100%;
    }
    
    .supporting-text {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 12px 0;
    }
    
    .faq-container {
        padding: 0 4px;
    }
    
    .faq-grid {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .faq-item {
        padding: 16px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    .faq-cta {
        padding: 32px 16px;
		margin: 20px;
    }
    
    .cta-heading {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .cta-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 10px 20px;
    }

	.component-7 {
    padding: 12px 16px;
    }

	.learn-more {
		font-size: 16px;
		font-weight: 400;
		font-family: 'Gotham pro';

	}
}

/* Small Mobile Devices (up to 480px) */
@media screen and (max-width: 480px) {
    .heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .faq-question {
        font-size: 15px;
    }
    
    .faq-answer {
        font-size: 13px;
    }
    
    .cta-heading {
        font-size: 20px;
    }
    
    .cta-text {
        font-size: 14px;
    }

	.faq-grid {
        grid-template-columns: 1fr;
	}

	.faq-cta{
		margin: 20px;
	}

	.cta-button {
        font-size: 14px;
    }

	.learn-more{
		font-size: 14px;
	}
}