/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set basic styling for the body */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Container styling */
.container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header styling */
header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.8em;
    color: #333;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    color: #666;
    line-height: 1.4;
}

/* Product images styling */
.product-images {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
}

.product-images img {
    width: 32%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s;
}

.product-images img:hover {
    transform: scale(1.05);
}

/* Steps section styling */
.steps {
    margin-top: 30px;
}

.steps h2 {
    font-size: 2.2em;
    color: #444;
    margin-bottom: 20px;
}

.step {
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.6em;
    color: #555;
    margin-bottom: 10px;
}

.step p {
    font-size: 1.1em;
    color: #666;
    margin-left: 20px;
    line-height: 1.5;
}
/* Add this CSS to your existing styles.css file */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #3498db;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn:hover {
    background-color: #2980b9;
}

/* Footer styling */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #777;
}

footer a {
    color: #3498db;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    .product-images {
        flex-direction: column;
        align-items: center;
    }

    .product-images img {
        width: 80%;
        margin-bottom: 15px;
    }
}
