/* General Styles */
body {
    font-family: 'Proxima Nova', sans-serif;
    color: #27235f;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f8f8f8;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

/* Header */
header {
    background: #27235f;
    color: white;
    padding: 15px 0;
    text-align: center;
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Sections */
section {
    padding: 20px;
}

/* Logo */
.logo {
    max-width: 150px;
    height: auto;
}

/* Product Section */
.product {
    display: inline-block;
    margin: 15px;
    color: #4b6bb3;
    width: 200px;
    text-align: center;
    vertical-align: top; /* Align the images to the top */
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.product img:hover {
    transform: scale(1.05);
}

.product-detail {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.product-images {
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-images img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border 0.3s;
}

.product-images img:hover {
    border: 2px solid #009e7f;
}

.main-image {
    width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-info {
    max-width: 600px;
}

.product-info h1 {
    color: #009e7f;
}

.button {
    background-color: #009e7f;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

.button:hover {
    background-color: #007c65;
}

/* Footer */
footer {
    background: #27235f;
    color: white;
    padding: 10px 0;
    text-align: center;
    margin-top: 20px;
}

/* Contact Page Styles */
.contact-form {
    max-width: 400px;
    margin: auto;
    text-align: left;
}

.contact-form label {
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #009e7f;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form button:hover {
    background: #007a63;
}
