#header-container {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding-left: 15px;
	padding-right: 15px;
}

#header-container.theme-red {
	background: linear-gradient(180deg, #BA654D, #3A231B);
}

#header-container.theme-green {
	background: linear-gradient(180deg, #48583c, #1b2017);
}

#desktop-content {
	display: none;
	margin-top: 0.4rem;
}

#header-image-container {
	position: relative;
	width: 100%;
	max-width: 500px; /* optional */
	aspect-ratio: 1327 / 1830; /* maintains shape, adjust to your ipad png */
}

#ipad-border-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	pointer-events: none;
}

#title-page-image {
	position: absolute;
    top: 3.0%;
    left: 3.5%;
    width: 92.5%;
    height: 94.5%;
    object-fit: cover;
    border-radius: 4% / 3%;
}

.banner-image {
	width: 90%;
}

.txt-white {
	color: white;
}


#subtitle {
	color: white;
	margin-bottom: .4rem;
	text-align: center;
	font-size: 2rem;
	font-family: var(--font-4);
}

#quote-text {
	max-width: 800px; 
	font-style: italic; 
	font-size: 24px; 
	opacity: 0.7; 
	font-family: Nunito
}

@media only screen and (max-width: 576px) {
	#main-header-image {
		right: calc(45% - 200px) !important;
	}
}

#second-header-image {
	width: 440px;
	position: absolute;
	top: 120px;
	right: calc(35% - 400px);
	transform: rotate(-15deg);
}

#main-header-image {
	width: 440px;
	position: absolute;
	top: 60px;
	left: calc(35% - 440px);
	transform: rotate(-7deg);
}

.mock-cnt {
	position: relative;
	max-width: 360px;
	width: 80vw;
	height: 470px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mock-img {
	border-radius: 5px;
	height: 470px;
	object-fit: contain;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

#main-title {
	color: white; 
	text-align: center; 
}

.match-sect-curved-top {
    padding-bottom: 50px;
}

.curved-top {
    position: relative;
    clip-path: ellipse(100% 50% at 50% 50%);
    transform: translateY(-50px);
    background-color: white;
    z-index: 1;
    padding-bottom: 30px !important;
}

@media (max-width: 768px) { 
    .curved-top {   
        clip-path: ellipse(120% 50% at 50% 50%);
    }
}


.h2-question {
	margin-bottom: 2rem;
	font-family: var(--font-1);
}

.value-list-icon {
    width: 100px;
    height: 100px;
    border-radius: 999px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-bottom: 30px;
}

.value-list-icon.theme-green {
	background: linear-gradient(135deg, rgba(233, 201, 107, 0.8) 0%, rgb(38 95 14) 100%);
}

.value-list-icon.theme-red {
	background: linear-gradient(135deg, rgba(233, 201, 107, 0.8) 0%, rgba(177, 76, 50, 1) 100%);
}

.value-list-icon svg {
    width: 56px;
    height: 56px;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2 equal-width columns */
	grid-template-rows: repeat(2, 1fr);    /* 2 equal-height rows */
	gap: 10px; /* optional spacing between items */
}
  
.grid-item {
	padding: 20px;
}

.italic {
	font-style: italic;
}

/* Common Components */
.subtext {
	color: grey;
}

.round-button {
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	position: relative;
	cursor: pointer;
	outline: none;
	margin-top: 20px;
	margin-right: 10px;
	margin-left: 10px;
	fill: #fff;
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
}

.round-button.theme-green {
	background-color: rgb(80, 104, 75, 0.6);
}

.round-button.theme-red {
	background-color: rgba(50, 20, 13, 0.4); /* Use this or rgb(221 157 101 / 60%) - they differ */
}

.round-button svg {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.round-button.theme-green:active {
	background-color: rgb(80, 104, 75, 1);
}

.round-button.theme-red:active {
	background-color: rgba(50, 20, 13, 1); /* Use this or rgba(147, 118, 93, 1) - they differ */
}

/* Ellipse Effects */
.ellipse-green {
	position: absolute;
	background-image: linear-gradient(
		45deg,
		rgba(85, 103, 78, 1),
		rgba(85, 103, 78, 0)
	);
	border-radius: 50%;
	transform: rotate(15deg);
	filter: blur(7px);
}

.ellipse-red {
	position: absolute;
	background-image: linear-gradient(
		45deg,
		rgba(177, 76, 50, 1),
		rgba(177, 76, 50, 0)
	);
	border-radius: 50%;
	filter: blur(7px);
}

.ellipse-yellow {
	position: absolute;
	background-image: linear-gradient(
		45deg,
		rgba(233, 201, 107, 0.4),
		rgba(58, 35, 27, 0)
	);
	border-radius: 50%;
	transform: rotate(15deg);
	filter: blur(7px);
}

.ellipse-green-red {
	position: absolute;
	background-image: linear-gradient(
		45deg,
		rgba(85, 103, 78, 0.8) 30%,
		rgba(177, 76, 50, 0.8) 90%
	);
	border-radius: 50%;
	filter: blur(7px);
}

.ellipse-yellow-red {
	position: absolute;
	background-image: linear-gradient(
		45deg,
		rgba(233, 201, 107, 0.4) 30%,
		rgba(177, 76, 50, 0.8) 90%
	);
	border-radius: 50%;
	filter: blur(7px);
}

.ellipse-yellow-green {
	position: absolute;
	background-image: linear-gradient(
		45deg,
		rgba(233, 201, 107, 0.3) 30%,
		rgba(85, 103, 78, 0.2) 90%
	);
	border-radius: 50%;
	filter: blur(7px);
}