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

:root {
  --primary-color: #00d9a3;
  --primary-dark: #00b88a;
  --secondary-color: #ffffff;
  --accent-color: #ff4d8a;
  --text-color: #1a1a1a;
  --text-dark: #0a0a0a;
  --text-muted: #6b7280;
  --bg-light: #f8fafc;
  --bg-lighter: #ffffff;
  --bg-card: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #00d9a3;
  --error-color: #ff4d8a;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-light);
}

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

.header {
  background-color: var(--bg-lighter);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.5px;
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  position: relative;
  text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
}

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

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s;
}

.hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  color: var(--text-color);
  padding: 10rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 217, 163, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  position: relative;
}

.hero h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--primary-color);
  box-shadow: 0 0 20px var(--primary-color);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 14px rgba(0, 217, 163, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 217, 163, 0.4);
}

.btn-secondary {
  background-color: var(--bg-lighter);
  color: var(--text-color);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-card);
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 4px 14px rgba(0, 217, 163, 0.2);
}

.features {
  padding: 8rem 0;
  background-color: var(--bg-lighter);
}

.features h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: var(--text-color);
  font-weight: 800;
  letter-spacing: -1px;
}

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

.feature-card {
  background-color: var(--bg-card);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 217, 163, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 30px rgba(0, 217, 163, 0.15);
}

.feature-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 217, 163, 0.3));
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 700;
  position: relative;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  position: relative;
}

.cta {
  background: linear-gradient(135deg, #fef3f7 0%, #fee2e9 100%);
  color: var(--text-color);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 77, 138, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.page-header {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  color: var(--text-color);
  padding: 6rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 217, 163, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--text-muted);
  position: relative;
}

.content-section {
  padding: 4rem 0;
  background-color: var(--bg-lighter);
}

.content-layout {
  max-width: 900px;
  margin: 0 auto;
}

.content-main h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 700;
}

.content-main h2:first-child {
  margin-top: 0;
}

.content-main p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.content-main ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.content-main li {
  margin-bottom: 0.5rem;
}

.content-main strong {
  color: var(--primary-color);
  font-weight: 700;
}

.legal-content {
  font-size: 0.95rem;
}

.team-section {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.team-member {
  background-color: var(--bg-card);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  position: relative;
}

.team-member:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 30px rgba(0, 217, 163, 0.15);
}

.team-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 700;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-bio {
  color: var(--text-muted);
  line-height: 1.7;
}

.news-section {
  padding: 8rem 0;
  background-color: var(--bg-lighter);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.5rem;
}

.news-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.news-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 30px rgba(0, 217, 163, 0.15);
}

.news-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--bg-light);
  position: relative;
}

.news-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 50%);
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-content {
  padding: 2rem;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

.news-category {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 217, 163, 0.3);
}

.news-date {
  color: var(--text-muted);
  font-weight: 600;
}

.news-content h2 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
  line-height: 1.4;
  font-weight: 700;
}

.news-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.news-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.news-link:hover {
  color: var(--primary-dark);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.contact-section {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

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

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 700;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.contact-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 700;
}

.contact-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--primary-dark);
}

.contact-form-wrapper {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--text-color);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  background-color: var(--bg-light);
  color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 217, 163, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

.form-message.success {
  background-color: rgba(0, 217, 163, 0.1);
  color: var(--success-color);
  border: 1px solid var(--success-color);
}

.form-message.error {
  background-color: rgba(255, 77, 138, 0.1);
  color: var(--error-color);
  border: 1px solid var(--error-color);
}

.footer {
  background-color: var(--bg-lighter);
  color: var(--text-color);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--border-color);
}

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

.footer-col h4 {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-color);
  text-transform: uppercase;
}

.footer-col p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

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

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

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-lighter);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: none;
    border-top: 1px solid var(--border-color);
  }

  .nav-menu.active {
    display: flex;
  }

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

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

  .features h2,
  .cta h2 {
    font-size: 2rem;
  }

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

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

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

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