* {
	transition: all 0.1s;
	font-display: swap;
	box-sizing: border-box;
}

html {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	-webkit-font-smoothing: antialiased;
	font-family: "Inter", sans-serif;
	color: #0f0f0f;
	margin: 0;
  padding: 0;
	font-size: 1.1em;
	background-color: #f8fafc;
}

p {
	line-height: 150%;
}

ul, ol {
	line-height: 150%;
}

ul li, ol li {
	margin-bottom: 10px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Yeseva One", serif;
}

a {
	color: #006aff;
	font-weight: 500;
	text-decoration: none;
}

a:hover {
	color: #0047cc;
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 32px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn.btn-primary {
	background-color: #006aff;
	color: #ffffff;
}

.btn.btn-primary:hover {
	background-color: #005be6;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 106, 255, 0.2);
}

.btn.btn-large {
	padding: 16px 32px;
	font-size: 1.1em;
}

.btn.btn-download {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #0f0f0f;
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 12px;
}

.btn.btn-download span:first-child {
	font-size: 0.7em;
	opacity: 0.8;
}

.btn.btn-download span:last-child {
	font-weight: 700;
	font-size: 1.1em;
}

.btn.btn-download:hover {
	background-color: #2a2a2a;
	transform: translateY(-2px);
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	font-size: 0.9em;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

header .logo h1 {
	margin: 0;
	font-size: 1.6em;
  letter-spacing: -0.0235em;
	color: #003399;
	font-weight: bold;
  a {
    color: inherit;
  }
}

header nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

header nav ul li {
	margin: 0 20px;
}

header nav ul li a {
	color: #0f0f0f;
	font-weight: 500;
}

header nav ul li a:hover {
	color: #006aff;
}

#main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
	margin: 100px 0;
  p {
    font-size: 1.1em;
  }
}

section h2 {
	text-align: center;
	font-size: 2.2em;
	margin-bottom: 32px;
	color: #001a4d;
}

#hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
}

#hero-problem, #hero-solution {
	width: 100%;
  margin: auto;
  text-align: center;
}

#hero-problem-arrow {
  font-size: 1.1em;
  font-weight: 600;
  color: #003399;
  margin: 75px 0 75px 0;
  > p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
}

#hero .hero-content {
	flex: 1;
	padding-right: 60px;
}

#hero .hero-content h2 {
	font-size: 3em;
	line-height: 1.2;
	margin-bottom: 24px;
	text-align: left;
	color: #001a4d;
}

#hero .hero-content p {
	font-size: 1.2em;
	color: #666666;
	margin-bottom: 32px;
}

#hero .hero-content .hero-cta {
	display: flex;
	flex-content: flex-start;
	align-items: center;
  gap: 10px;
}

#hero .hero-content .hero-cta .app-rating {
	margin-left: 24px;
}

#hero .hero-content .hero-cta .app-rating .stars {
	color: #FFAB07;
	letter-spacing: 2px;
	display: block;
	margin-bottom: 4px;
}

#hero .hero-content .hero-cta .app-rating span:last-child {
	font-size: 0.9em;
	color: #666666;
}

#hero .hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
}

.hero-image, .hero-image img {
	width: 425px;
	height: 425px;
}

.feature-cards {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.feature-card {
	flex: 1;
	background-color: #ffffff;
	padding: 40px 30px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
}

.feature-card .feature-image {
  position: relative;
}

.feature-card .feature-image::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.1), rgba(0,0,0,0));
}

.feature-card .feature-image img {
	width: 100%;
  height: auto;
}

.feature-card h3 {
	color: #003399;
	margin-bottom: 16px;
}

.feature-card p {
	color: #666666;
}

