body {
    background-color: #f5f1e3; /* warm cream */
    
}

/* Main header */
h1 {
    margin-top: 3em;
    text-align: center;
    font-size: 25px;
    width: 100%;
    font-weight: 700;
    color: black;
    text-decoration: underline;
}
h2 {
    margin-top: 1em;
    text-align: center;
    font-size: 25px;
    width: 100%;
    font-weight: 700;
    color: black;
    text-decoration: underline;
}
/* app name header */
.privacy_policy {
    width: 75%;
    display: inline;
    justify-content: center;
  }
/* Accent text */
.bold {
    margin-top: 1em;
    color: #202d06; 
    font-size: 25px;
    text-decoration: underline;
}
.accent {
    margin-top: 1em;
    color: #202d06; 
    font-size: 25px;
    text-decoration: underline;
}

/* Section titles */
.p {
    text-align: left;
    font-family: verdana;
    font-size: 21px;
    color: #3b2f2f; /* dark brown */
}





/*MOBILE STYLING*/
@media (max-width: 768px) {
    .row_image {
      flex-direction: column;
      align-items: center; /* Centers the images horizontally on mobile */
    }
    /* 1. Ensure the containers don't have rigid, fixed widths */
.text_container, 
.about_company {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box; 
}

/* 2. Style the paragraph to wrap safely on mobile */
.about_company p {
  width: 100%;
  margin: 0; /* Clears default browser margins */
  
  /* Adds a 15px safety cushion so text doesn't glue itself to the physical screen edge */
  padding: 0 15px; 
  box-sizing: border-box;

  /* Force breaks on abnormally long words, names, or URLs */
  overflow-wrap: break-word; 
  word-wrap: break-word;
}
  }