.heading {
    font-size: 20px;
    text-align: center;
    margin: 20px 0px;
}
/* Link Navigation Styling */
.link-navigation {  
    margin: 20px -60px;
}
.link-navigation .wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 20px; 
}
.text a{
    white-space: nowrap;
    display: contents;
    /* color: blue; */
}

.link-navigation a {
    position: relative;
    display: inline-block;
    padding-left: 15px;
    text-decoration: none;
    color: blue;
    gap: 5px;
    font-size: 16px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.link-navigation a::before {
    content: "↓ "; 
    position: absolute;
    left: 0;
    bottom: 5%;
    padding-right: 5px;
    transform: rotate(-30deg);
    font-size: 20px;
    font-weight: bold;
    color: blue; 
}


.link-navigation a:hover {
    text-decoration: none;

}


.scroll-down {
    text-align: center;
    margin-top: 20px;
    font-size: 24px;
}

.scroll-down ion-icon {
    animation: bounce 1s infinite;
}

/* Animation for the down arrow */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Content Sections */
section {
    padding-bottom: 10px;
}

.subheading {
    display: flex;
    justify-content: center;
    font-size: 20px;
    margin: 10px 0px;
}
.text{
    line-height: 1.5;
}
/* Style for the custom list */
ul.custom-list {
    padding-left: 30px; 
}

ul.custom-list li {
    position: relative; 
    margin-bottom: 10px; 
}

/* Custom Circle */
.custom-list li {
    position: relative;
    margin-bottom: 10px;
    display: flex; 
    align-items: center; 
    flex-wrap: nowrap; 
}

.custom-list li a {
    margin-left: 5px;
    white-space: nowrap; 
    color: #000;
}
.custom-list .circle {
    position: absolute;
    left: -25px; 
    top: 50%;
    transform: translateY(-50%); 
    width: 6px;
    height: 6px;
    border-radius: 50%; 
    background-color: #000; 
}

/* Custom Square */
.custom-list .square {
    position: absolute;
    left: -25px; 
    top: 50%;
    transform: translateY(-50%); 
    width: 10px;
    height: 10px;
    background-color: #000; 
}

ul.sublist {
    padding-left: 20px; 
}

ul.sublist li {
    position: relative;
}
.sublist li::before {
    content: "■"; 
    font-size: 12px;
    color: #000; 
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%); 
}
/* Add borders to the table */
table.rates-table {
    width: 100%; 
    border-collapse: collapse; 
    margin-top: 20px; 
}


table.rates-table th {
    border: 1px solid #000; 
    padding: 10px; 
    text-align: left; 
}

table.rates-table td {
    border: 1px solid #000; 
    padding: 8px; 
    text-align: left; 
}

table.rates-table tr {
    border: 1px solid #000;
}
hr{
    margin: 0px 20px;
}

/* Form Container */
.form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 20px;
    border: 1px solid #000; 
    border-radius: 5px;
}


.form-group {
    margin-bottom: 15px;
}


.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}


.form-group input[type="date"],
.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}


button[type="submit"] {
    display: inline-block;
    padding: 10px;
    background-color: #005c00;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #004b00; 
}





