a {
    padding: 5px 10px;
    text-decoration: none;
    font-size: 1.5rem;
}

p {
    font-size: 1.4rem;
}


/* Set max-width to align navbar and content */
    .container-custom {
        max-width: 1115px; /* Adjust width to match content */
        margin: 0 auto; /* Center it */
    }

    /* Navbar Styling */
    .navbar {
        background-color: #ffffff; /* White Background */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 15px 50px;
        font-size: 1.5rem;
    }

    /* Logo Styling */
    .navbar-brand {
        /*font-weight: normal;*/
        font-size: 1.5rem;
        margin-left: 20px; /* Left space */
    }

    /* Align menu to right */
    .navbar-nav {
        margin-right: 20px;
    }

    /* Mobile View Fix */
    @media (max-width: 991px) {
        .navbar {
            padding: 10px 20px; /* Reduce padding in mobile */
        }

        .navbar-brand {
            margin-left: 0; /* Remove extra margin */
        }

        .navbar-toggler {
            margin-left: auto; /* Move toggle button to right */
        }

        .navbar-collapse {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            width: 100%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 10px;
        }

        .navbar-nav {
            text-align: left; /* Align menu items to left */
            padding-left: 20px;
        }
    }

    /* Jumbotron Styling */
    .jumbotron {
        background-color: #e9ecef;
        padding: 95px 30px;
        text-align: center;
        border-radius: 10px;
    }

    .link-row {
      border: 1px solid #dee2e6;
      padding: 10px;
      border-radius: 5px;
      margin-bottom: 10px;
      background-color: #f8f9fa;
      transition: background-color 0.3s ease;
      display: none; /* Initially hidden */
    }
    .link-row.show {
      display: block; /* Shown when toggled */
    }
    .link-title {
      font-weight: bold;
      margin-bottom: 5px;
    }
    .link-url {
      color: #007bff;
      text-decoration: none;
    }
    .link-url:hover {
      text-decoration: underline;
    }
    
    
    .whatsapp-icon {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 30px;
        left: 60px;
        background-color: #f8f7f7;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        box-shadow: 0px 0px 6px #999;
        z-index: 1000;
    }
