@layer components {
    /* FOOTER STYLING */
    .site-footer {
        width: 100%;
        line-height: 2;
        z-index: 10; /* Keep it above other content */
    }

    .site-footer-gradiant {
        height: 60px; /* Explicitly set the height */
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    }

    .footer-content {
        height: 200px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start; /* Align items to the start of the container */
        background: black;
    }

    .footer-content ul {
        list-style-type: none;
        padding-left: 0;
        margin: 0;
    }

    .footer-socials {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        left: 20px;
        text-align: left;
    }

    .footer-legals {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: flex-end; /* Align text and links to the right */
        right: 20px;
        text-align: right;
        background: black;
    }

    .footer-socials-ico {
        width: 30px; /* Adjust icon size as needed */
        height: auto;
        margin-right: 0px; /* Space between icon and text */
        display: inline-block; /* Ensure the icon stays inline with the text */
        vertical-align: middle;
    }

    .site-footer a {
        text-decoration: none; /* Removes the underline */
        color: inherit; /* Inherits the color from the parent element, or you can specify a different color */
    }

    .site-footer a:hover {
        color: grey; /* Optionally set hover color to match non-hover color */
    }

    .subscription-section {
        text-align: center;
        margin: 50px auto;
        max-width: 600px;
    }

    .subscription-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .subscription-section form {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .subscription-section input[type="email"] {
        padding: 10px;
        font-size: 16px;
        width: 300px;
        margin-right: 10px;
    }

    .subscription-section button, .subscription-section input[type="submit"] {
        padding: 10px 20px;
        font-size: 16px;
        background-color: #333;
        color: #fff;
        border: none;
        cursor: pointer;
    }

    .subscription-section button:hover, .subscription-section input[type="submit"]:hover {
        background-color: #555;
    }

    .subscription-section .wpcf7-turnstile{
        flex: 0 1 100%;
    }

    .subscription-section .wpcf7-spinner{
        display: block !important;
    }

    .subscription-section .wpcf7-response-output{
        flex: 0 1 100%;
    }
}

