* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  background-color: #242628;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo styling */
.logo-container {
  margin-bottom: 60px;
}

.logo {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* Content container */
.content {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

/* Gradient text effect for main heading */
.gradient-text {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ff387b 0%, #ff4476 13%, #ff656b 38%, #ff9a57 71%, #ffcf44 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Main message styling */
.main-message {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Customer section */
.customer-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.customer-message {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.customer-message strong {
  color: #ffffff;
  font-weight: 600;
}

/* Portal button */
.portal-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff387b 0%, #ff9a57 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 56, 123, 0.3);
}

.portal-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 56, 123, 0.4);
}

/* Contact section */
.contact-section {
  margin-top: 40px;
}

.contact-section h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.contact-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 207, 68, 0.3);
}

.contact-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.contact-email {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
  word-break: break-word;
}

.contact-email:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .gradient-text {
    font-size: 36px;
  }
  
  .main-message {
    font-size: 18px;
  }
  
  .logo {
    width: 140px;
  }
  
  .customer-section {
    padding: 20px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact-item {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .gradient-text {
    font-size: 28px;
  }
  
  .main-message {
    font-size: 16px;
  }
  
  .portal-button {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  .logo {
    width: 120px;
  }
  
  .container {
    padding: 30px 15px;
  }
  
  .contact-section h2 {
    font-size: 20px;
  }
}