/* Style the entire form */
#wpcf7-f3820-p3726-o1 {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* Input field styling */
#wpcf7-f3820-p3726-o1 input[type="text"],
#wpcf7-f3820-p3726-o1 input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333;
}

/* Submit button styling with darker red gradient */
#wpcf7-f3820-p3726-o1 input[type="submit"] {
    background: linear-gradient(45deg, #b12725, #d0312d); /* Darker red gradient */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    width: 100%;
    box-sizing: border-box;
    animation: pulse 1.5s infinite; /* Add pulse effect */
}

/* Button glow on hover */
#wpcf7-f3820-p3726-o1 input[type="submit"]:hover {
    background: linear-gradient(45deg, #a62824, #b12725); /* Reverse gradient on hover */
    box-shadow: 0 8px 16px rgba(179, 39, 37, 0.5); /* Glowing effect */
    transform: translateY(-3px); /* Slightly lift the button */
}

/* Button "press" effect on active state */
#wpcf7-f3820-p3726-o1 input[type="submit"]:active {
    transform: scale(0.98); /* Slightly shrink the button when clicked */
    box-shadow: 0 4px 8px rgba(179, 39, 37, 0.5); /* Maintain glow on click */
}

/* Add emoji or icon */
#wpcf7-f3820-p3726-o1 input[type="submit"]::before {
    content: "📥 "; /* Add a download icon or emoji */
    font-size: 18px;
    margin-right: 8px;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(179, 39, 37, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(179, 39, 37, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(179, 39, 37, 0);
    }
}
