
html {
	font-size: 100%
}

body {
	background-color: #F8FAFC;
	font-family: 'Inter', sans-serif;
	margin: 0px;
	padding: 0px;
}

.hIndex {
	font-family: 'Merriweather', serif;
}

.title {
	font-size: 32px;
	font-weight: 900;
	letter-spacing: -1.5px;
	margin-bottom: 10px;
}

.subtitle { color: var(--text-light); margin-bottom: 40px; font-size: 16px; }

button {
	all: unset;
	border:0px;
	border-radius:50px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	padding: 12px 24px;
	transition: transform 0.2s, background 0.2s;
	cursor: pointer;
	text-align: center;
	filter: drop-shadow(3px 3px 3px #00000050);
}

.thinFixedButton {
	padding: 5px 24px;
	width:8rem;
}

.menuPopUpButton {
	font-size: 0.8rem;
	font-weight: 400;
	padding: 10px 24px;
	width:100%;
	box-sizing:border-box;
}

button:hover {
	transform: translateY(-2px);
}

button:active {
	transform: scale(0.98);
}

button:focus {
	border: 1px solid #FFFFFF;
}

button:disabled {
	border: 0px;
}

.blueButton {
	color: #FFFFFF;
	background-color: #3B82F6;
}

.blueButton:hover {
	background-color: #2563EB;
}

.orangeButton {
	color: #FFFFFF;
	background-color: #F59E0B;
}

.orangeButton:hover {
	background-color: #D97706;
}

#headerContainer {
	position: fixed;
	left:0px;
	top:0px;
	z-index: 500;
	width: 100%;
	padding: 0px;
	margin: 0px;
	background-image: linear-gradient(to bottom, #C5C7C9, #F8FAFC);
	box-shadow: 0px 5px 10px #00000090;
}

.headerDataContainer {
	display:flex;
	flex-wrap: nowrap;
	justify-content:center;
	gap:40px;
	padding: 0rem 3rem;
	margin: 0px;
}

.headerItems {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

.iconFonts {
	font-family: 'Font Awesome 6 Free';
	font-size: 2rem;
	font-weight: 900;
	color: #3B82F6;
}

.mainSection {
	padding: 5rem 0px;
	background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('/images/penBackground.jpg');
	background-size: cover;
	background-position: center;
	color: #FFFFFF;
	text-align: center;
}

.sectionContainer {
	margin: 0 auto;
	padding: 0 2.5rem;
}

.mainSectionTopBanner {
	background: rgba(255,255,255,0.1);
	display: inline-block;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.9rem;
	margin-bottom: 20px;
	border: 1px solid rgba(255,255,255,0.2);
}

.mainSection h1 {
	color: #FFFFFF;
	font-size: 3rem;
	margin: 0px 0px 1rem 0px;
	line-height: 1.2;
}

.mainSection p {
	font-size: 1.25rem;
	margin: 0 auto 2rem;
	opacity: 0.9;
}

.featuresSection {
	padding: 5rem 0px;
}

.SectionHeader {
	text-align: center;
	margin: 0px 0px 4rem 0px;
}

.SectionHeader h2 {
	font-size: 2.5rem;
	margin: 0px 0px 1rem 0px;
}

.featuresGrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	padding: 0px 5rem;
}

.featuresGridCard {
	background: #FFFFFF;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	border-top: 4px solid #3B82F6;
}

.featuresGridCard:hover {
	transform: translateY(-5px);
}

.featuresGridCardIcon {
	margin-bottom: 1.5rem;
}

.featuresGridCard h3 {
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.featuresGridCard p {
	color: #64748B;
	font-size: 0.95rem;
}

.promiseSection {
	padding: 4rem 0;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.promiseSectionContainer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 3rem;
}

.promiseSection img {
	max-width: 400px;
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.promiseSectionText {
	max-width: 500px;
}

.promiseSectionText h2 {
	color: #0F172A;
}

.promiseSectionCheckIcons {
	font-size: 1rem;
}

.promiseSectionCheckItems {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.3rem;
}

.pricingSection {
	padding: 2rem 0;
	background-color: #FFFFFF;
}

.pricingSectionGrid {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	align-items: stretch;
}

.pricingSectionCard {
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	padding: 2.5rem;
	width: 350px;
	display: flex;
	flex-direction: column;
	position: relative;
}

.pricingSectionCard.popular {
	background: #0F172A;
	color: #FFFFFF;
	transform: scale(1.05);
	border: none;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	z-index: 10;
}

.pricingSectionCardMostPopular {
	position: absolute;
	top: -15px;
	right: 20px;
	background: #F59E0B;
	padding: 5px 10px;
	font-size: 0.8rem;
	border-radius: 4px;
	font-weight: bold;
}

.pricingSectionCard h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.pricingSectionPrice {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	font-family: 'Inter', sans-serif;
}

.pricingSectionPriceSub {
	font-size: 0.9rem;
	color: #64748B;
	margin-bottom: 2rem;
}

.pricingSectionPricingItems {
	list-style: none;
	margin-bottom: 2rem;
	flex-grow: 1;
	padding: 0px;
}

.pricingSectionPricingItems li {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
}

.publishingStepsSection {
	padding: 5rem 0;
	text-align: center;
}

.publishingStepsSectionContainer {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 3rem;
	gap: 2rem;
}

.publishingStepsSectionItem {
	flex: 1;
	min-width: 200px;
	position: relative;
}

.publishingStepsSectionNumber {
	width: 50px;
	height: 50px;
	background: #0F172A;
	color: #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.25rem;
	margin: 0 auto 1.5rem;
}

.publishingStepsSectionItem h4 {
	margin-bottom: 0.5rem;
}

.FAQSection {
	padding: 2rem 0;
	text-align: center;
}

.FAQSectionItem {
	text-align: justify;
	padding: 0px 0px 1rem 0px;
}

footer {
	background: #0F172A;
	color: #FFFFFF;
	padding: 4rem 0 2rem;
	text-align: center;
}

#packageDefinition {
	position: fixed;
	width: 15rem;
	text-align: justify;
	background-color: #FFF0E0;
	border-radius: 10px;
	filter: drop-shadow(5px 5px 5px #00000080);
	font-size: 0.9rem;
	padding: 1rem;
	z-index: 600;
}

.formContainer {
	background: #FFFFFF;
	padding: 50px;
	border-radius: 12px;
	border: 1px solid #E0E0E0;
	filter:drop-shadow(5px 5px 5px #00000050);
}

.inputText[type="text"], .inputText[type="password"], .inputText[type="email"], .textAreaText, .selectList {
	width: 100%;
	padding: 12px;
	border: 1px solid #DDDDDD;
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 15px;
	font-family: inherit;
}

.formCaption {
	display: block;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	margin-bottom: 8px;
	color: #666666;
	padding-top: 1rem;
}

.formSectionTitle {
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #121212;
	margin-bottom: 25px;
	border-left: 4px solid #121212;
	padding-left: 15px;
}

.formTitle {
	font-size: 32px;
	font-weight: 900;
	letter-spacing: -1.5px;
	margin-bottom: 10px;
}

.formSubtitle {
	color: #666666;
	margin-bottom: 40px;
	font-size: 16px;
}

.uploadBox {
	background: #F9F9F9;
	border: 2px dashed #DDDDDD;
	padding: 30px;
	text-align: center;
	border-radius: 8px;
	cursor: pointer;
	transition: 0.2s;
}

.uploadBox:hover {
	background: #F0F0F0;
	border-color: #bbb;
}

.finePrintCheckboxBox {
	background: #FDFDFD;
	padding: 20px;
	border: 1px solid #EEEEEE;
	border-radius: 8px;
	margin-top: 30px;
	margin-bottom: 20px;
}

.finePrintCheckboxBox label {
	text-transform: none;
	font-weight: 400;
	font-size: 14px;
	color: #333;
	display: flex;
	align-items: flex-start;
}

.finePrintCheckboxBox input {
	margin-right: 12px;
	margin-top: 4px;
}

#popUpMenu {
	position: fixed;
	top:0px;
	left:0px;
	width: 15rem;
	text-align: justify;
	background-color: #FFFFFF;
	border-radius: 10px;
	filter: drop-shadow(5px 5px 5px #00000080);
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
	z-index: 600;
	overflow: hidden;
	transition: height 0.2s, padding 0.2s;
}

#popUpMenu div {
	padding: 0.5rem 0rem;
	text-align: center;
}

.FAQSheet {
	padding: 4rem;
	background: #FFFF;
	border-radius: 0.75rem;
	filter: drop-shadow(1rem 1rem 1rem #A0A0A0);
}

section.newPublicationSection {
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f0f0;
}

section.newPublicationSection:last-of-type {
	border-bottom: none;
}

.newPublicationSection h2 {
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #121212;
	margin-bottom: 25px;
	border-left: 4px solid #121212;
	padding-left: 15px;
}

.grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.full-width {
	grid-column:
	span 2;
}

.field {
	margin-bottom: 20px;
}

.newPublicationSection label {
	display: block;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	margin-bottom: 8px;
	color: #666666;
}

.newPublicationSection input[type="text"], input[type="email"], textarea, select { 
	width: 100%;
	padding: 12px;
	border: 1px solid #DDDDDD;
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 15px;
	font-family: inherit; 
}

.newPublicationSection textarea { 
	resize: vertical;
}

.radio-group { display: flex; gap: 20px; margin-top: 10px; }
.radio-option { display: flex; align-items: center; font-size: 14px; font-weight: 600; cursor: pointer; }
.radio-option input { margin-right: 8px; }

.fileUpload {
	background: #f9f9f9;
	border: 2px dashed #ddd;
	padding: 30px;
	text-align: center;
	border-radius: 8px;
	cursor: pointer;
	transition: 0.2s;
}

.fileUpload:hover {
	background: #f0f0f0;
	border-color: #bbb;
}

.fileUploadHover {
	background: #f0f0f0;
	border-color: #bbb;
}

.fileUploadedBox {
	padding: 30px;
	text-align: center;
	background: #f9f9f9;
	border-radius: 8px;
	border: 2px solid #ddd;
	margin: 30px;
	transition: 0.2s;
}

.fileUploadSubtitle {
	font-size: 12px;
	margin-top: 5px;
	color: #666;
}

/* Legal Acknowledgment CSS */
.checkbox-field {
	background: #fdfdfd;
	padding: 20px;
	border: 1px solid #eee;
	border-radius: 8px;
	margin-top: 30px;
	margin-bottom: 20px;
}

.checkbox-field label {
	text-transform: none;
	font-weight: 400;
	font-size: 14px;
	color: #333;
	display: flex;
	align-items: center;
}

.checkbox-field input {
	margin-right: 12px;
	margin-top: 4px;
	width: 24px;
	height: 24px;
}

.publicationContainer {
	text-align:initial;
	padding: 1rem 4rem;
	margin-bottom: 2rem;
}

.publicationItem {
	display:flex;
	flex-direction:row;
	align-items:center;
	gap:20px;
}

.publicationItem h1 {
	margin:0px;
}

.publicationContractExpand {
	padding: 0px 14px;
}

.publicationDetails {
	display:flex;
	flex-direction:column;
	margin-top: 16px;
}

@media (max-width: 600px) { .grid { grid-template-columns: 1fr; } .full-width { grid-column: span 1; } }

@media (max-width: 769px) {
	html {
		font-size: 170%
	}
}
