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;
}
/* sub-main header */
h4 {
    text-align: center;
    font-size: 35px;
    width: 100%;
    font-weight: 700;
    color: black;
}
/* Description header */
h3 {
    margin-top: 1em;
    margin-bottom: 1em;
    text-align: center;
    font-size: 45px;
    width: 100%;
    font-weight: 500;
    color: black;
}
/* 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 */
  }

/* Form */
form {
    font-family: sans-serif;
    background-color: white/*#fffaf0; soft cream */
}

/* Button */
button {
    margin-top: 1em;
    background-color: #cc5500; /* burnt orange */
    color: #f5f1e3;
    padding: 15px 32px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
}

button:hover {
    background-color: #6b8e23; /* avocado */
    color: #fff;
    cursor: pointer;
}

/* Inputs */
input, textarea {
    border: 3px solid #3b2f2f;
    background-color: #fffaf0;
}

/* Contact */
.contact {
    text-align: center;
    font-size: 35px;
    color: #6b8e23;
}

/* Service Section */
.body_container {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.body_wrapper {
    display: flex;    
    gap: 21px;
    align-items: center;  
}

.mac_image {
    flex: 1;
    margin-right: 1em;
}

.detail_list {
    flex: 2;
    margin-left: 1em;
}

.mac_image img{
    width: 100%;
    max-width: 225px;
    height: auto;
    border-radius: 11px;
}

.detail_list li {
    text-align: left;
    margin-top: 1px;
    margin-bottom: 25px;
    font-family:sans-serif;
    font-size: 21px;
}

/* Top image row Section */
.row_image {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single_image {
    margin-right: 3em;
    margin-left: 3em;
}

.single_image img{
    width: 100%;
    max-width: 225px;
    height: auto;
    border-radius: 11px;
}
/*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;
}
  }