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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

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

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-secondary:hover {
  background: #2563eb;
  color: white;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.5px;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #2563eb;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.hero-text h1 {
  font-size: 3rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.highlight {
  color: #2563eb;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 2rem;
}

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

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.graphic-element {
  position: relative;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.calculator-icon {
  width: 120px;
  height: 160px;
  background: #2563eb;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.calc-screen {
  width: 100%;
  height: 40px;
  background: #1e293b;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.calc-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.calc-btn {
  width: 100%;
  height: 20px;
  background: #64748b;
  border-radius: 4px;
}

.documents-icon {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.doc {
  width: 80px;
  height: 100px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.doc::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
}

.doc::after {
  content: "";
  position: absolute;
  top: 2rem;
  left: 1rem;
  right: 2rem;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
}

.consulting-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.chart-container {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 200px;
}

.chart-bar {
  width: 40px;
  background: linear-gradient(to top, #2563eb, #3b82f6);
  border-radius: 4px 4px 0 0;
  animation: growUp 1s ease-out;
}

.growth-arrow {
  font-size: 3rem;
  color: #10b981;
  font-weight: bold;
}

@keyframes growUp {
  from {
    height: 0;
  }
  to {
    height: inherit;
  }
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f8fafc;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #64748b;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  padding: 0.5rem 0;
  color: #64748b;
  position: relative;
  padding-left: 1.5rem;
}

.service-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* Service Graphics */
.service-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  gap: 2rem;
}

.document-stack {
  position: relative;
}

.document {
  width: 80px;
  height: 100px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  position: absolute;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.document:nth-child(1) {
  transform: rotate(-5deg);
  z-index: 1;
}

.document:nth-child(2) {
  transform: rotate(0deg);
  z-index: 2;
  top: 10px;
  left: 10px;
}

.document:nth-child(3) {
  transform: rotate(5deg);
  z-index: 3;
  top: 20px;
  left: 20px;
}

.calendar-icon {
  background: white;
  border: 2px solid #2563eb;
  border-radius: 8px;
  width: 100px;
  height: 120px;
  overflow: hidden;
}

.calendar-header {
  background: #2563eb;
  height: 30px;
  width: 100%;
}

.calendar-body {
  padding: 1rem;
  text-align: center;
}

.calendar-date {
  font-size: 2rem;
  font-weight: bold;
  color: #1e293b;
}

.calendar-month {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.arrow-right {
  font-size: 3rem;
  color: #2563eb;
  margin: 0 1rem;
}

.form-icon {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  width: 100px;
  height: 120px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-lines {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
}

.payment-cards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.payment-card {
  width: 120px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

.payment-card.paid {
  background: #10b981;
  color: white;
}

.payment-card.current {
  background: #f59e0b;
  color: white;
}

.payment-card.upcoming {
  background: #e2e8f0;
  color: #64748b;
}

.money-symbol {
  font-size: 4rem;
  color: #10b981;
  font-weight: bold;
  margin-left: 2rem;
}

.lightbulb-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bulb {
  width: 60px;
  height: 80px;
  background: #f59e0b;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
}

.bulb::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 15px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.base {
  width: 40px;
  height: 20px;
  background: #64748b;
  border-radius: 0 0 8px 8px;
  margin-top: -5px;
}

.growth-chart {
  position: relative;
  margin-left: 2rem;
}

.chart-line {
  width: 80px;
  height: 2px;
  background: #2563eb;
  transform: rotate(15deg);
  position: relative;
}

.chart-line::after {
  content: "";
  position: absolute;
  right: -5px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 8px solid #2563eb;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.chart-dots {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.dot {
  width: 8px;
  height: 8px;
  background: #2563eb;
  border-radius: 50%;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
  background: white;
}

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

.benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.benefit-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.benefit h4 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.contact-item h4 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  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: #2563eb;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #2563eb;
  border-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 12px;
  top: -2px;
  left: 2px;
}

.checkmark-large {
  font-size: 4rem;
  color: #10b981;
  font-weight: bold;
  margin-left: 2rem;
}

/* Page Hero */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  color: #cbd5e1;
}

/* Services Detail */
.services-detail {
  padding: 80px 0;
}

.service-detail {
  margin-bottom: 6rem;
}

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

.service-content.reverse {
  direction: rtl;
}

.service-content.reverse > * {
  direction: ltr;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.service-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #64748b;
}

.service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.2rem;
}

.service-price {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}

/* FAQ */
.faq {
  padding: 80px 0;
  background: #f8fafc;
}

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

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question h3 {
  margin: 0;
  color: #1e293b;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #2563eb;
  font-weight: bold;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #64748b;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

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

/* Values */
.values {
  padding: 80px 0;
  background: white;
}

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

.value-card {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

/* Team */
.team {
  padding: 80px 0;
  background: #f8fafc;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.team-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.avatar-icon {
  font-size: 4rem;
}

/* Certifications */
.certifications {
  padding: 80px 0;
  background: white;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.cert-item {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
}

.cert-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cert-item h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

/* Contact Page */
.contact-page {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
}

.method-icon {
  font-size: 1.5rem;
  color: #2563eb;
  margin-top: 0.25rem;
}

.method-info h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.method-info small {
  color: #64748b;
  font-size: 0.9rem;
}

.form-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Map */
.map-section {
  padding: 80px 0;
  background: #f8fafc;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.map-info {
  text-align: center;
  color: #64748b;
}

/* Quote Section */
.quote-section {
  padding: 80px 0;
}

.quote-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.benefit-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.benefit-item h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-quick {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.contact-quick h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.quote-form-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.quote-form h2 {
  color: #1e293b;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.services-checkbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-logo-text {
  margin-bottom: 1rem;
}

.footer-logo-text .logo-main {
  color: white;
  font-size: 1.3rem;
}

.footer-logo-text .logo-sub {
  color: #94a3b8;
}

.company-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #374151;
}

.company-info p {
  color: #cbd5e1;
  margin-bottom: 0.25rem;
}

.contact-info p {
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
}

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

  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-content,
  .why-choose-content,
  .contact-content,
  .service-content,
  .contact-grid,
  .quote-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .values-grid,
  .team-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .services-checkbox {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

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

  .stat-number {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* About Graphics */
.about-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  height: 400px;
  justify-content: center;
}

.building-icon {
  position: relative;
}

.building-base {
  width: 120px;
  height: 150px;
  background: #2563eb;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.building-windows {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.window {
  width: 25px;
  height: 30px;
  background: #1e40af;
  border-radius: 4px;
}

.building-sign {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: #2563eb;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: bold;
}

.experience-badge {
  background: #10b981;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}
