@media (max-width: 767px) {
  .sec {
    padding-top: 70px!important; /* match your navbar height */
  }
}

@media (min-width: 768px) {
  .sec {
    padding-top: 80px; /* match your desktop navbar height */
  }
}

.prodfeat {
	border-radius:0px!important;	
	padding-top:60px;
	padding-left:20px!important;
}	

.prodfeat__img img {    
    width: 103%;      /* scale beyond container */
    max-width: 120%;
    height: auto;
    transform: scale(1.1);
	margin-top: -58px;	
}

@media (max-width: 767px) {
	.prodfeat__img img {    
		width: 110%;      /* scale beyond container */
		max-width: 120%;
		height: auto;
		transform: scale(1.1);
		margin-top: -28px;	
	}
}

.toggle-panel__text {
    display: inline-flex;
    text-decoration: none;
}

/*pricing table*/

.pricing-card {	
	/* background: linear-gradient(180deg, #29c1e8 0%, #1a5fb0 100%); */
	border-radius: 20px;
	padding: 30px 35px 40px;
	color: #ffffff;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card h2 {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	margin: 10px 0 25px;
}

.pricing-table {
	width: 100%;
	border-collapse: collapse;
}

.pricing-table tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.pricing-table tr:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.pricing-table td {
	padding: 18px 0;
	font-size: 16px;
}

.pricing-table td.label {
font-weight: 600;
text-align: left;
}

.pricing-table td.value {
font-weight: 700;
text-align: right;
}

/* Tablet adjust min/max to match your framework's grid */
@media (max-width: 1024px) and (min-width: 768px) {
  .toggle-panel {
    grid-template-columns: 1fr; /* stack image above text instead of side-by-side */
    /* or if it's flex: flex-direction: column; */
  }
  
  .toggle-panel__img {
    background-size: contain;   /* overrides the inline style */
    min-height: 500px;          /* adjust to taste, or use aspect-ratio instead */
  }
  
}

#togglesubscribe .toggle-panel {
    grid-template-columns: 1fr;
    width: 100%;
}

#togglesubscribe .toggle-panel:not(.is-hidden) {
    display: grid;
}

#togglesubscribe .toggle-panel.is-hidden {
    display: none;
}