/* Global styles */
:root {
  --black: #000000;
  --primary: #0ae47c;
  --primary-dark: #0a2b7f;
  --dark-grey: #131313;
  --medium-grey: #454545;
  --light-grey: #a3a3a3;
  --white: #ffffff;
  --orange: #FF9933;
  --green: #0AE47C;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--white);
  height: 100%;
  background-color: var(--black);
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header/Navigation */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-image {
  height: 100px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  color: var(--white);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-item:hover {
  color: var(--green);
}

.login-link {
  margin-left: 1rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.login-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
}

/* Responsive navigation */
@media (max-width: 900px) {
  nav {
    gap: 1.5rem;
  }
  
  .nav-item {
    font-size: 0.9rem;
  }
  
  .login-link {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 1.5rem;
  }
  
  .logo-image {
    height: 48px;
  }
  
  .nav-item:not(.login-link) {
    display: none;
  }
  
  .login-link {
    margin-left: 0;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .mobile-menu-button {
    display: block;
    margin-left: 1rem;
  }
  
  .hero {
    padding-top: 100px;
    height: 80vh;
    margin-bottom: 35px;
  }
  
  .hero-content {
    padding: 0 2rem;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .hero-description {
    font-size: 1rem;
    text-align: center;
  }
  
  .generate-button {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    align-self: center;
  }
  
  .search-description {
    font-size: 0.9rem;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
    padding: 0 1rem;
    bottom: 3rem;
  }
  
  .search-wrapper {
    max-width: 90%;
  }
  
  .section-header h2, 
  .licensing-text h2, 
  .creativity-text h2, 
  .get-started-content h2 {
    font-size: 1.8rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
  }
  
  .footer-logo img {
    height: 150px;
  }
  
  .search-section {
    margin-top: -60px;
  }
  
  .dropdown-button {
    padding: 0 10px;
  }
  
  .dropdown-text {
    display: none;
  }
  
  .benefits-section .section-header h2 {
    font-size: 1.8rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .benefit-item {
    gap: 1rem;
  }
  
  .benefit-content h3 {
    font-size: 1.2rem;
  }
  
  .no-credit-card {
    text-align: center;
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.8rem 1rem;
  }
  
  .logo-image {
    height: 41px;
  }
  
  .login-link {
    display: none;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description,
  .search-description {
    font-size: 0.9rem;
  }
  
  .generate-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .search-type-dropdown {
    display: none;
  }
  
  .search-section {
    margin-top: -40px;
  }
  
  .hero-tagline {
    font-size: 1rem;
    bottom: 2rem;
  }
  
  .benefits-section {
    padding: 3rem 0;
  }
  
  .benefits-section .section-header {
    margin-bottom: 2.5rem;
  }
  
  .benefit-icon {
    min-width: 40px;
    height: 40px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 85vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 150px;
  margin-bottom: 50px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video, .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.feature-asset {
  position: absolute;
  top: 60px;
  left: 2rem;
  color: var(--white);
  font-size: 0.8rem;
  opacity: 0.8;
  z-index: 5;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 5rem;
  z-index: 2;
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-left: 0;
  margin-right: auto;
  margin-top: 0;
}

.hero-logo {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-logo-image {
  height: 80px;
  width: auto;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  text-align: left;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 500px;
}

.generate-button {
  display: block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: var(--green);
  color: var(--black);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  border: none;
  cursor: pointer;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
}

.generate-button:hover {
  background: #0bc66c;
  transform: translateY(-2px);
}

.or-divider {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 2rem;
  color: var(--white);
}

.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.or-divider span {
  padding: 0 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}

.search-description {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  text-align: center;
  color: var(--white);
  margin-top: 1rem;
  line-height: 1.5;
  max-width: 500px;
}

.browse-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: rgba(50, 50, 50, 0.7);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.browse-button:hover {
  background: rgba(30, 30, 30, 0.9);
}

/* Search Section */
.search-section {
  position: relative;
  z-index: 10;
  margin-top: -75px;
  margin-bottom: 30px;
  width: 100%;
}

.search-wrapper {
  width: 100%;
  max-width: 670px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.search-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.search-box-row {
  display: flex;
  width: 100%;
  height: 48px;
}

/* Dropdown Style */
.search-type-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 15px;
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: 4px 0 0 4px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  cursor: pointer;
}

.dropdown-icon {
  margin-right: 8px;
}

.dropdown-text {
  margin: 0 5px;
}

.dropdown-arrow {
  margin-left: 3px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 120px;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  z-index: 20;
  margin-top: 2px;
}

.dropdown-content.show {
  display: block;
}

.search-type-dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 15px;
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
}

.dropdown-item.active {
  font-weight: 600;
  color: var(--black);
  background-color: rgba(10, 228, 124, 0.1);
}

.search-box {
  display: flex;
  flex: 1;
  background: var(--white);
  overflow: hidden;
}

.search-input {
  flex: 1;
  padding: 0 1rem;
  border: none;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--dark-grey);
}

.search-camera {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--black);
  border: none;
  cursor: pointer;
}

.search-button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

/* Hero Tagline */
.hero-tagline {
  position: absolute;
  bottom: 5rem;
  width: 100%;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  z-index: 2;
}

/* Common Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.section-header p {
  font-size: 1rem;
  color: var(--light-grey);
  margin-bottom: 2rem;
  font-family: "Poppins", sans-serif;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background-color: var(--black);
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.benefits-section .section-header {
  margin-bottom: 4rem;
}

.benefits-section .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background-color: rgba(10, 228, 124, 0.1);
  border-radius: 50%;
  color: var(--green);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.benefit-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.benefit-content p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--light-grey);
}

/* Media Queries for Benefits Section */
@media (max-width: 1024px) {
  .benefits-grid {
    gap: 2.5rem;
  }
  
  .feature-content {
    gap: 4rem;
  }
  
  .feature-text h2 {
    font-size: 2.4rem;
  }
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background-color: var(--black);
  color: var(--white);
}

.feature-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 10rem;
  position: relative;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-tag {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light-grey);
  margin-bottom: 1rem;
}

.feature-content {
  display: flex;
  align-items: center;
  gap: 8rem;
}

.feature-item.reverse .feature-content {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--white);
}

.feature-text p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--light-grey);
  max-width: 480px;
}

.feature-video {
  flex: 1;
  border-radius: 8px;
  overflow: visible;
  position: relative;
}

/* Target the first feature video specifically to shrink it by 10% */
.feature-item:first-child .feature-video {
  transform: scale(0.9);
  transform-origin: center center;
}

.feature-video-player {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.ai-generated-badge {
  position: absolute;
  bottom: -15px;
  right: 15px;
  background-color: var(--green);
  color: var(--black);
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  z-index: 5;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  transform: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.ai-generated-badge span {
  font-size: 1.1em;
  line-height: 1;
}

/* Media Queries for Features Section */
@media (max-width: 1200px) {
  .feature-content {
    gap: 4rem;
  }
  
  .feature-text h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 1024px) {
  .feature-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .feature-item.reverse .feature-content {
    flex-direction: column;
  }
  
  .feature-text, 
  .feature-video {
    width: 100%;
  }
  
  .feature-text {
    order: 1;
  }
  
  .feature-video {
    order: 2;
  }
  
  .feature-text p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 4rem 0;
  }
  
  .feature-item {
    margin-bottom: 6rem;
  }
  
  .feature-text h2 {
    font-size: 1.8rem;
  }
  
  .feature-text p {
    font-size: 1rem;
  }
  
  .ai-generated-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    right: 15px;
    bottom: -12px;
  }
}

@media (max-width: 480px) {
  .feature-tag {
    font-size: 0.7rem;
  }
  
  .feature-text h2 {
    font-size: 1.5rem;
  }
  
  .feature-item {
    margin-bottom: 4rem;
  }
  
  .ai-generated-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    right: 10px;
    bottom: -10px;
  }
}

/* Get Started Section */
.get-started-section {
  padding: 6rem 0;
  background-color: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.get-started-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.get-started-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  flex: 1;
}

.get-started-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.get-started-text p {
  font-size: 1rem;
  color: var(--light-grey);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.sign-up-button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.sign-up-button:hover {
  background: var(--green);
  color: var(--black);
}

/* Footer */
footer {
  background-color: var(--black);
  padding: 4rem 0 2rem;
}

.footer-content {
  color: var(--light-grey);
}

.footer-logo {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.footer-logo img {
  height: 150px;
  width: auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.footer-column h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: var(--light-grey);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--white);
}

.languages-title {
  margin-top: 2.5rem;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-info li svg {
  color: var(--light-grey);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.social-links a {
  color: var(--light-grey);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--white);
}

.copyright {
  font-size: 0.8rem;
  color: var(--light-grey);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .licensing-content,
  .creativity-item,
  .creativity-item.reverse,
  .get-started-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .licensing-image, 
  .licensing-text,
  .creativity-text,
  .creativity-image,
  .get-started-content h2,
  .get-started-text {
    flex: none;
    width: 100%;
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .logo-image {
    height: 70px;
  }
  
  .hero {
    padding-top: 100px;
    height: 80vh;
    margin-bottom: 35px;
  }
  
  .hero-content {
    padding: 0 2rem;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .hero-description {
    font-size: 1rem;
    text-align: center;
  }
  
  .generate-button {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    align-self: center;
  }
  
  .search-description {
    font-size: 0.9rem;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
    padding: 0 1rem;
    bottom: 3rem;
  }
  
  .search-wrapper {
    max-width: 90%;
  }
  
  .section-header h2, 
  .licensing-text h2, 
  .creativity-text h2, 
  .get-started-content h2 {
    font-size: 1.8rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
  }
  
  .footer-logo img {
    height: 70px;
  }
  
  .search-section {
    margin-top: -60px;
  }
  
  .dropdown-button {
    padding: 0 10px;
  }
  
  .dropdown-text {
    display: none;
  }
  
  .benefits-section .section-header h2 {
    font-size: 1.8rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .benefit-item {
    gap: 1rem;
  }
  
  .benefit-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description,
  .search-description {
    font-size: 0.9rem;
  }
  
  .generate-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .search-type-dropdown {
    display: none;
  }
  
  .search-section {
    margin-top: -40px;
  }
  
  .hero-tagline {
    font-size: 1rem;
    bottom: 2rem;
  }
  
  .benefits-section {
    padding: 3rem 0;
  }
  
  .benefits-section .section-header {
    margin-bottom: 2.5rem;
  }
  
  .benefit-icon {
    min-width: 40px;
    height: 40px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background-color: var(--black);
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
}

.faq-question h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(10, 228, 124, 0.1);
  color: var(--green);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--light-grey);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 0;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 3rem 0;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-nav-item {
  color: var(--light-grey);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav-item:hover {
  color: var(--white);
}

.contact-info {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-info a {
  color: var(--green);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: var(--white);
}

.copyright {
  font-size: 0.8rem;
  color: var(--light-grey);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.no-credit-card {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--light-grey);
  font-weight: 400;
} 