* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  flex-grow: 1;
}

.title-section {
  text-align: center;
  margin-bottom: 20px;
}

h2 {
  color: #FFFFFF; /* Changed to pure white */
}

p {
  color: #ccc;
}

/* Image layout */
.image-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.image-box {
  background-color: #222;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  border: 2px solid #FFFFFF; /* Changed to pure white */
  animation: glow 3s ease-in-out infinite;
}

.image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Text card */
.text-box {
  background-color: #222;
  padding: 20px;
  border-radius: 5px;
  border: 2px solid #FFFFFF; /* Changed to pure white */
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: glow 3s ease-in-out infinite;
}

/* Button styling */
.contact-button {
  margin-top: 15px;
  padding: 6px 12px;
  background-color: #000000;
  color: #FFFFFF; /* Changed text color to pure white */
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-size: 12px;
}

.contact-button:hover {
  background-color: #000000;
}

/* Glow animation */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1), 0 0 10px rgba(255, 255, 255, 0.05); /* Changed to white */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1); /* Changed to white */
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 25px rgba(255, 255, 255, 0.3); /* Changed to white */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4); /* Changed to white */
  }
  100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1), 0 0 10px rgba(255, 255, 255, 0.05); /* Changed to white */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1); /* Changed to white */
  }
}

/* Responsive */
@media (max-width: 768px) {
  .image-container {
    grid-template-columns: 1fr;
  }
  .text-box {
    padding: 15px;
  }
  .contact-button {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #222;
  border-top: 2px solid #FFFFFF; /* Changed to pure white */
  color: #fff;
  animation: glow 3s ease-in-out infinite;
}

footer p {
  font-size: 14px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.1); /* Changed to white */
}