/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f2f5;
  padding: 20px;
}

.card {
  background: white;
  padding: 48px;
  border-radius: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar-container {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px solid #2d9cdb;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.avatar-container img {
  width: 115%;
  height: auto;
  object-fit: cover;
}

.name {
  color: #2d9cdb;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.2;
}

.title {
  color: #333333;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}

.company {
  color: #666666;
  font-size: 24px;
  margin-bottom: 16px;
}

.location {
  color: #666666;
  font-size: 24px;
  margin-bottom: 32px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333333;
  font-size: 24px;
  text-decoration: none;
  font-weight: 400;
}

.social-link svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 480px) {
  .card {
    padding: 32px;
  }

  .avatar-container {
    width: 180px;
    height: 180px;
  }

  .name {
    font-size: 32px;
  }

  .title,
  .company,
  .location {
    font-size: 20px;
  }
}

.blue {
  font-weight: 500;
  background-color: #3aa3ff;
  border-radius: 500px;
  padding: 0 10px;
  white-space: nowrap;
}

/* Authentication Page Styles */
.auth-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f2f5;
  padding: 20px;
}

.auth-card {
  background: white;
  padding: 48px;
  border-radius: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.auth-card h2 {
  color: #2d9cdb;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.auth-card p {
  color: #666;
  margin-bottom: 24px;
  font-size: 16px;
}

.auth-card input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.2s;
}

.auth-card input:focus {
  border-color: #2d9cdb;
}

.auth-card button {
  width: 100%;
  padding: 12px;
  background-color: #2d9cdb;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.auth-card button:hover {
  background-color: #2588c7;
}

.error-message {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 8px;
}

/* QA Rear Page Styles */
.qa-rear-container {
  min-height: 100vh;
  background-color: #f8f9fa;
  padding: 0;
}

.qa-header {
  background: linear-gradient(135deg, #2d9cdb, #3aa3ff);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.qa-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.qa-header .highlight {
  color: #ffeb3b;
}

.qa-header .tagline {
  font-size: 20px;
  opacity: 0.9;
}

.qa-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.hero {
  text-align: center;
  margin-bottom: 80px;
}

.hero h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-description {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.approach {
  margin-bottom: 80px;
}

.approach h3 {
  font-size: 32px;
  color: #333;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 600;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.approach-item {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.approach-item h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 600;
}

.approach-item p {
  color: #666;
  line-height: 1.6;
}

.process {
  margin-bottom: 80px;
}

.process h3 {
  font-size: 32px;
  color: #333;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 600;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  background: #2d9cdb;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.step-content p {
  color: #666;
  line-height: 1.6;
}

.cta {
  background: white;
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 24px;
  font-weight: 600;
}

.cta p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: linear-gradient(135deg, #2d9cdb, #3aa3ff);
  color: white;
  padding: 16px 48px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(45, 156, 219, 0.3);
}

.qa-footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 32px 20px;
}

.qa-footer a {
  color: #2d9cdb;
  text-decoration: none;
  font-weight: 600;
}

.qa-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .qa-header h1 {
    font-size: 36px;
  }
  
  .qa-header .tagline {
    font-size: 18px;
  }
  
  .hero h2 {
    font-size: 28px;
  }
  
  .approach h3,
  .process h3 {
    font-size: 28px;
  }
  
  .qa-main {
    padding: 40px 20px;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
}
