/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fefefe;
  color: #222;
  line-height: 1.6;
}

a {
  color: #f50087;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: auto;
  padding: 20px;
}

/* Header Styles */
header {
  background-color: white;
  color: #0a0a2a;
  padding: 40px 0;
  border-bottom: 2px solid #eee;
}

.header-container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.logo-box {
  background-color: white;
  padding: 10px;
  border-radius: 12px;
}

.logo {
  max-width: 200px;
  height: auto;
}

.text-box {
  text-align: center;
}

.company-name {
  font-size: 2rem;
  margin-bottom: 5px;
  color: #f50087;
}

.tagline {
  font-size: 1rem;
  color: #ff8c00;
}

/* Section Styles */
main section {
  margin: 40px 0;
}

h2 {
  color: #f50087;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

small {
  display: block;
  margin-top: 10px;
  color: #666;
}

/* Brochures Section */
.brochures .banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.brochures img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #0a0a2a;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (min-width: 768px) {
  .header-container {
    justify-content: flex-start;
    text-align: left;
  }

  .text-box {
    text-align: left;
  }

  .brochures .banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .brochures .banner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
