/* MIPA-MONT Landing Pages Shared Styles */

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Container System */
.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .lp-container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .lp-container {
    padding: 0 60px;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem 0;
  font-weight: bold;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 0.75rem;
}

p {
  margin: 0 0 1rem 0;
  color: black;
  line-height: 1.7;
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: #e0422c;
  color: #fff !important;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: #c53824;
  transform: translateY(-1px);
}

/* Grid System */
.lp-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .lp-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lp-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card Styles */
.lp-card {
  padding: 1.5rem;
  text-align: left;
}

.lp-card h3 {
  color: black;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: bold;
}

.lp-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.lp-card-highlight {
  background: #F5F0EA;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.lp-card-highlight h3,
.lp-card-highlight p {
  color: #5B5A59;
}

/* Section Spacing */
.lp-section {
  padding: 4rem 0;
}

.lp-section h2 {
  text-align: left;
}

.lp-section:first-child {
  padding-top: 2rem;
}

@media (max-width: 767px) {
  .lp-section {
    padding: 2.5rem 0;
  }
}

/* Hero Section */
.lp-hero {
  padding: 3rem 0 4rem 0;
}

.lp-hero h1 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.lp-hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .lp-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.lp-hero-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 2rem;
}

.lp-hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: bold;
  color
}

.lp-hero-image {
  text-align: center;
}

.lp-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Temporary Image Placeholder Styles */
.lp-temp-image {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border-radius: 8px;
  color: #6c757d;
  font-style: italic;
}

.lp-hero .lp-temp-image {
  min-height: 300px;
}

@media (min-width: 768px) {
  .lp-hero .lp-temp-image {
    min-height: 400px;
  }
}

/* Icon Placeholders */
.lp-icon-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

/* Numbered Lists */
.lp-numbered-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .lp-numbered-list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.lp-numbered-list li {
  counter-increment: step;
  padding: 1rem;
  position: relative;
}

.lp-numbered-list li::before {
  content: counter(step);
  background: white;
  color: black;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.lp-numbered-list li strong {
  color: #333;
  display: block;
  font-size: 1.1rem;
}

/* Two Column Content */
.lp-two-column {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .lp-two-column {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* DPH Section Special Styling */
.lp-dph-highlight {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.lp-dph-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e0422c 0%, #439c8c 100%);
}

.lp-dph-badge {
  background: #439c8c;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
