/* Resetting some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9; /* Light background */
    color: #333; /* Dark text color for readability */
}

/* Header Styles */
header {
    background-color: #ffffff; /* White background */
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Slight shadow for separation */
}
/* Privacy Policy Section */
.privacy-policy {
    padding: 3rem 0;
}

.product h2 {
    font-size: 2.5rem;
    color: deepskyblue;
    margin-bottom: 1rem;
}

.product h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    color: deepskyblue;
}

.product ul {
    margin-top: 1rem;
}

.product ul li {
    margin-bottom: 1rem;
}

address {
    margin-top: 2rem;
    font-style: normal;
}

/* Footer Section Styles */
#footer {
    background-color: #f9f9f9; /* Light background color */
    padding: 40px 0;
    color: #333; /* Dark text color */
    text-align: center;
    border-top: 1px solid #ddd; /* Light border to separate from content */
}

.container4 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 1;
    max-width: 250px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: deepskyblue; /* Orange color for the logo */
}

.footer-logo p {
    font-size: 1rem;
    color: #555;
}

.footer-links {
    flex: 1;
    max-width: 300px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: deepskyblue; /* Orange color on hover */
}

.footer-social {
    flex: 1;
    max-width: 300px;
}

.footer-social a {
    display: inline-block;
    margin: 5px 10px;
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: deepskyblue; /* Orange color on hover */
}

.footer-bottom {
    margin-top: 20px;
    font-size: 1rem;
    color: #777; /* Light gray text for footer bottom */
}

.footer-bottom p {
    margin: 0;
}


/* Shop Section */
.shop {
    padding: 3rem 0;
    text-align: center;
}

.product-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Rounded corners for the image */
}


.product button {
    background-color: deepskyblue;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    margin-top: 1rem;
}

.product button:hover {
    background-color:white;
    color: deepskyblue;
}

/* Cart Section */
.cart {
    padding: 3rem 0;
    text-align: center;
}

.cart button {
    background-color: deepskyblue;
    color: white;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.cart button:hover {
    background-color: white;
    color: deepskyblue;
}

/* Checkout Form */
.checkout-form {
    padding: 3rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.checkout-form form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.checkout-form label {
    font-weight: bold;
    margin-top: 1rem;
    display: block;
}

.checkout-form input, .checkout-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
}

.checkout-form button {
    background-color: deepskyblue;
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

.checkout-form button:hover {
    background-color: white;
    color: deepskyblue;
}


/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-links,
    .footer-social {
        margin-bottom: 20px;
    }

    .footer-social a {
        font-size: 1rem;
    }
}


.container1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px; /* Adjust logo size */
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: deepskyblue; /* Accent color for hover */
}

.cta .btn {
    background-color: deepskyblue; /* Orange button */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta .btn:hover {
    background-color: white; /* Darker shade on hover */
    color: deepskyblue;
}




