* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #FAF9F6;
    font-family: sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;    
}

a {
  font-family: sans-serif;
  text-decoration: none;   
}

nav {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  justify-content: center;
  background-color: #c70000;
  box-shadow: 0px 0px 8px 0px rgba(30, 30, 30, 0.5);
}

    .nav-list {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      list-style: none;
      margin-left: 250px;
      margin-right: 250px;
    }

    .nav-list .nav-left {
      text-align: center;
      list-style: none;
      font-size: 16px;
      line-height: 0.7;
    }

        .nav-left-sub {
          padding-top: 5px;
          font-size: 8px;
        }

    .nav-list .nav-right ul {
      display: flex;
      justify-content: space-between;
      align-items: center;
      list-style: none;
      margin-right: 0px;
    }

    .nav-right-list {
      display: flex;
      gap: 20px;
    }

    .nav-list a {
      color: #FAF9F6;
      transition: color 0.2s ease-in;
    }

    .nav-list a:hover {
      color: #5a5a5a;
    }


.div-container {
    padding-left: 250px;
    padding-right: 250px;
    justify-items: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
    }

    .headline {
        padding-top: 25px;
        width: 100%;
        font-size: 36px;
    }

    .div-image{
        margin: 25px 0px;
        width: 100%;
        object-position: center; /* Centers the image */
    }

        .img-hor {
            display: block; /* Removes extra spacing below inline images */
            object-fit: cover; 
            width: 100%; 
            height: 400px;
            border-radius: 15px; /* Keeps the rounded corners */  
            opacity: 0; /* Initially hidden */
            transform: translateY(30px); /* Start slightly below */
            transition: opacity 1.0s ease-out, transform 1.0s ease-out;
        }

    .img-hor.show {
        opacity: 1; /* Make visible */
        transform: translateY(0); /* Move to normal position */
    }

    .content {
        display: flex;
        flex-direction: column;
        padding-top: 25px;
        width: 100%;
        }

.div-column {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    padding: 50px 0px;
    gap: 25px;
    border-bottom: solid 0.5px #c70000;
    }
    
        .column-1 {
        justify-items: left;
        align-items: center;
        }
    
        .column-2 {
        justify-items: left;
        align-items: center;
        }

.div-column2 {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    padding: 50px 0px;
    gap: 25px;
    }


    .title {
        color: #c70000;
        font-size: 28px;
    }

    .title-desc {
        padding-left: 25px;
    }

    p {
    line-height: 2;
    text-align: justify;
    }

    .img-ver {
        display: block; /* Removes extra spacing below inline images */
        object-fit: cover; 
        width: 250px; 
        height: auto;
        border-radius: 15px; /* Keeps the rounded corners */
        opacity: 0; /* Initially hidden */
        transform: translateY(30px); /* Start slightly below */
        transition: opacity 1.0s ease-out, transform 1.0s ease-out;
    }

    .img-ver.show {
        opacity: 1; /* Make visible */
        transform: translateY(0); /* Move to normal position */
    }


.div-contact {
    justify-content: center;
    padding-bottom: 100px;
    background-color: #202A44;
    color: #ffffff;
    }

        .contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 25px;
        }

        .head-contact-title {
        color: #c70000;
        font-size: 16px;
        }

        .content-contact {
            display: flex;
            padding-top: 25px;
        }

        .divider { 
            padding-right: 25px;
            margin-right: 25px;
            max-width: 350px;
            border-right: solid 0.5px #999999;
        }

        .divider-end {
            padding-right: 25px;
            max-width: 350px;
        }

            .sub-divider-title {
                padding: 15px 0px;
            }

            .sub-divider {
                padding: 10px 0px;
            }

                .white {
                    color: #ffffff;
                }

        .walink {
            text-decoration: none;
            color: #ffffff;
            font-family: sans-serif;
        }

        .div-whatsapp {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            padding: 10px;
            background-color: #12756a;
            border-radius: 10px;
        }

        input.cust[type=text] {
            width: 200px;
            padding: 8px 8px;
            font-family: sans-serif;
            box-sizing: border-box;  
            border: 1px solid #f4c546;
            border-radius: 6px;
        }
        
        textarea.cust {
            width: 200px;
            height: 50px;
            padding: 8px 8px;
            font-family: sans-serif;
            box-sizing: border-box;  
            border: 1px solid #f4c546;
            border-radius: 6px;
            resize: none;
        }

        .btn-feedback {
            padding: 8px 16px;
            width: 200px;
            background-color: #f4c546;
            color: #3d3d3d;
            font-family: sans-serif;
            font-weight: bold;
            border: none;
            border-radius: 8px;
            cursor: pointer; &:hover {
                background-color: #e0b338;
            }
        }





