/* Responsive design */
@media (max-width: 768px) {
    .language-dropdown {
        top: 5px;
        right: 5px;
        left: auto;
    }

    .panel.intro {
        align-items: flex-start;
    }

    .intro .content {
        margin-top: 2%;
    }

    .content {
        left: 2%;
        right: 2%;
        padding: 1rem;
        max-width: 90%;
    }

    .content h1 {
        font-size: 2.1em;
    }

    .content h2 {
        font-size: 1.8em;
    }

    .content p {
        font-size: 1em;
        margin-right: 5px;
    }

    .contact-form {
        margin: 0;
        padding: 0;
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
    }

    .form-group {
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.275rem;
    }

    .form-group textarea {
        min-height: 60px;
    }

    /* Consent Text */
    .consent-text {
        opacity: 1 !important;
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.80em !important;
        line-height: 1.4 !important;
        margin-top: -2.5rem !important;
    }


    
.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    color: rgb(55, 55, 55);
    border: none;
    border-radius: 4px;
    font-family: "Inter Tight", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 2.5rem !important;
}
    .consent-text {
        margin-bottom: 5em !important;
    }

        .footer {
        text-align: left;
        padding: 0.2rem;
        font-size: 0.8em;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content > p, .footer-content > a, .footer-content .legal-links {
        margin: 0.5rem 0 0 1rem;
    }

    

/* Arrow button styling */
.icon-scroll {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    margin: 0 auto;
    transform-origin: center;
    outline: none;
}

.icon-scroll:hover {
    background: transparent;
}


.icon-scroll::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border: 0.5px solid #ffffff;
    border-top: none;
    border-left: none;
    transition: all 0.3s ease;
}

.icon-scroll:hover::before {
    border-color: #cccccc;
}

/* Mobile-friendly consent modal */
@media (max-width: 600px) {
    .gdpr-modal-content {
        margin: 5% auto;
        padding: 10px;
        width: 95%;
        max-width: none;
    }

    .gdpr-buttons {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .gdpr-buttons button {
        padding: 3px 5px;
        margin: 0 10px;
        font-size: 0.8em;
        flex: 1;
        min-width: 0;
        white-space: nowrap;
    }
}