@font-face { font-family: 'Inter'; font-weight: 300; font-style: normal; src: url('../fonts/inter/inter-300.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 400; font-style: normal; src: url('../fonts/inter/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 700; font-style: normal; src: url('../fonts/inter/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Isidora'; font-weight: 300; font-style: normal; src: url('../fonts/isidora/isidora-300.woff2') format('woff2'); }
@font-face { font-family: 'Isidora'; font-weight: 400; font-style: normal; src: url('../fonts/isidora/isidora-400.woff2') format('woff2'); }
@font-face { font-family: 'Isidora'; font-weight: 500; font-style: normal; src: url('../fonts/isidora/isidora-500.woff2') format('woff2'); }
@font-face { font-family: 'Isidora'; font-weight: 600; font-style: normal; src: url('../fonts/isidora/isidora-600.woff2') format('woff2'); }
@font-face { font-family: 'Isidora'; font-weight: 700; font-style: normal; src: url('../fonts/isidora/isidora-700.woff2') format('woff2'); }
/* Mobile First - Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    --lh: 1.55;
    font: 400 1.6rem / var(--lh) 'Inter', system-ui, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    letter-spacing: 0;
    text-transform: none;
    overflow-wrap: break-word;
}

/* Header Styles - Mobile First */
.header {
    background-color: #5C3873;
    padding: 1rem 0;
    position: relative;
    top: 0;
    z-index: 100;
}

.header h1{
    font: 700 30px / 1.00 'Isidora', system-ui, sans-serif;
    color: #ffffff;
	line-height: 36px;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.share-label {
    font: 700 0.8rem / 1 'Inter', system-ui, sans-serif;
    letter-spacing: 0.18em;
    color: #ffffff;
}

.share-icons {
    display: flex;
    gap: 0.5rem;
}

.share-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #31353E;
    background-color: #65DC9C;
    border: 1px solid #65DC9C;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.share-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.share-link:hover {
    background-color: #64c4e7;
    color: #31353e;
}

.page-container {
    width: calc(100% - max(1.3rem, 0px, 0px) * 2);
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.top1{
    padding-top: 3.2rem;
    padding-bottom: 7.2vw;
}

.top2{
    padding-bottom: 30px;    
}

.top2 .header-wrapper{
	display: flex;
	flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
}

.page-image img{
	width: 100%;
	border-radius: 12px;
}


.wawes{
    background-image: url('../images/waves.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 19px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.wawes-top{
    background-image: url('../images/top1-mask1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 42px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #4A90E2;
}

.logo img {
    max-width: 362px;
    height: 22px;
}

.nav-links {
    display: none;
}

.header-button {
    --lh: 2rem;
    background-color: #65DC9C;
    color: #31353e;
    font: 700 1rem / var(--lh) 'Isidora', system-ui, sans-serif;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    touch-action: manipulation;
    user-select: none;
    border: none;
    padding: 0 15px;
    border-radius: 50%;
    height: 32px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    max-width: 200px;
    border-radius: calc(3rem * 2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-button:hover {
    background-color: #64c4e7;
    color: #31353e
}

.header-button:active {
    transform: translateY(0);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 2rem 0 40px;
    background-color: #FFFFFF;
}

.container {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1rem;
}

.main-content h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.container p{
	color: #31353E;
	font-family: 'Isidora', system-ui, sans-serif;
	font-size: 18px;
	font-style: normal;
	line-height: 120%;
	margin-bottom: 28px;
}

.container p:last-child{
	margin-bottom: 0px;
}

.container.columns{
	display: flex;
    flex-direction: column-reverse;
}

.container h2{
	color: #000;
	font-family: 'Isidora', system-ui, sans-serif;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	margin-bottom: 28px;
}

.container ul{
	margin-left: 30px;
	margin-bottom: 28px;
}

.container ul:last-child{
	margin-bottom: 0px;
}

.container ul li{
	color: #000;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 155%;
}

.container hr{
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #F1E2D5;
	padding: 0;
	margin-bottom: 28px;
}

.container .form-column{
	background-color: #F8F0E9;
	background-image: url('../images/form-background.svg');
	background-position: calc(100% + 300px) 20px;
    background-repeat: no-repeat;
	border-radius: 16px;
	margin-bottom: 40px;
}

.container.single-column .form-column{
	margin-bottom: 0px;
}

.container .wFormContainer .wForm{
	background-color: transparent!important;
}

.container .wFormFooter{
	display: none!important;
}
.container .wFormContainer .wForm form {
    padding: 0 0.5rem 2rem 0.5rem!important;
}

.container .wFormContainer .actions .primaryAction {
    background-color: #5C3873 !important;
    border-color: #5C3873 !important;
}

.container .wForm .actions {
	text-align: left;
    padding: 10px 6px;
}

.container .saveAndResume input[type="text"], .container .saveAndResume input[type="password"], .container .required:not(.choices):not(select):not(.wfAutosuggest) {
    border: 1px solid #fff !important;
}

.container .wFormContainer .wForm .inputWrapper input[type="text"], .container .wFormContainer .wForm .inputWrapper input[type="password"], .container .wFormContainer .wForm .inputWrapper select, .container .wFormContainer .wForm .inputWrapper textarea {
    border: 1px solid #fff;
}

.container .oneField.field-container-D {
   width: 100%;
}

.form-column h2{
	color: #000!important;
	font-family: 'Isidora', system-ui, sans-serif!important;
	font-size: 18px!important;
	font-style: normal!important;
	font-weight: 700!important;
	line-height: 120%!important;
	margin-top: 0!important;
	margin-bottom: 0px !important;
}

/* Quiz Styles - Mobile First */
.quiz {
    margin-top: 2rem;
}

.quiz-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
}

.quiz-question {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.quiz-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #F8F0E9;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #F8F0E9;
}

.quiz-option:hover {
    border-color: #64db9c;
    background-color: #f0fff7;
}

.quiz-option input[type="radio"] {
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #4A90E2;
}

.quiz-option input[type="radio"]:checked + .option-text {
    color: #000;
    font-weight: 600;
}

.quiz-option:has(input[type="radio"]:checked) {
    border-color: #64db9c;
    background-color: #f0fff7;
}

.option-text {
    font-size: 1rem;
    color: #000;
    flex: 1;
    cursor: pointer;
}

.quiz-submit {
    background-color: #5C3873;
    color: #F8F0E9;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Isidora', system-ui, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.quiz-submit:hover {
    background-color: #64db9c;
    color: #31353e;
}

.quiz-submit:active {
    transform: translateY(0);
}

.quiz-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.quiz-answer {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

.quiz-answer.show {
    display: flex;
}

.quiz-options.hide {
    display: none;
}

.quiz-answer-text {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
    padding: 1rem;
    background-color: #f0fff7;
    border-left: 4px solid #65DC9C;
    border-radius: 4px;
}

.next-question {
    background-color: #64db9c;
    color: #31353e;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Isidora', system-ui, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    align-self: flex-start;
    text-transform: uppercase;
}

.next-question:hover {
    background-color: #5c3873;
    color: #f8f0e9;
}

.next-question:active {
    transform: translateY(0);
}

.finish-quiz {
    background-color: #64db9c;
    color: #31353e;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Isidora', system-ui, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    align-self: flex-start;
    text-transform: uppercase;
}

.finish-quiz:hover {
    background-color: #5c3873;
    color: #f8f0e9;
}

.finish-quiz:active {
    transform: translateY(0);
}

/* Footer Styles - Mobile First */

.footer {
    background-color: #FFFFFF;
    color: #f8f0e9;
    padding: 16px 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.footer-menu {
    display: flex;
    flex-direction: row;
    gap: initial;
    width: 100%;
}
.menu-footer-menu-container{
	width: 100%;
}
.footer-menu ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
	column-gap: 24px;
}

.footer-link {
    color: #F8F0E9;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0;
    transition: color 0.3s ease;
    border-radius: 4px;
}

.footer-menu a{
	color: #5C3873;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	text-decoration: none;
}

.footer-menu a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-top: 0.5rem;
}

/* Tablet Styles - 768px and up */
@media (min-width: 768px) {

    .page-container {
        width: calc(100% - max(1.5rem, 0px, 0px) * 2);
    }
    
    .top1{
        padding-top: 2.8rem;
        padding-bottom: 20px;
    }

    .top2{
        padding-bottom: 4rem;        
    }
	
	.header .top2.simple{
		padding-top: 2rem;
	}
	
	.top2 .header-wrapper{
		gap: 20px;
		flex-direction: row;		
	}

    .wawes {
        height: 37px;
    }

    .wawes-top {
        height: 40px;
    }

    .header h1{
        font: 700 3.0rem / 1.00 'Isidora', system-ui, sans-serif;
		width: 80%;
    }	
	
	.header .simple h1{
		width: 100%;
    }
	
	.container .form-column{
		background-position: calc(100% + 170px) 20px;
		padding: 0 10px;
	}

    .social-share {
        margin-top: 1.25rem;
        gap: 1.25rem;
    }

    .share-label {
        font-size: 0.9rem;
    }

    .share-link {
        width: 44px;
        height: 44px;
    }

    .logo svg {
        width: 40px;
        height: 40px;
    }

    .logo img {
        max-width: 100%;
        height: 42px;
    }

    .nav-links {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0;
        margin-left: auto;
    }

    .nav-link {
        font-family: 'Isidora', system-ui, sans-serif;
        color: #F8F0E9;
        text-decoration: none;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%; /* 22.4px */
        padding: 0.7rem 1rem 0.5rem;
    }

    .nav-link:hover {
        text-decoration: underline;
    }

    .header-button {
        width: auto;
        height: 54px;
        padding: 9px 30px 7px;
        font: 700 1rem / var(--lh) 'Isidora', system-ui, sans-serif;
    }    

    .main-content h1 {
        font-size: 2.25rem;
    }

    .main-content p {
        font-size: 1.1rem;
    }
	
	.form-column h2{
		font-size: 28px!important;
	}

    .quiz-card {
        padding: 2rem;
    }

    .quiz-question {
        font-size: 1.5rem;
    }

    .quiz-option {
        padding: 1.25rem;
    }

    .option-text {
        font-size: 1.1rem;
    }

    .quiz-submit {
        width: auto;
        align-self: flex-start;
        padding: 1rem 2.5rem;
    }

    .quiz-answer-text {
        font-size: 1.2rem;
    }

    .next-question {
        width: auto;
        padding: 1rem 2.5rem;
    }

    .finish-quiz {
        width: auto;
        padding: 1rem 2.5rem;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-menu {
        flex-direction: row;
        gap: 1.5rem;
    }
	
	.footer-menu ul{
		justify-content: center;
	}

    .footer-link {
        font-size: 0.9rem;
    }

    .copyright {
        margin-top: 0;
    }
}

/* Desktop Styles - 1024px and up */
@media (min-width: 1024px) {
    .header {
        padding: 1.25rem 0;
    }

    .page-container {
        width: calc(100% - max(2.667rem, 0px, 0px) * 2);
		max-width: 1440px;
    }

    .top1{
        padding-top: 4.4rem;
        padding-bottom: 0;
    }
	
	.page-image img{
		margin-left: 10px;
	}

    .top2{
        padding-bottom: 0;
        gap: 2rem;	
        align-items: center;		
    }
	
	.header .top2.simple{
		padding-bottom: 4rem;
		padding-top: 4rem;
	}
	
	.header-wrapper{
		width: 100%;
		justify-content: space-between;
		max-width: 1275px;
	}
	
	.page-image{
		z-index: 10;
		max-width: 424px;
	}

    .logo img {
        height: 45px;
    }

    .header-button {
        width: auto;
        height: 58px;
        padding: 12px 32px 8px;
        font: 700 1.0665rem / var(--lh) 'Isidora', system-ui, sans-serif;
    }

    .wawes{
        background-image: url('../images/waves.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 75px;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
    }

    .wawes-top{
        background-image: url('../images/top1-mask2.svg');
        background-size: cover;
        background-position: left bottom;
        background-repeat: no-repeat;
        height: 53px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .page-container h1{
        font: 700 38px / 1.00 'Isidora', system-ui, sans-serif;
		max-width: 665px;
		letter-spacing: -0.4px;
		padding-bottom: 20px;
    }
	
	.page-container.simple h1{
		max-width: 86%;
	}
	
	.container .form-column{
		background-position: calc(100% + 250px) 20px;
	}

    .social-share {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .share-link {
        width: 39px;
        height: 39px;
    }

    .nav-links {
        gap: 0.5rem;
        margin-left: auto;
    }

    .nav-link {
        padding: 0.9rem 1.25rem 0.625rem;
    }

    .main-content {
        padding: 2rem 0 2rem;
    }

    .container {
		max-width: 1182px;
        padding: 0 2rem;
    }

    .main-content h1 {
        font-size: 2.5rem;
    }  

	.container.columns{
		flex-direction: row;
		justify-content: space-between;
		column-gap: 20px;
	}
	
	.container.single-column{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.text-column{
		width: 536px;
	}
	.form-column{
		width: 539px;
	}

    .footer-container {
        padding: 0 2rem;
    }

    .footer-menu {
        gap: 2rem;
    }

    .footer-link {
        font-size: 0.867rem;
    }

    .quiz-card {
        padding: 2.5rem;
    }

    .quiz-question {
        font-size: 28px;
        line-height: 120%;
        color: #000;
    }

    .quiz-option {
        padding: 1.5rem;
    }

    .quiz-answer-text {
        font-size: 1.3rem;
    }
}

@media (min-width: 1200px) {
	.logo {
		margin-bottom: 0;
	}
	
	.page-image img{
		margin-left: 0px;
	}

	
	.page-container h1{
		width: auto;
		padding-bottom: 30px;
		font: 700 48px / 1.00 'Isidora', system-ui, sans-serif;
	}
}

@media (min-width: 1660px) {
    .wawes{
        height: 105px;
    }
	.header .top2.simple {
        padding-bottom: 6rem;
    }
}

@media (max-width: 767.98px) {
	.hide-image-on-mobile .page-image{
		display:none;
	}
}