:root {
  --primary: #fd3d91;
  --secondary: #6ed2d4;
  --dark: #121212;
  --light: #FFFFFF;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --header-height: 60px;
  --transition-speed: 0.3s;
  --gradient: linear-gradient(90deg, rgba(253, 61, 145, 0.9), rgba(110, 210, 212, 0.9));
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: linear-gradient(135deg, rgba(245, 247, 250, 0.65) 0%, rgba(227, 231, 242, 0.65) 100%), url('images/background.jpg');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Header Styles - Fixed at the top */
header {
  background: var(--gradient);
  color: var(--light);
  padding: 0 0.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.toggle-button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-speed);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 5;
  flex-shrink: 0;
}

.toggle-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.toggle-button:active {
  transform: scale(0.95);
}

.toggle-button .material-icons-round {
  font-size: 24px;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  flex-shrink: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  text-align: center;
}

header h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--light);
  margin: 0;
  line-height: 1;
  text-transform: lowercase;
}

header .tagline {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

/* Header Links */
.header-links {
  display: flex;
  align-items: center;
  margin-left: auto;
  z-index: 5;
  flex-shrink: 0;
}

.header-links a {
  color: var(--light);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.7rem;
  transition: all 0.3s ease;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  margin-left: 0.3rem;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.header-links a .material-icons-round {
  font-size: 16px;
}

.header-links a:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Side Panels */
.side-panels {
  position: fixed;
  top: var(--header-height);
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: opacity var(--transition-speed), visibility var(--transition-speed);
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 1rem;
}

.side-panels.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.content-panel {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  max-height: 100%;
  overflow-y: auto;
  -ms-overflow-style: none; /* Hide scrollbars IE and Edge */
  scrollbar-width: none; /* Hide scrollbars Firefox */
}

.content-panel::-webkit-scrollbar {
  display: none; /* Hide scrollbars Chrome, Safari, Opera */
}

.panel-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
}

/* Content Section Styles */
.hero-text, .about-section, .faq-section {
  margin-bottom: 2rem;
}

h2 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--secondary);
  border-radius: 1.5px;
}

p {
  margin-bottom: 1rem;
  color: rgba(18, 18, 18, 0.8);
}

/* FAQ Items */
.faq-item {
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Company Info Section */
.company-info {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.company-info h2 {
  font-size: 1.6rem;
}

.company-info p {
  font-size: 0.95rem;
}

.company-info a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.company-info a:hover {
  text-decoration: underline;
}

/* Portrait orientation (mobile) */
@media (max-width: 480px) and (orientation: portrait) {
  body {
    background-position: center;
  }
}

/* Landscape orientation */
@media (orientation: landscape) {
  body {
    background-position: center;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }
  
  header {
    padding: 0 0.3rem;
  }
  
  header h1 {
    font-size: 1.8rem;
  }
  
  header .tagline {
    font-size: 0.7rem;
  }
  
  .toggle-button {
    width: 36px;
    height: 36px;
  }
  
  .toggle-button .material-icons-round {
    font-size: 20px;
  }
  
  .header-links a {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    margin-left: 0.2rem;
  }
  
  .share-text {
    display: none;
  }
  
  #share-button {
    padding: 0.3rem;
  }
}

/* Tablet & Desktop Styles */
@media (min-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  header h1 {
    font-size: 2.5rem;
  }
  
  header .tagline {
    font-size: 0.9rem;
  }
  
  .logo-container {
    padding: 0.7rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .faq-item h3 {
    font-size: 1.3rem;
  }
  
  .header-links a {
    font-size: 1rem;
  }
} 