.footer {
  background: var(--primary-color);
  color: white;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.footer-logo span {
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.copyright {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}

.page-header {
  padding: 60px 0;
  background: var(--gradient-bg);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
}

.legal-content {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.9);
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-section h3 {
  color: var(--accent-color);
  font-size: 1.3rem;
  margin: 1.5rem 0 0.8rem;
  font-weight: 600;
}

.legal-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.success-section {
  padding: 120px 0;
  background: var(--gradient-bg);
  text-align: center;
}

.success-content {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow-color);
}

.success-icon {
  margin-bottom: 30px;
}

.success-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.success-message {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.success-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.character-detail {
  margin-bottom: 80px;
  padding: 40px 0;
}

.character-detail:nth-child(even) {
  background: rgba(255, 255, 255, 0.5);
}

.character-portrait img {
  border-radius: 15px;
  box-shadow: 0 15px 35px var(--shadow-color);
}

.character-info h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.character-subtitle {
  font-size: 1.1rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.character-info h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin: 25px 0 15px;
}

.character-info p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.team-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.7);
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  border-radius: 50%;
  margin-bottom: 20px;
}

.team-card h3 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.team-role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.values-section {
  padding: 80px 0;
  background: var(--gradient-bg);
}

.value-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px var(--shadow-color);
  height: 100%;
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.artifact-detail {
  margin-bottom: 80px;
  padding: 40px 0;
}

.artifact-detail:nth-child(even) {
  background: rgba(255, 255, 255, 0.5);
}

.artifact-image-large img {
  border-radius: 15px;
  box-shadow: 0 15px 35px var(--shadow-color);
}

.artifact-info h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.artifact-subtitle {
  font-size: 1.1rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.artifacts-gallery {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 2px solid var(--border-color);
}

.contact-detailed {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.9);
}

.contact-info-section {
  padding-right: 40px;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.contact-form-section {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 35px var(--shadow-color);
}

.faq-section {
  padding: 80px 0;
  background: var(--gradient-bg);
}

.uk-accordion-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.uk-accordion-content {
  color: var(--text-light);
  line-height: 1.6;
}

.expeditions-intro {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.7);
}

.intro-text {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.7;
}

.expeditions-list {
  padding: 80px 0;
}

.expedition-item {
  margin-bottom: 80px;
  padding: 40px 0;
}

.expedition-item:nth-child(even) {
  background: rgba(255, 255, 255, 0.5);
}

.expedition-content h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.expedition-status {
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.expedition-item:nth-child(1) .expedition-status {
  background: #d4edda;
  color: #155724;
}

.expedition-item:nth-child(2) .expedition-status {
  background: #fff3cd;
  color: #856404;
}

.expedition-item:nth-child(3) .expedition-status {
  background: #d4edda;
  color: #155724;
}

.expedition-content h3 {
  color: var(--primary-color);
  margin: 25px 0 15px;
  font-size: 1.4rem;
}

.expedition-timeline {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.7);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 40px;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 40px;
}

.timeline-date {
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 15px;
}

.timeline-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}
