/* Common styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #3399ff; /* Blue header background */
    padding: 20px;
    text-align: center;
    color: #fff; /* White text color */
    border-radius: 15px; /* Add rounded corners */
    margin: 0 20px; /* Add horizontal margins */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
}

h1 {
    margin: 0px 0; /* Add margin to separate title from subtitle */
}

p {
    margin: 0px 0; /* Add margin to separate subtitle from other content */
}

section {
    padding: 40px;
}

h2 {
    color: #333; /* Dark heading color */
}

ul {
    padding-left: 10px; /* Adjust the padding as needed */
    list-style-type: none; /* Remove default bullet points */
}

ul li {
    padding-left: 25px; /* Adjust to create space between image and text */
    background: url('images/lex_point.png') no-repeat left 8px; /* Set the custom image */
    background-size: 16px 16px; /* Set the size of the custom image */
    line-height: 1.5; /* Set the line height for proper spacing */
}

footer {
    background-color: #333; /* Dark footer background */
    color: #fff; /* White text color */
    text-align: center;
    padding: 20px; /* Add general padding for the footer */
}

footer p,
footer a {
    color: #fff; /* Set the color of links to white */
    padding: 5px; /* Add padding around links */
}

.feature h3 {
    color: #3399ff; /* Blue feature heading color */
}

/* Banner styles */
#banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff; /* Change background color to white */
    padding: 20px;
}

#banner img {
    max-width: 100%;
    height: auto;
    border-radius: 5px; /* Adjust the value as needed */
}

/* Adjust margins and paddings for the sections */
#about, #details {
    margin-top: 0; /* Remove top margin */
    padding-top: 0; /* Remove top padding */
}

/* Optional: Add some space between sections if needed */
section {
    margin-bottom: 20px; /* Add bottom margin */
}

/* Additional CSS for carousel */
        .carousel-container {
            width: 254px;
            height: 452px;
            overflow: hidden;
            position: relative;
            margin: 0 auto;
        }
        
        .carousel {
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .carousel img {
            width: 254px;
            height: 452px;
            object-fit: cover;
        }
        
.form-group {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Responsive design */
@media only screen and (max-width: 768px) {
    header {
        padding: 10px;
    }
    section {
        padding: 20px;
    }
}

