/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    transition: background-color 0.3s ease-in-out;
}

/* Header */
header {
    background-color: #1e3d58;
    color: white;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 1s ease-out;
}
/* Navigation Links */
nav {
    margin-top: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 15px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
    background-color: #ff5722;
    color: #fff;
}

h1 {
    font-size: 2.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section Styles */
section {
    padding: 30px;
    margin: 20px;
    background-color: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
    animation: slideInUp 1s ease-out;
}

section:hover {
    transform: translateY(-10px);
}

/* Titles */
h2 {
    font-size: 2rem;
    margin-top: 40px;
    color: #1e3d58;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.8rem;
    color: #1e3d58;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Paragraphs */
p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Image Styling */
.how-its-made img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
}

/* Steps List */
.steps {
    list-style: none;
    padding-left: 0;
}

.steps li {
    font-size: 1.2rem;
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
}

.steps li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff5722;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: #1e3d58;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    font-size: 1rem;
    border-top: 3px solid #ff5722;
}

footer a {
    color: #f4b400;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff5722;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    section {
        margin: 10px;
        padding: 15px;
    }

    .steps li {
        font-size: 1rem;
    }
}
