
body {
    font-family: Arial, sans-serif;
    background: url('texture.png') repeat;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

header .btn {
    background: #e67e22;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    border-radius: 5px;
}

section {
    padding: 30px 20px;
    max-width: 900px;
    margin: auto;
}

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

.gallery img {
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input, form textarea {
    padding: 10px;
    width: 100%;
    max-width: 500px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background: #2c3e50;
    color: white;
    padding: 12px;
    border: none;
    max-width: 200px;
    border-radius: 5px;
    cursor: pointer;
}

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