body {
    background-color: #f5f1e3; /* warm cream */
    
}

/* Main header */
h1 {
    margin-top: 1em;
    text-align: center;
    font-size: 75px;
    width: 100%;
    font-weight: 700;
    color: black;
    text-decoration: underline;
}

/* app name header */
.software_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 1em;
    text-align: center;
    font-size: 45px;
    width: 100%;
    font-weight: 500;
    color: black;
}
.software_text {
    text-align: center;
    font-family: verdana;
    font-size: 21px;
    color: #3b2f2f; /* dark brown */
  }
/* 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 */
.title {
    text-align: start;
    font-family: 'action_manbold';
    font-size: 45px;
    width: 50%;
    margin: 15px auto;
    color: #3b2f2f; /* dark brown */
}

/* Big facts header */

.about_company {
    text-align: center;
    max-width: 55%;
    margin: 25px auto 3em;
    font-family: sans-serif;    
}

.about_company p {
    font-family: verdana;
    font-size: 20px;
    color: #3b2f2f; /* dark brown */
  }


/*TO APP PAGE BUTTTON*/
.go_button {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #ff5e62;
    border-radius: 50px;
    transition: all 0.4s ease-out;
    box-shadow: 0 10px 20px rgba(255, 94, 98, 0.3);
    animation: pulse 2s infinite;
    cursor: pointer;
}

.arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.4s ease-out;
}
/* Hover Animation: Button lifts, grows, and arrow shoots right */
.go_button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 94, 98, 0.5);
    background-color: #7a0d0f;
}

.go_button:hover .arrow {
    transform: translateX(10px);
}

/* Click Animation: Pressed down effect */
.go_button:active {
    transform: translateY(2px);
    box-shadow: 0 5px 15px rgba(255, 94, 98, 0.4);
}


/*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;
}
  }