/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

/* Header styles */
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Main content styles */
main {
    width: 75%;
    padding: 20px;
    background-color: white;
    margin-right: 20px;
}

h1, h2 {
    color: #007bff;
}

h2 {
    margin-top: 20px;
}

ul {
    line-height: 1.8;
}

form {
    margin-top: 20px;
}

form input {
    padding: 10px;
    width: 70%;
    margin-right: 10px;
    border: 1px solid #ddd;
}

form button {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #0056b3;
}

/* Sidebar styles */
.sidebar {
    width: 20%;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.sidebar h2 {
    color: #007bff;
    margin-bottom: 15px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: #007bff;
    text-decoration: none;
}

.sidebar ul li a:hover {
    text-decoration: underline;
}

.logo {
        width: 150px; /* Ensures the width adjusts based on height */
        max-width: 50%; /* Prevents the logo from exceeding the container width */
        height: auto; /* Maintains aspect ratio */
    }
    @media screen and (max-width: 768px) {
    .logo {
        width: 50%;
        height: auto; /* Adjust this value based on your design preference */
        }
    }
    @media (max-width: 600px) {
    input {
        
        width: 90%;
    }
    .result {
        width: 90%;
        text-align: center;
    }
    }
    
/* Footer styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    p
