

/* Start:/assets/build/css/master-plany.css?177252507510400*/
.master-plan-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
    color: #2f444e;
    background-color: #fff;
    line-height: 1.6;
  }
  
  /* Section styling */
  .mp-section {
    margin-bottom: 4rem;
    position: relative;
  }
  
  .mp-section-alt {
    background-color: #f8fbfd;
    padding: 3rem 2rem;
    border-radius: 32px;
  }
  
  .mp-section-header {
    margin-bottom: 2rem;
  }
  
  .mp-section-title {
    color: #30454f;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    position: relative;
    display: inline-block;
  }
  
  .mp-section-decoration {
    width: 80px;
    height: 4px;
    background: #1fb3aa;
    border-radius: 2px;
    margin-top: 0.5rem;
  }
  
  /* Stats wrapper with label */
  .mp-stats-wrapper {
    margin-bottom: 2.5rem;
  }
  
  .mp-stats-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #30454f;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Stats cards with nested structure */
  .mp-stats-card {
    display: flex;
    gap: 2rem;
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(31, 179, 170, 0.08);
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .mp-stat-main {
    flex: 0 0 auto;
    text-align: center;
    padding-right: 2rem;
    border-right: 2px solid rgba(31, 179, 170, 0.2);
    min-width: 200px;
  }
  
  .mp-stat-main .mp-stat-number {
    font-size: 3.5rem;
    margin-bottom: 0.25rem;
  }
  
  .mp-stat-main .mp-stat-label {
    font-size: 1.1rem;
    color: #4a6a78;
    line-height: 1.4;
  }
  
  .mp-stat-nested {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .mp-stat-nested-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .mp-stat-nested-item .mp-stat-number {
    font-size: 2rem;
    min-width: 60px;
  }
  
  .mp-stat-nested-item .mp-stat-label {
    font-size: 1.1rem;
    color: #4a6a78;
  }
  
  .mp-stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1fb3aa;
    line-height: 1.2;
  }
  
  .mp-stat-label {
    font-size: 1.1rem;
    color: #4a6a78;
  }
  
  /* Cards */
  .mp-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(31, 179, 170, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  
  .mp-card-numbered {
    padding-top: 3.5rem;
  }
  
  .mp-card-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: #1fb3aa;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(31, 179, 170, 0.3);
  }
  
  .mp-card-number-light {
    background: white;
    color: #1fb3aa;
  }
  
  .mp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(31, 179, 170, 0.12);
  }
  
  .mp-card-accent {
    border-left: 6px solid #1fb3aa;
  }
  
  .mp-card-highlight {
    background: linear-gradient(135deg, #30454f 0%, #2f444e 100%);
    color: white;
    margin-top: 2rem;
  }
  
  .mp-card-highlight .mp-card-title {
    color: white;
  }
  
  .mp-card-highlight .mp-card-title::after {
    background: white;
  }
  
  .mp-card-title {
    color: #30454f;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .mp-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #1fb3aa;
    border-radius: 2px;
  }
  
  /* Text emphasis */
  .mp-text-emphasis {
    font-size: 1.15rem;
    background: rgba(31, 179, 170, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid #1fb3aa;
  }
  
  .mp-text-emphasis strong {
    color: #1fb3aa;
    font-weight: 700;
  }
  
  /* Timeline */
  .mp-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
  }
  
  .timeline-item {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: #f8fbfd;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(31, 179, 170, 0.1);
    transition: all 0.3s ease;
  }
  
  .timeline-item:hover {
    border-color: #1fb3aa;
    background: white;
    box-shadow: 0 5px 20px rgba(31, 179, 170, 0.1);
  }
  
  .timeline-item-highlight {
    background: linear-gradient(135deg, #f0f9f8 0%, #ffffff 100%);
    border-left: 6px solid #1fb3aa;
  }
  
  .timeline-year-badge {
    flex: 0 0 160px;
    font-weight: 700;
    color: #30454f;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(31, 179, 170, 0.1);
    height: fit-content;
  }
  
  .timeline-content {
    flex: 1;
    min-width: 250px;
  }
  
  .timeline-quote {
    font-style: italic;
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-left: 3px solid #1fb3aa;
    margin: 0.75rem 0;
    color: #4a6a78;
    font-size: 0.95rem;
  }
  
  /* Grids */
  .mp-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
  }
  
  .mp-focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
  }
  
  .mp-focus-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(31, 179, 170, 0.1);
    transition: all 0.3s ease;
  }
  
  .mp-focus-card:hover {
    transform: translateY(-5px);
    border-color: #1fb3aa;
    box-shadow: 0 15px 30px rgba(31, 179, 170, 0.15);
  }
  
  .mp-focus-card h4 {
    color: #30454f;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1fb3aa;
  }
  
  .mp-focus-card p {
    font-size: 0.95rem;
    color: #4a6a78;
    margin: 0;
    line-height: 1.5;
  }
  
  /* Tags */
  .mp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
  }
  
  .mp-tag {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
  }
  
  /* Lists */
  .mp-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
  }
  
  .mp-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="%231fb3aa"><circle cx="12" cy="12" r="6"/></svg>') left center no-repeat;
    background-size: 1.2rem;
  }
  
  .mp-list-compact li {
    padding: 0.3rem 0 0.3rem 1.8rem;
    background-size: 1rem;
  }
  
  /* Links */
  .mp-link {
    color: #1fb3aa;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.2s ease;
  }
  
  .mp-link:hover {
    border-bottom-color: #1fb3aa;
  }
  
  .mp-link-light {
    color: #1fb3aa;
    border-bottom-color: rgba(31, 179, 170, 0.3);
  }
  
  .mp-link-light:hover {
    border-bottom-color: #1fb3aa;
  }
  
  .mp-link-block {
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  
  /* Text styles */
  .mp-text-lead {
    font-size: 1.25rem;
    color: #30454f;
    font-weight: 500;
    margin: 0;
  }
  
  .mp-text-regular {
    font-size: 1.1rem;
    color: #2f444e;
    line-height: 1.7;
  }
  
  .mp-note {
    color: #6c8a98;
    font-size: 0.95rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(31, 179, 170, 0.3);
  }
  
  .mp-stat-note {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin: 1.5rem 0 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
  }
  
  .mp-stat-note .mp-link {
    color: #1fb3aa;
    font-weight: 600;
  }
  
  /* Maps section */
  .img-map {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .maps {
    margin-bottom: 2rem;
  }
  
  /* Documents section */
  .template__gray-block {
    border-radius: 32px;
  }
  
  /* Contact section */
  .mp-contact-section {
    margin-top: 1rem;
    text-align: center;
  }
  
  .mp-contact-card {
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid rgba(31, 179, 170, 0.2);
  }
  
  .mp-contact-title {
    color: #30454f;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
  }
  
  .mp-contact-email {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #1fb3aa;
    text-decoration: none;
    border-bottom: 2px solid #1fb3aa;
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
  }
  
  .mp-contact-email:hover {
    color: #30454f;
    border-bottom-color: #30454f;
    transform: scale(1.05);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .mp-section-title { font-size: 2rem; }
    .mp-focus-grid { grid-template-columns: repeat(2, 1fr); }
    .mp-contact-email { font-size: 1.5rem; }
    .mp-stats-card {
      flex-direction: column;
      align-items: stretch;
    }
    .mp-stat-main {
      border-right: none;
      border-bottom: 2px solid rgba(31, 179, 170, 0.2);
      padding-right: 0;
      padding-bottom: 1.5rem;
      text-align: left;
      min-width: auto;
    }
  }
  
  @media (max-width: 768px) {
    .master-plan-page { padding: 1rem; }
    .mp-grid-2 { grid-template-columns: 1fr; }
    .timeline-item { flex-direction: column; }
    .timeline-year-badge { flex: 0 0 auto; width: fit-content; }
    .mp-stats-card { padding: 1.5rem; }
    .mp-contact-card { padding: 2rem; }
  }
  
  @media (max-width: 480px) {
    .mp-focus-grid { grid-template-columns: 1fr; }
    .mp-stat-number { font-size: 2rem; }
    .mp-stat-main .mp-stat-number { font-size: 2.5rem; }
    .mp-section { margin-bottom: 2rem; }
    .mp-section-alt { padding: 1.5rem; }
    .mp-contact-email { font-size: 1.25rem; }
    .mp-card-number { width: 40px; height: 40px; font-size: 1.5rem; }
    .mp-stat-nested-item {
      flex-direction: column;
      gap: 0.25rem;
    }
  }
/* End */
/* /assets/build/css/master-plany.css?177252507510400 */
