html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* --- Existing global CSS --- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

    /* --- ADD ABOUT PAGE CSS BELOW --- */
    body.about-page {
        background: url('@Url.Content("~/images/bg3.png")') no-repeat center center fixed;
        background-size: cover;
        color: white;
        font-family: 'Roboto Slab', serif;
        margin: 0;
        padding: 0;
    }

.about-header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px; /* adjust as needed */
    text-align: center;
    position: relative;
}

.about-header-content h1 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    margin: 0;
    position: relative;
}

.about-header-section .logo-space {
    position: absolute;
    top: 20px;
    left: 20px;
    font-weight: 800;
    color: red;
    font-size: 2rem;
}

.about-info-section {
    width: 100%;
    background-color: white;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.about-info-inner {
    max-width: 1000px;
    text-align: center;
    color: #000;
}

    .about-info-inner h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 3rem;
        font-weight: 900;
        margin-bottom: 10px;
    }

.red-dash {
    width: 60px;
    height: 4px;
    background-color: red;
    margin: 10px auto 30px auto;
}

.about-info-inner p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}
