#advertise-panel {
    background-color: #fff; /* White background */
    color: #333; /* Dark text color for readability */
    padding: 20px; /* Space inside the panel */
    border-radius: 12px; /* Rounded corners for a softer look */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    font-family: 'Arial', sans-serif; /* Clean and modern font */
    font-size: 16px; /* Readable font size */
    text-align: center; /* Center the content */
    margin: 20px auto; /* Margin for spacing around the panel */
    width: 300px; /* Fixed width for better structure */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

#advertise-panel h3 {
    margin-bottom: 15px; /* Space between the heading and the paragraph */
    font-size: 20px; /* Slightly larger heading */
    color: #007bff; /* Blue color for the heading */
}

#advertise-panel p {
    margin-bottom: 20px; /* Space between paragraph and button */
    font-size: 14px; /* Smaller text for the description */
    color: #666; /* Lighter text color for description */
}

#advertise-panel .advertise-btn {
    background-color: #007bff; /* Blue background for the button */
    color: white; /* White text color */
    border: none; /* No border */
    padding: 12px 20px; /* Button padding */
    border-radius: 5px; /* Rounded button corners */
    font-size: 16px; /* Button font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth button effects */
}

#advertise-panel .advertise-btn:hover {
    background-color: #0056b3; /* Darker blue when hovering */
    transform: translateY(-2px); /* Slight lift effect on hover */
}

#advertise-panel:hover {
    transform: translateY(-5px); /* Lift the entire panel on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}
