/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2d5a4a;
  --secondary-color: #4a5d73;
  --accent-color: #5dcea3;
  --neutral-color: #f8f9fa;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  padding-top: 1px;
}
section{
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.8rem;
}
h4 {
  font-size: 1.4rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background: #1e3d32;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color:var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
  background: var(--secondary-color);
  color: var(--white);
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0;
  height: 120px;
  transition: background 0.4s cubic-bezier(0.4,0,0.2,1), height 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  box-shadow: none;
  display: flex;
  align-items: center;
}

.header-scrolled {
  background: rgba(255,255,255,0.98);
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  width: 90%;
}

.nav-brand h2 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.5rem;
}

.nav-logo {
  height: 110px;
  width: auto;
  display: block;
  max-width: 180px;
  margin: 0;
  filter: invert(1) contrast(5);
  transition: all 0.3s ease;
}
.header-scrolled .nav-logo{
  filter: none;
  height: 60px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  background-image: url("/nwdesignlabs/img/mtbaker-mini.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-image-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-image-full.loaded {
  opacity: 1;
}

.hero-overlay {
  z-index: 1;
  position: absolute;
  opacity: .8;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(54 93 79 / 78%) 0%, rgb(26 67 77) 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}

.hero-title {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: relative;
  width: 400px;
  height: 400px;
}

.design-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.element {
  position: absolute;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.element-1 {
  width: 200px;
  height: 120px;
  top: 50px;
  left: 50px;
  background: rgba(93, 206, 163, 0.3);
  animation: float 6s ease-in-out infinite;
}

.element-2 {
  width: 150px;
  height: 150px;
  top: 200px;
  right: 50px;
  background: rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite 2s;
}

.element-3 {
  width: 100px;
  height: 80px;
  bottom: 100px;
  left: 100px;
  background: rgba(74, 93, 115, 0.3);
  animation: float 6s ease-in-out infinite 4s;
}

.element-tsuki {
  position: absolute;
  width: 273px;
  top: 50%;
  left: 50%;
  margin: -40% -31%;
  animation: float 6s ease-in-out infinite 1s;
  z-index: 2;
  object-fit: cover;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--neutral-color);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.card-header h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.period {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-left: 0.5rem;
}

.price-annual {
  color: var(--text-light);
  font-size: 0.9rem;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
}

.features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.package-note {
  font-style: italic;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2rem;
}

.card-footer {
  text-align: center;
}

/* Projects Section */
.projects {
  padding: 6rem 0;
  background: var(--white);
}

.projects-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.projects-left h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.hourly-rate {
  display: flex;
  align-items: baseline;
  margin-bottom: 2rem;
}

.rate {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.rate-period {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-left: 0.5rem;
}

.services-list,
.process {
  margin-bottom: 2rem;
}

.services-list h4,
.process h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.services-list ul {
  list-style: none;
  column-count: 2;
}

.services-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.services-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.process-steps span:not(:last-child) {
  color: var(--primary-color);
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
}

.cta-card h3 {
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-card p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.trust-indicators {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator {
  text-align: center;
}

.indicator strong {
  display: block;
  font-size: 2rem;
  color: var(--accent-color);
}

.indicator span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Portfolio Section */
.portfolio {
  padding: 6rem 0;
  background: var(--neutral-color);
}

.credentials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.credential {
  background: var(--white);
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 500;
  color: var(--primary-color);
  box-shadow: var(--shadow);
}

.client-gallery {
  margin: 4rem 0;
}

.client-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.client-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.portfolio-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.portfolio-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.portfolio-image {
  padding-top: 75%;
  position: relative;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  background-image: url("/placeholder.svg?height=200&width=300");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.portfolio-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.portfolio-icon .icon {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-icon .icon {
  color: var(--white);
  transform: scale(1.1);
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  color: var(--text-light);
}

.portfolio-meta {
  display: block;
  margin-top: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(93, 206, 163, 0.1);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  border-left: 3px solid var(--accent-color);
  font-style: italic;
}

/* Contact Section */
.contact {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  background-image: url("/placeholder.svg?height=800&width=1200");
  background-size: cover;
  background-position: center;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 93, 115, 0.9) 0%, rgba(45, 90, 74, 0.9) 100%);
}

.contact-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.about-section {
  color: var(--white);
  text-align: center;
}

.profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-color), var(--white));
  background-image: url("/placeholder.svg?height=150&width=150");
  background-size: cover;
  background-position: center;
  margin: 0 auto 2rem;
  border: 4px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.bio {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.contact-item {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.contact-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.philosophy blockquote {
  font-style: italic;
  font-size: 1.1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand h3 {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  opacity: 0.8;
}
.footer-contact p {
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  position: relative;
  z-index: 10000;
  max-width: 1200px;
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10001;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lightbox-close:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: rotate(90deg);
}

.lightbox-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  min-height: 400px;
  max-height: 80vh;
}

.lightbox-description {
  padding: 3rem;
  background: var(--neutral-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lightbox-description h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.lightbox-description p {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.lightbox-description ul {
  list-style: none;
  margin-top: 1.5rem;
}

.lightbox-description li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-dark);
}

.lightbox-description li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.lightbox-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animations */
.animate-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-in {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.animate-slide-in.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.animate-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .hero {
    display: block;
    overflow: visible;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding-top: 140px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    width: 300px;
    height: 300px;
    transform: translateX(-20%);
  }
  .element-tsuki{
    width: 225px;
  }
  .element-2{
    right: 100px;
  }


  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .projects-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .credentials {
    flex-direction: column;
    align-items: center;
  }

  .client-logos {
    gap: 1.5rem;
  }

  .client-logo {
    font-size: 1.2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .process-steps {
    justify-content: center;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }

  .lightbox-inner {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .lightbox-description {
    padding: 2rem;
  }

  .lightbox-description h3 {
    font-size: 1.5rem;
  }

  .lightbox-image-container {
    min-height: 300px;
  }

  .lightbox-modal {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .cta-card {
    padding: 2rem;
  }

  .hero-image {
    width: 250px;
    height: 250px;
  }
}

.tsuki-quote {
  position: absolute;
  left: 62%;
  top: 85%;
  width: 200px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary-color);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(45, 90, 74, 0.10);
  padding: 1rem 1.2rem;
  font-size: 1.05rem;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  z-index: 3;
  animation: float 6s ease-in-out infinite 1s;
  text-align: left;
}
.tsuki-attribution {
  display: block;
  margin-top: 0.5em;
  font-size: 0.95em;
  color: var(--secondary-color);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Form Message Styles */
.form-message {
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  border-radius: 12px;
  font-weight: 500;
  text-align: center;
  animation: slideInDown 0.4s ease-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.form-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: currentColor;
  opacity: 0.3;
}

.form-message-success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 1px solid #c3e6cb;
  position: relative;
}

.form-message-success::after {
  content: '✓';
  font-size: 1.5rem;
  font-weight: bold;
  color: #155724;
  display: inline-block;
  margin-left: 0.5rem;
}

.form-message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-message-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
