@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=DM+Sans:400,500,600&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', Arial, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

/* Header Styles */
.header {
  padding: 20px 40px;
  background-color: #1b1b24;
  color: #fff;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  display: inline-block;
  max-width: 100%;
}

.logo img {
  max-width: 400px;
  width: 100%;
  height: auto;
  min-width: 200px;
}

/* Hero Section */
.hero {
  padding: 60px 40px;
  text-align: center;
  max-width: 1600px;
  margin: 0 auto;
}

h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 300;
  margin-bottom: 40px;
  color: #1b1b24;
  letter-spacing: -0.5px;
}

/* Beacon Image Container */
.beacon-container {
  margin: 20px 0 40px 0;
  padding: 20px;
}

.beacon-container img {
  max-width: 75%;
  height: auto;
  transition: transform 0.3s ease;
}

.beacon-container img:hover {
  transform: translateY(-5px);
}

/* Text Content */
.content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: left;
}

p {
  font-size: 18px;
  font-family: 'DM Sans', Arial, sans-serif;
  margin-bottom: 20px;
  font-weight: 400;
  color: #636872;
  text-align: center;
}

p:last-of-type {
  margin-bottom: 40px;
}

/* Link Styling */
a {
  color: #1b1b24;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

a:hover {
  color: #2980b9;
  border-bottom-color: #2980b9;
}

/* CTA Button (if needed for future use) */
.cta-button {
  display: inline-block;
  padding: 16px 32px;
  background-color: #1b1b24;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(27, 27, 36, 0.2);
  border: none;
}

.cta-button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 128, 185, 0.3);
  border-bottom: none;
  color: #fff;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }
  
  .logo img {
    max-width: 280px;
    min-width: 180px;
  }
  
  .hero {
    padding: 40px 20px;
  }
  
  .beacon-container {
    margin: 30px 0;
    padding: 10px;
  }
  
  p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: 15px 50px;
  }
  
  .logo img {
    max-width: 350px;
  }
}

@media only screen and (min-width: 1025px) {
  .hero {
    padding: 15px 60px;
  }
  
  .logo img {
    max-width: 400px;
  }
  
  p {
    font-size: 20px;
  }
}

/* High DPI screens */
@media only screen and (min-resolution: 192dpi) {
  .beacon-container img {
    image-rendering: crisp-edges;
  }
}