.for-who-cards {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.for-who-card {
	flex: 1;
	padding: 30px;
	border-radius: 16px;
	background-color: #f0f7ff;
	border-left: 4px solid #006aff;
}

.for-who-card h3 {
	color: #003399;
	margin-top: 0;
	margin-bottom: 16px;
	font-size: 1.3em;
}

.for-who-card p {
	color: #666666;
	margin-bottom: 0;
}

.steps {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.step {
	flex: 1;
	text-align: center;
	position: relative;
}

.step .step-number {
	width: 60px;
	height: 60px;
	background-color: #006aff;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5em;
	font-weight: bold;
	margin: 0 auto 24px;
}

.step h3 {
	color: #003399;
	margin-bottom: 16px;
}

.step p {
	color: #666666;
}

.step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 30px;
	right: -20px;
	width: 40px;
	height: 2px;
	background-color: #e5e5e5;
}

#meet-marcel {
	display: flex;
	align-items: center;
	background-color: #f0f7ff;
	padding: 60px;
	border-radius: 24px;
  margin-top: 48px;
}

#meet-marcel .marcel-image {
	flex: 1;
}

#meet-marcel .marcel-image img {
	max-width: 300px;
	height: auto;
	border-radius: 16px;
}

#meet-marcel .marcel-quote {
	flex: 2;
	padding-left: 60px;
}

#meet-marcel .marcel-quote h2 {
	text-align: left;
	margin-bottom: 24px;
	color: #001a4d;
}

#meet-marcel .marcel-quote p {
	font-size: 1.2em;
	color: #666666;
	margin-bottom: 16px;
}

#meet-marcel .marcel-quote .quote-author {
	font-style: italic;
	font-size: 1em;
	color: #0047cc;
}

#independence {
	background-color: #ffffff;
	padding: 60px;
	border-radius: 24px;
	text-align: center;
	max-width: 800px;
	margin: 80px auto;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

#independence h2 {
	margin-bottom: 24px;
}

#independence p {
	color: #666666;
	font-size: 1.1em;
}

.testimonial-cards {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.testimonial-card {
	flex: 1;
	background-color: #ffffff;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card .testimonial-stars {
	color: #FFAB07;
	letter-spacing: 2px;
	margin-bottom: 16px;
	font-size: 1.2em;
}

.testimonial-card .testimonial-text {
	font-size: 1.1em;
	color: #0f0f0f;
	margin-bottom: 16px;
}

.testimonial-card .testimonial-author {
	color: #666666;
	font-weight: 600;
}

#download {
	text-align: center;
	background-color: #001a4d;
	padding: 80px;
	border-radius: 24px;
	margin-top: 100px;
}

#download h2 {
	color: #ffffff;
	font-size: 2.5em;
	margin-bottom: 40px;
}

#download .download-buttons {
	display: flex;
	justify-content: center;
	gap: 24px;
}

footer {
	margin-top: 100px;
	padding-top: 60px;
	border-top: 1px solid #e5e5e5;
}

footer .footer-content {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

footer .footer-content .footer-logo {
	flex: 1;
}

footer .footer-content .footer-logo h3 {
	margin-top: 0;
	color: #003399;
	font-size: 1.5em;
}

footer .footer-content .footer-links {
	flex: 2;
	display: flex;
	justify-content: space-between;
}

footer .footer-content .footer-links .footer-column h4 {
	color: #0f0f0f;
	margin-bottom: 20px;
  margin-top: 0;
}

footer .footer-content .footer-links .footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

footer .footer-content .footer-links .footer-column ul li {
	margin-bottom: 10px;
}

footer .footer-content .footer-links .footer-column ul li a {
	color: #666666;
}

footer .footer-content .footer-links .footer-column ul li a:hover {
	color: #006aff;
}

footer .footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	border-top: 1px solid #e5e5e5;
}

footer .footer-bottom p {
	color: #666666;
	margin: 0;
	font-size: 0.9em;
}

footer .footer-bottom .social-links {
	display: flex;
	gap: 20px;
}

footer .footer-bottom .social-links .social-link {
	color: #666666;
}

footer .footer-bottom .social-links .social-link:hover {
	color: #006aff;
}

.centered {
  text-align: center;
  margin: auto;
}

