/**
 * Theme Name: Child Theme
 * Template:   twentytwentyfour
 */

 .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    display: none;
 }

/* form */
.wpcf7 {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.wpcf7 p {
    margin-bottom: 15px;
}

.wpcf7 p label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.wpcf7 p input,
.wpcf7 p textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s;
}

.wpcf7 p input:focus,
.wpcf7 p textarea:focus {
    border-color: #007BFF;
    outline: none;
}

.wpcf7 p:nth-last-child(3) > label {
    display: flex;
    align-items: center;
}

.wpcf7-submit {
    width: 100%;
    padding: 10px 15px;
    background-color: #7c9b30;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wpcf7-submit:hover {
    background-color: #6b8728;
}
