﻿/* Contact Page */
.contact-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

    .contact-section h1 {
        font-size: 2.2rem;
        color: #333;
        margin-bottom: 15px;
    }

    .contact-section p {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 20px;
    }

/* Contact Methods Layout */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact Box */
.contact-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .contact-box h2 {
        font-size: 1.5rem;
        color: #444;
    }

    .contact-box a {
        font-size: 1.1rem;
        color: #007bff;
        text-decoration: none;
    }

        .contact-box a:hover {
            text-decoration: underline;
        }

/* Social Media Icons Container */
.social-icons-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

/* Social Media Icons Layout */
.social-icons {
    display: flex;
    justify-content: center; /* Centers icons */
    gap: 15px;
    max-width: 100%; /* Uses the full available width */
    padding: 10px 0;
}

    /* Individual Icons */
    .social-icons a {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1 1 25%; /* Ensures each icon takes up 25% of the container */
        max-width: 100px; /* Prevents oversized icons */
        height: auto;
        text-align: center;
    }

    /* Icon Images */
    .social-icons img {
        width: 100%; /* Uses most of the available space */
        height: auto; /* Maintains aspect ratio */
        object-fit: contain;
        transition: transform 0.2s ease-in-out;
    }

        /* Hover Effect */
        .social-icons img:hover {
            transform: scale(1.1);
        }

/* Responsive Adjustments */
@media (max-width: 600px) {
    .social-icons a {
        flex: 1 1 40%; /* Two per row on smaller screens */
    }
}

@media (max-width: 400px) {
    .social-icons a {
        flex: 1 1 100%; /* One per row on very small screens */
    }
}

#cookie-consent-banner {
    display: none;
}

.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    max-width: 90%;
    background-color: #fff;
    border: 2px solid #3C5485;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    z-index: 9999;
    padding: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #3C5485 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

    .cookie-buttons button {
        padding: 10px 20px;
        font-weight: bold;
        color: white !important;
        border: none;
        border-radius: 5px;
        background-color: #688BB0;
        cursor: pointer;
        font-size: 1rem;
        transition: background-color 0.3s;
        width: auto;
        min-width: unset;
        display: inline-block;
    }

        .cookie-buttons button:hover {
            background-color: #51769D !important;
        }


.contact-disclaimer {
    font-size: 0.8em !important;
    color: #666;
    margin-top: 8px;
}

.cookie-reprompt {
    background-color: #ffffffdd;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.8rem;
    color: #3c5485;
}

    .cookie-reprompt button {
        margin-top: 10px;
        padding: 8px 16px;
        background-color: #688BB0;
        color: white !important;
        border: none;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
    }

        .cookie-reprompt button:hover {
            background-color: #51769D;
        }

.cookie-highlight {
    color: #4a76c4 !important;
    text-decoration: underline !important;
    font-weight: bold;
}