@media (max-width: 992px) {
	body {
		font-size: 1em;
	}
	
	header {
		flex-direction: column;
	}
	
	header .logo {
		margin-bottom: 20px;
	}
	
	header nav {
		margin-bottom: 20px;
	}
	
	#hero {
		flex-direction: column;
	}
	
	#hero .hero-content {
		padding-right: 0;
		margin-bottom: 40px;
	}
	
	#hero .hero-content h2 {
		text-align: center;
	}
	
	#hero .hero-content p {
		text-align: center;
	}
	
	#hero .hero-content .hero-cta {
		flex-direction: column;
		align-items: center;
	}
	
	#hero .hero-content .hero-cta .app-rating {
		margin-left: 0;
		margin-top: 20px;
		text-align: center;
	}
	
	.feature-cards,
	.for-who-cards,
	.steps,
	.testimonial-cards {
		flex-direction: column;
		gap: 20px;
	}
	
	#meet-marcel {
		flex-direction: column;
		padding: 30px;
	}
	
	#meet-marcel .marcel-image {
		margin-bottom: 30px;
		text-align: center;
	}
	
	#meet-marcel .marcel-quote {
		padding-left: 0;
	}
	
	#meet-marcel .marcel-quote h2 {
		text-align: center;
	}
	
	#download {
		padding: 40px 20px;
	}
	
	#download .download-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	footer .footer-content {
		flex-direction: column;
	}
	
	footer .footer-content .footer-logo {
		margin-bottom: 30px;
    letter-spacing: -0.0235em;
		text-align: center;
	}
	
	footer .footer-content .footer-links {
		flex-direction: column;
	}
	
	footer .footer-content .footer-links .footer-column {
		margin-bottom: 30px;
		text-align: center;
	}
	
	footer .footer-bottom {
		flex-direction: column;
	}
	
	footer .footer-bottom p {
		margin-bottom: 20px;
		text-align: center;
	}

	#hero-problem-image {
		width: 100%;
		height: auto;
	}
}

@media (max-width: 576px) {
	header nav ul {
		flex-direction: column;
		align-items: center;
	}
	
	header nav ul li {
		margin: 10px 0;
	}
}

/* About page styles */
#about {
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.about-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-family: 'Yeseva One', serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-author {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.about-author h3 {
  font-family: 'Yeseva One', serif;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.about-author p {
  color: #666;
  font-size: 1rem;
}

/* Active navigation link */
nav ul li a.active {
  color: #007bff;
  font-weight: 600;
} 

#author-image {
  border-radius: 100%;
  width: 100px;
  height: 100px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1000;
}

.hamburger span {
  display: block;
  width: 100%;
	height: 2.5px;
	border-radius: 3px;
  background-color: #003399;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

	header nav {
		font-size: 1.1em!important;
	}

  header .logo {
    width: 100%;
    justify-content: space-between;
  }

	#hero .hero-content h2 {
    font-size: 2.75em;
	}

	section h2 {
		font-size: 2.1em;
	}

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .mobile-menu.active {
    right: 0;
  }

  header nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  header nav ul li {
    margin: 0;
  }

  .cta-button {
    margin-top: 30px;
  }
}

/* Reviews Section Styles */
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e8f0fe;
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.review-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.review-rating .stars {
  color: #FFAB07;
  font-size: 1.3em;
  letter-spacing: 2px;
  font-weight: bold;
}

.review-rating .platform {
  background-color: #f0f7ff;
  color: #006aff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-content {
  flex: 1;
}

.review-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-author .author-name {
  font-weight: 600;
  color: #001a4d;
  font-size: 1.05em;
}

.review-author .review-date {
  color: #666666;
  font-size: 0.9em;
}

/* Mobile responsiveness for reviews */
@media (max-width: 768px) {  
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
  
  .review-card {
    padding: 25px;
  }
  
  .review-rating {
    gap: 5px;
  }
  
  .review-rating .platform {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .review-card {
    padding: 20px;
  }
  
  .review-text {
    font-size: 1em;
  }
}