html {scroll-behavior: smooth;

  
}


body {
    background-color: #664d51;
    background-size: cover;
    color: #c7e5e5;           
    font-family: 'Courier New', Courier, monospace; 
    margin: 0;
    display: flex;
    justify-content: center; /* Centers the column horizontally */
    min-height: 100vh;
    padding: 80px 20px; /* Space at top/bottom and prevents touching edges on mobile */
}


.nav-dropdown {
  	background-color:#d77d49;
  	color: #914236;
  	outline-color: #914236;
  	border: none;
    border-radius: 2px ;

}
.tata {
    max-width: 600px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: auto
}


.content {
    font-size: 0.9rem; 
    margin: auto;
    max-width: 600px;
}

ul {
    list-style-type: none; /* Removing default bullets to use the '*' custom style */
    padding-left: 0;
    margin: 0;
}

li {
    margin-bottom: 5px;
    line-height: 1.3;
}

li::before {
    content: "* "; /* Manually adding the star bullet */
    color: #d77d49;
}

.header-section {
    position: relative; /* This is the anchor for the image */
    width: 100%;       /* Keeps our narrow column width */
    margin-bottom: 40px;
    padding-top: 100px; /* Space for the image to hang "off" the top */
}

.header-img {
    position: absolute;
    top: -85px;             /* Pushes the image to the very top of the section */
    left: 170px;        /* Pushes it slightly to the left of the text alignment */
    width: 250px;       /* Adjust size as needed */
    z-index: 1;         /* Ensures it stays on top of or behind text as desired */
    align-self: center; /* Centers the image specifically within the narrow column */
    margin-bottom: 30px;
    height: auto;
}

.header-row {
    position: relative;
    z-index: 2;         /* Keeps the text/dropdown above the image if they overlap */
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(224, 224, 209, 0.3);
    padding-bottom: 5px;
    width: 100%;
}