/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff; /* White background */
    color: #414141; /* Dark gray text */
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #ea640b; /* Main orange */
    color: #ffffff; /* White text */
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

/* Navigation Styles */
nav {
    background-color: #eb8d34; /* Lighter orange */
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 5px 10px;
}

nav ul li a {
    color: #ffffff; /* White text */
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #ea640b; /* MAin orange */
}

/* Main Content Styles */
main {
    padding: 40px 20px;
}

main h2 {
    font-size: 2em;
    color: #ea640b; /* Main orange */
    margin-bottom: 20px;
    text-align: center;
}

main p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #414141; /* Dark gray */
}

/* Product List Styles */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.product-item {
    background-color: #f7f7f7; /* Light gray */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.product-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-item h3 {
    font-size: 1.5em;
    color: #ea640b; /* Main orange */
    margin-bottom: 15px;
}

.product-item p {
    font-size: 1em;
    color: #414141; /* Dark gray */
    margin-bottom: 20px;
}

.product-item .button {
    background-color: #ea640b; /* Main orange */
    color: #ffffff; /* White text */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin: 5px;
    display: inline-block;
    transition: background-color 0.3s;
}

.product-item .button:hover {
    background-color: #eb8d34; /* Lighter orange */
}

/* Button Styles */
.button {
    background-color: #ea640b; /* Main orange */
    color: #ffffff; /* White text */
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #eb8d34; /* Lighter orange */
}

/* Form Styles */
form {
    max-width: 600px;
    margin: 0 auto;
}

form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ea640b; /* Main orange */
}

form input[type="text"],
form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 1em;
}

form input[type="text"]:focus,
form textarea:focus {
    border-color: #eb8d34; /* Lighter orange */
    outline: none;
}

form button {
    width: 100%;
    background-color: #ea640b; /* Main orange */
    color: #ffffff; /* White text */
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #eb8d34; /* Lighter orange */
}

/* Footer Styles */
footer {
    background-color: #ea640b; /* Main orange */
    color: #ffffff; /* White text */
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 1em;
}

/* Chat Container */
.chat-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.chat-box {
    background-color: #f7f7f7; /* Light gray */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    height: 500px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.chat-message {
    margin-bottom: 15px;
}

.chat-message p {
    margin: 0;
    line-height: 1.5;
    font-size: 1em;
}

.user-message {
    text-align: right;
}

.support-message {
    text-align: left;
}

.user-message p {
    background-color: #ea640b; /* Main orange */
    color: #ffffff; /* White text */
    display: inline-block;
    padding: 10px 15px;
    border-radius: 20px 20px 0 20px;
    max-width: 70%;
}

.support-message p {
    background-color: #f7f7f7; /* Light gray */
    color: #414141; /* Dark gray */
    display: inline-block;
    padding: 10px 15px;
    border-radius: 20px 20px 20px 0;
    max-width: 70%;
}

/* Footer Social Icons */
footer .social a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s;
}

footer .social a:hover {
    color: #eb8d34; /* Lighter orange */
}

/* Additional Styles */
a {
    color: #eb8d34; /* Lighter orange */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
