/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #0f103e 0%, #2031fe 50%, #00f0ff 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  padding: 0.5rem 0;
  text-align: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.logo-img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
  max-width: 100%;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-text {
  text-align: left;
}

.logo-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

/* Main content */
.main-content {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin: 0.5rem 0 2rem 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

/* Hero section */
.hero-section {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.hero-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-section p {
  font-size: 1.2rem;
  color: #6b7280;
  font-weight: 400;
}

/* Contact section */
.contact-section {
  margin-bottom: 3rem;
}

.contact-section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-grid {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.contact-item {
  background: #f8fafc;
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  cursor: pointer;
}

.contact-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #e2e8f0, #e2e8f0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  background: linear-gradient(135deg, #fe6305, #00f0ff, #2031fe, #fe6305)
    border-box;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover::before {
  opacity: 1;
}

.contact-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(254, 99, 5, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  color: #fe6305;
}

.contact-item h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover h4 {
  color: #fe6305;
  transform: translateY(-2px);
}

.contact-item p {
  color: #6b7280;
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover p {
  color: #1f2937;
  transform: translateY(-1px);
}

.contact-link {
  display: inline-block;
  background: linear-gradient(135deg, #fe6305, #2031fe);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(254, 99, 5, 0.3);
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 99, 5, 0.4);
}

/* Info section */
.info-section {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
}

.info-section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
  text-align: center;
}

.info-grid {
  display: flex;
  justify-content: center;
}

.info-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  max-width: 400px;
  width: 100%;
}

.info-item h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.info-item p {
  color: #6b7280;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #00f0ff;
}

/* Privacy page styles */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.privacy-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #fe6305;
}

.privacy-content p {
  color: #4b5563;
  margin-bottom: 1rem;
  text-align: justify;
}

.privacy-content strong {
  color: #1f2937;
  font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .main-content {
    padding: 2rem 1.5rem;
    margin: 1rem 0;
    border-radius: 16px;
  }

  .logo {
    flex-direction: column;
    gap: 1rem;
  }

  .logo-img {
    height: 90px;
  }

  .logo-text {
    text-align: center;
  }

  .logo-title {
    font-size: 2.5rem;
  }

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

  .hero-section h2 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .contact-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 1.5rem 1rem;
  }

  .logo-img {
    height: 75px;
  }

  .logo-title {
    font-size: 2rem;
  }

  .logo-subtitle {
    font-size: 0.9rem;
  }

  .hero-section h2 {
    font-size: 1.8rem;
  }

  .contact-item {
    padding: 1.25rem;
  }
}