/*____________________________________________________________________________________________________________________________________*/

/* Mobile Styles */
@media only screen and (max-width: 1024px) {

    body {
      font-size: 10px;   
    }
  
    .nav-list {
      flex-direction: row;
      align-items: left;
      margin-left : 15px;
      margin-right: 15px;
  
    }
  
    .nav-list .nav-left {
      list-style: none;
      font-size: 12px;
    }
  
        .nav-left-sub {
          font-size: 6px;
        }
  
  
    .nav-list .nav-right ul {
      flex-direction: row;
      align-items: right;
    }
  
    .nav-right-list {
      gap: 20px;
    }
  
    .div-bg {
      background-position: center; /* Keeps the image centered */
    }
  
    .div-container {
      padding-right: 15px;
      padding-left: 15px;
      margin-bottom: 50px;
    }
  
        .headline{
            width: 100%;
            font-size: 22px;
        }

        .div-image{
            margin: 25px 0px;
            width: 100%;
            object-position: center; /* Centers the image */
        }
    
            .img-hor {
                width: 100%; 
                height: 200px;
                border-radius: 10px; /* Keeps the rounded corners */  
            }

    .content {
        padding-top: 0px;
        width: 100%;
        }

    .div-column {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        padding: 25px 0px;
        gap: 15px;
        border-bottom: solid 0.5px #c70000;
        }
        
            .column-1 {
            justify-items: left;
            align-items: center;
            }
        
            .column-2 {
            justify-items: left;
            align-items: center;
            }
    
    .div-column2 {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        padding: 25px 0px;
        gap: 15px;
        }
    
    
        .title {
            color: #c70000;
            font-size: 18px;
        }
    
        .title-desc {
            padding-left: 15px;
        }

        h2{
            font-size: 14px;
        }
    
        .img-ver {
            width: 100%; 
            height: 150px;
            object-position: center;
            border-radius: 10px; /* Keeps the rounded corners */
        }

    .div-contact {
        padding-top: 0px;
        color: #ffffff;
        }

        .contact {
            padding-left: 15px;
            padding-right: 15px;
            }

            .head-contact-title {
                font-size: 18px;
            }

            .content-contact {
                flex-wrap: wrap;
                padding-top: 15px;
                align-items: stretch;
            }

            .divider { 
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                padding-bottom: 10px;
                padding-right: 0px; 
                margin-right: 25px;
                max-width: 300px;
                border-right: none;
                border-top:  solid 0.5px #999999;
            }

            .divider-end {
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                padding-right: 0px;
                max-width: 300px;
                border-top:  solid 0.5px #999999;
            }

                .sub-divider-title {
                    padding: 10px 0px;
                }

                .sub-divider {
                    padding: 5px 0px;
                }

            input.cust[type=text] {
                flex-grow: 1;
                width: auto;
                min-width: 200px;
                max-width: 300px;
                border-radius: 5px;
            }
            
            textarea.cust {
                flex-grow: 1;
                width: auto;
                min-width: 200px;
                max-width: 300px;
                border-radius: 6px;
            }

            .btn-feedback {
                border-radius: 6px;
            }  
    
}