/* 공통 스타일 */
body {
  display: flex;
  justify-content: center;
  margin: 0;
  font-family: "Pretendard", Arial, sans-serif;
}

.container {
  width: 1104px;
  margin: 0 auto;
}

header {
  margin-top: 20px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  background-color: #f4f4f4;
  border: 2px solid #ddd;
  border-radius: 10px;
  height: 60px;
}

.menu {
  display: flex;
  gap: 40px;
  list-style: none;
}

.menu li {
  font-size: 16px;
}

.menu a {
  color: black;
  text-decoration: none;
  transition: color 0.3s;
}

.menu a:hover {
  color: black;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.auth-buttons button {
  padding: 5px 10px;
  border: 1px solid black;
  background-color: white;
  color: black;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.auth-buttons button:hover {
  background-color: black;
  color: white;
}

/* 로그인 섹션 스타일 */
.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.login-container {
  width: 400px;
  padding: 0px;
  border: 2px solid white;
  border-radius: 20px;
  background-color: white;
  text-align: center;
}

.login-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 50px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.login-form label {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

.forgot-link {
  font-size: 12px;
  color: #0066ff;
  text-decoration: none;
}

.login-form input {
  padding: 16px 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.login-button,
.google-button {
  padding: 16px 20px;
  border-radius: 5px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-button {
  background-color: black;
  color: white;
}

.login-button:hover {
  background-color: #333;
}

.google-button {
  background-color: white;
  color: black;
  border: 1px solid #ccc;
}

.google-button:hover {
  background-color: #f1f1f1;
}

.divider {
  text-align: center;
  margin: 20px 0;
  color: #999;
  font-size: 14px;
}

.signup-link {
  font-size: 14px;
  margin-top: 20px;
  color: #555;
}

.signup-link a {
  color: #0066ff;
  text-decoration: none;
  font-weight: bold;
}

/* 섹션 스타일 */
.section1 {
  text-align: center;
  margin-top: 50px;
}

.section1 h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.section1 p {
  font-size: 18px;
  color: #555;
}

.section2 {
  text-align: center;
  margin-top: 50px;
}

.section2 h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.section2 p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.section3 {
  text-align: center;
  margin-top: 50px;
}

.section3 h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.section3 p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  width: 300px;
  padding: 20px;
  border: 2px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

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

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  color: #555;
}

.hero-button {
  padding: 8px 14px;
  border: 2px solid black;
  background-color: white;
  color: black;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  margin-top: 20px;
  margin-bottom: 70px;
  font-size: 1rem;
}

.hero-button:hover {
  background-color: black;
  color: white;
}

video {
  width: 100%;
  height: 576px;
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
}

/* 추가 스타일 */
.pricing-section {
  background: #ffffff;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
  text-align: left;
}

.section-title {
  font-size: 32px;
  color: #222;
  margin-bottom: 50px;
  text-align: center;
}

.pricing-plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.plan {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  width: 320px;
  padding: 45px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.plan h3 {
  font-size: 26px;
  color: #007bff;
  margin-bottom: 10px;
}

.price {
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #333;
}

.price-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.cta-btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #0056b3;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan ul li {
  font-size: 15px;
  margin: 10px 0;
  color: #444;
  padding-left: 20px;
  position: relative;
}

.plan ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}
