/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #841a11;
  color: #ffffff;
  font-family: Georgia, 'Times New Roman', Times, serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Main Container Layout */
.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  width: 100%;
  gap: 40px;
}

/* Left Brand/Logo Area */
.brand-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* PNG Logo Styling */
.brand-logo {
  max-width: 300px;    /* Adjust size to fit your logo best */
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Right Content Area */
.content-section {
  display: flex;
  flex-direction: column;
}

.main-heading {
  color: #f9ec62; /* Muted Gold / Yellow tone from reference image */
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.sub-heading {
  font-style: italic;
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 35px;
}

/* Info Rows */
.info-group {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-item.align-center {
  align-items: center;
}

/* Large Grey Labels (P, A, S) */
.icon-label {
  font-size: 1.6rem;
  font-weight: 900;
  color: #333333; /* Dark Grey Accent */
  width: 25px;
  text-align: center;
  line-height: 1;
  user-select: none;
}

/* Text Content within info items */
.info-details p {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.4;
  font-family: Arial, Helvetica, sans-serif; /* Clean sans-serif for phone & address readability */
  font-weight: 600;
}

.info-details a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-details a:hover {
  color: #f9ec62;
}

/* Social Media Icons */
.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #fcf9f9;
  color: #000000;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
  background-color: #f9ec62;
  transform: translateY(-2px);
}

/* Responsive Design for Mobile / Tablets */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .brand-section {
    text-align: center;
  }

  .logo-text {
    font-size: 2.2rem;
  }

  .divider {
    width: 80%;
    height: 1px; /* Horizontal divider on mobile */
  }

  .content-section {
    align-items: center;
  }

  .main-heading {
    font-size: 1.5rem;
  }

  .info-item {
    justify-content: center;
  }
}