/* General styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

.container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

h1, h2 {
    color: #003366;
}

h2 {
    border-bottom: 2px solid #003366;
    padding-bottom: 5px;
}

p, ul, li {
    line-height: 1.6;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Header styles */
header {
    background-color: #84c1ff;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

/* Navigation styles */
nav {
    background-color: #0059b3;
    overflow: hidden;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
}

nav ul li a {
    display: inline-block;
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: #003366;
    color: #ffcc00;
}

/* Main content styles */
main {
    padding: 20px;
}

.intro, .content, .features, .blog {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Button styles */
button {
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    color: white;
}

button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.kal-chatbot {
    background: linear-gradient(135deg, #004080, #0073e6);
    color: white;
}

.feedback {
    background: linear-gradient(135deg, #e65c00, #ff944d);
    color: white;
}

.examples, .contact-us, .privacy-policy, .terms-of-reference, .home, .blog {
    background: linear-gradient(135deg, #339933, #66cc66);
    color: white;
}

button a {
    color: white;
    text-decoration: none;
}

/* Additional button styles */
.contact-us {
    background: linear-gradient(135deg, #e65c00, #ff944d);
}

.privacy-policy, .terms-of-reference {
    background: linear-gradient(135deg, #004080, #0073e6);
}

/* Rating system styles */
.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 30px;
    cursor: pointer;
    color: grey;
}

.rating input:checked ~ label,
.rating input:checked ~ label ~ label {
    color: gold;
}

.rating input:hover ~ label,
.rating input:hover ~ label ~ label {
    color: gold;
}

/* Footer styles */
footer {
    background-color: #004080;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
}

/* Styles for form elements */
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    border-color: #0073e6;
    box-shadow: 0 0 5px rgba(0, 115, 230, 0.5);
}

/* Styles for Privacy Policy and Terms of Service */
.privacy, .terms {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.privacy h1, .terms h1, .privacy h2, .terms h2 {
    color: #0073e6;
}

.privacy p, .terms p {
    line-height: 1.6;
}
