* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f3f3f3;
    color: #333;
}

header {
    background-color: #4b3f72;
    color: white;
    padding: 30px;
    text-align: center;
}

header h1 {
    font-size: 3em;
    font-weight: bold;
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
}

#about {
    padding: 50px;
    text-align: center;
    background-color: #ffffff;
}

#about h2 {
    font-size: 2.5em;
    color: #4b3f72;
}

#about p {
    font-size: 1.2em;
    margin-top: 20px;
    line-height: 1.6;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#gallery {
    padding: 50px;
    text-align: center;
    background-color: #eee;
}

#gallery h2 {
    font-size: 2.5em;
    color: #4b3f72;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.image-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container img {
    max-width: 50%;
    border-radius: 10px;
}

.image-container p {
    margin-top: 10px;
    font-size: 1.1em;
    color: #555;
}

footer {
    background-color: #4b3f72;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin-top: 10px;
    font-size: 1em;
}
/* Add these to the existing CSS */
#flower-tutorial {
    padding: 50px;
    background-color: #ffffff;
    text-align: center;
}

#flower-tutorial h2 {
    font-size: 2.5em;
    color: #4b3f72;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    width: 300px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.step p {
    margin-top: 15px;
    font-size: 1.1em;
    color: #333;
}
/* Add this for the crane tutorial */
#crane-tutorial {
    padding: 50px;
    background-color: #ffffff;
    text-align: center;
}

#crane-tutorial h2 {
    font-size: 2.5em;
    color: #4b3f72;
}

#crane-tutorial .steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

#crane-tutorial .step {
    width: 300px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#crane-tutorial .step img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

#crane-tutorial .step p {
    margin-top: 15px;
    font-size: 1.1em;
    color: #333;
}

