/* Google Fonts: Poppins */
body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #e0f7fa 0%, #e3ffe6 100%);
  color: #1a2a33;
  min-height: 100vh;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #0f9d58 0%, #4285f4 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  transition: background 0.3s;
}

.header-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  gap: 0.5rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav a, .dropdown-btn {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
}

nav a:hover, .dropdown-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #ffd600;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
  border-radius: 8px;
  overflow: hidden;
  z-index: 1001;
}

.dropdown-content a {
  color: #1a2a33;
  padding: 0.75rem 1.25rem;
  display: block;
  text-decoration: none;
  font-weight: 500;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}

.dropdown-content a:hover {
  background: #e3ffe6;
  color: #0f9d58;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.hero {
  background: linear-gradient(120deg, #43e97b 0%, #38f9d7 100%);
  padding: 3rem 1rem 2rem 1rem;
  text-align: center;
  color: #1a2a33;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #0f9d58;
}

.tools-grid-section {
  padding: 2rem 1rem;
  background: #fff;
}

.tools-grid-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tool-card {
  background: linear-gradient(120deg, #e3ffe6 0%, #fffbe6 100%);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.10);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  border: 2px solid transparent;
}

.tool-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
  border-color: #ffd600;
}

.tool-card .tool-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.tool-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.tool-card p {
  font-size: 0.98rem;
  color: #1a2a33cc;
  margin: 0;
}

.why-section {
  background: linear-gradient(90deg, #e3ffe6 0%, #e0f7fa 100%);
  padding: 2rem 1rem;
}

.why-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.why-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.10);
  padding: 1.25rem 1rem;
  min-width: 200px;
  flex: 1 1 220px;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
}

.benefit-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.benefit-card:hover {
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
  transform: translateY(-4px) scale(1.03);
}

.testimonials-section {
  background: #fffbe6;
  padding: 2rem 1rem 3.5rem 1rem;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.10);
  padding: 1.25rem 1rem;
  min-width: 200px;
  flex: 1 1 220px;
  text-align: center;
  font-style: italic;
  color: #1a2a33cc;
}

footer {
  background: linear-gradient(90deg, #0f9d58 0%, #4285f4 100%);
  color: #fff;
  padding: 2.5rem 1rem 1rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 0 -2px 8px rgba(44, 62, 80, 0.08);
}

.footer-col {
  flex: 1 1 180px;
  min-width: 180px;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-size: 1.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-links, .footer-legal, .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-legal li, .footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a, .footer-legal a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover, .footer-legal a:hover {
  color: #ffd600;
}

.footer-contact .social-icons {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.social-icon {
  font-size: 1.3rem;
  color: #fff;
  transition: color 0.2s;
  text-decoration: none;
}

.social-icon:hover {
  color: #ffd600;
}

@media (max-width: 900px) {
  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .why-benefits, .testimonials {
    flex-direction: column;
    align-items: center;
  }
  footer {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0.7rem;
  }
  nav {
    width: 100%;
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.1rem;
    line-height: 1.2;
  }
  .hero-content p {
    font-size: 0.98rem;
  }
  .tools-grid-section h2, .why-section h2, .testimonials-section h2 {
    font-size: 1rem;
  }
  .tools-grid {
    gap: 0.7rem;
    grid-template-columns: 1fr;
  }
  .benefit-card, .testimonial-card {
    min-width: 100px;
    padding: 0.7rem 0.3rem;
    font-size: 0.95rem;
  }
  .footer-col {
    min-width: 90px;
    font-size: 0.95rem;
  }
  .hero {
    padding: 1.2rem 0.3rem 1rem 0.3rem;
  }
  section[style*="max-width"] {
    padding: 1rem 0.3rem 1rem 0.3rem !important;
  }
  input, select, textarea, button, .btn {
    font-size: 0.98rem;
    padding: 0.5rem 0.7rem;
  }
  nav a, .dropdown-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.98rem;
  }
  .tool-card h3 {
    font-size: 1rem;
  }
  .tool-card p {
    font-size: 0.92rem;
  }
  .tool-card .tool-icon {
    font-size: 1.5rem;
  }
  .dropdown-content {
    min-width: 150px;
    font-size: 0.98rem;
  }
}

@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 0.95rem;
  }
  .hero-content p {
    font-size: 0.85rem;
  }
  .footer-logo {
    font-size: 1.1rem;
  }
  .footer-col {
    font-size: 0.85rem;
  }
  .benefit-card, .testimonial-card {
    font-size: 0.85rem;
    padding: 0.5rem 0.1rem;
  }
  .tool-card h3 {
    font-size: 0.92rem;
  }
  .tool-card p {
    font-size: 0.85rem;
  }
}

button, .btn {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  color: #1a2a33;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

button:hover, .btn:hover {
  background: linear-gradient(90deg, #ffd600 0%, #43e97b 100%);
  color: #0f9d58;
  transform: translateY(-2px) scale(1.04);
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 6px;
  border: 1.5px solid #b2dfdb;
  padding: 0.6rem 0.8rem;
  margin-bottom: 1rem;
  width: 100%;
  box-sizing: border-box;
  background: #f9f9f9;
  transition: border 0.2s;
}

input:focus, select:focus, textarea:focus {
  border-color: #43e97b;
  outline: none;
} 