/* Message Section */
.message {
  padding: 80px 0;
  background-color: #fff;
}

.message-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.message-header {
  text-align: center;
  margin-bottom: 60px;
}

.message-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.message-text p {
  margin-bottom: 30px;
  line-height: 2;
  font-size: 16px;
}

/* Requirements Section */
.requirements {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.requirements-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.requirements-header {
  text-align: center;
  margin-bottom: 60px;
}

.requirement-table {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.requirement-row {
  display: flex;
  border-bottom: 1px solid #eee;
}

.requirement-row:last-child {
  border-bottom: none;
}

.requirement-row h3 {
  width: 200px;
  padding: 20px;
  background-color: #f5f5f5;
  margin: 0;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.requirement-details {
  flex: 1;
  padding: 20px;
}

.requirement-details p {
  margin: 0 0 10px;
  line-height: 1.6;
  font-size: 15px;
}

.requirement-details p:last-child {
  margin-bottom: 0;
}

/* Environment Section */
.environment {
  padding: 80px 0;
  background-color: #fff;
}

.environment-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.environment-header {
  text-align: center;
  margin-bottom: 60px;
}

.environment-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.environment-item {
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.environment-item:hover {
  transform: translateY(-5px);
}

.environment-icon {
  width: 60px;
  height: 60px;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
}

.environment-item h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.environment-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Entry Section */
.entry {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
}

.entry::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.entry-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.entry-header {
  margin-bottom: 40px;
}

.entry-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.entry-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}

.entry-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.entry-buttons .primary-btn {
  min-width: 250px;
  text-align: center;
  padding: 20px 40px;
  font-size: 16px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.entry-buttons .primary-btn:hover {
  background-color: #555;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .requirement-row {
    flex-direction: column;
  }

  .requirement-row h3 {
    width: 100%;
    padding: 15px;
  }

  .requirement-details {
    padding: 15px;
  }

  .environment-content {
    grid-template-columns: 1fr;
  }

  .message-text p br {
    display: none;
  }

  .entry-content {
    padding: 30px 20px;
  }

  .entry-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .entry-buttons .primary-btn {
    width: 100%;
    min-width: auto;
    padding: 15px 20px;
  }
}

@media screen and (max-width: 480px) {
  .page-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .page-subtitle {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .environment-item {
    padding: 20px;
  }
} 