/* Pantone Blue 072 C: #10069F, Pantone 355 C: #009A44 */
*{ max-width: 100%;}
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f9f9f9;
    color: #333;
}
nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    background: pink; /* Pantone 355 C */
    padding: 0.75rem 0;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s;
}
nav a.active, nav a:hover {
    background: white; 
    color: lightblue;/* Pantone Blue 072 C */
}
header {
    text-align: center;
    padding: 1.5rem 0 1rem 0;
    background: pink; /* Pantone Blue 072 C */
    color: white;
}
main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}
.logo {
    width: 90%;
    height: auto;
    display: block;
    margin: 5pt auto;
    text-align: center;
}
.truck-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
footer {
    text-align: center;
    padding: 1rem 0;
    background: pink; /* Pantone 355 C */
    color: #fff;
    margin-top: 2rem;
    width: 100%;

}

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0; top: 0;
            width: 100%; height: 100%;
            overflow: auto;
            background: rgba(0,0,0,0.5);
            z-index: 10000;
        }
        .modal-content {
            background: #fff;
            margin: 10% auto;
            padding: 2rem 1.5rem;
            border-radius: 10px;
            width: 70%;
            text-align: center;
            position: relative;
        }
        .close {
            position: absolute;
            right: 1rem;
            top: 1rem;
            font-size: 1.5rem;
            color: lightpink;
            cursor: pointer;
        }
        .modal-content h3 {
            margin-top: 0;
            color: pink;
        }
        .modal-content  {
            color: pink;
            font-weight: bold;
        }
       .menuStyle li{
        background-color: lightpink;
        width: 30pt;
        color: white;
       }
       .menuStyle a{
        text-decoration: none;
        color :white;
       }
       .issues-container button {
        width: 250pt;
        height: 100pt;
        padding: 1.5em;
        font-weight: bold;
        font-size: 28pt;
        border-radius: 8px;
        text-align: center;
        box-sizing: border-box;
        background-color: pink;
        color: white;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
        margin:0 auto;
      }
      
      
      .issues-container button:hover {
        background-color: lightblue;/* Pantone Blue 072 C */
        color:white;
      }
      
      .issue-modal {
        display: none;
        position: fixed;
      z-index: 1000;
        left: 0; top: 0;
        width: 100%; height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        align-items: center;
        justify-content: center;
      }
      .issues-container {
        display: flex;
        flex-direction: column;
        align-items: center; /* centers items horizontally */
        gap: 20px; /* space between buttons */
        padding: 20px;
        font-size: 28pt;
        width: 100%;
        max-width: 600px; /* limits the width of the container */
        margin: 10pt auto; /* centers the container horizontally */
      }
      .modal-contentBut {
        background: lightpink;
        color: white;
        padding: 2em;
        border-radius: 8px;
        width: 70%;
        max-width: 500px;
        position: relative;
      }
      .modal-contentBut a{
        color: white;
        text-decoration: none; 
        text-align: center;
        display: block;
        text-align: left;
        margin-top: 5pt;
        font-weight: bolder;
      }
      .close-btn {
        position: absolute;
        top: 10px; right: 15px;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
        color: white;
      }
@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    header {
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
    main {
        padding: 0.5rem;
    }
    .truck-img {
        border-radius: 8px;
    }
}