.ad-slot-mobile,
.ad-slot-desktop {
    width: 100%;
    display: none;
    justify-content: center;
    overflow: hidden;
}


.ad-slot {
    width: 100%;
    min-height: 120px;   /* Reduced for 320x100 banner ads */
    display: flex;
    justify-content: center;
    overflow: hidden;
}
	.contact-form {
            max-width: 600px;
            margin: 2rem auto;
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .contact-form h2 {
            text-align: center;
            margin-bottom: 1rem;
        }
        .contact-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.5rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .contact-form button {
            background-color: #959994;
            color: white;
            padding: 0.75rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
        }
        .contact-form button:hover {
            background-color: #3e1f5b;
        }
	

.disclaimer {
            background: #e8e8e8;
            padding: 20px;
            margin: 20px auto;
            max-width: 1000px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            font-size: 14px;
            line-height: 1.6;
        }
.disclaimer p {
            margin-bottom: 10px;
		}


	body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
            color: #333;
        }

        main {
            padding: 20px;
            max-width: 800px;
            margin: auto;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        h1 {
            margin-bottom: 40px;
			
        }
        ul {
            columns: 2;
            -webkit-columns: 2;
            -moz-columns: 2;
            list-style-type: none;
            padding: 0;
            margin: 1;
        }
        li {
            margin: 0px 0;
            padding: 8px;
            background: #e8e8e8;
            border-radius: 4px;
            border: 5px solid white;
            transition: background 0.3s;
            break-inside: avoid;
            page-break-inside: avoid;
            -webkit-column-break-inside: avoid;
        }
        li:hover {
            background: #d4d4d4;
        }
        a {
            text-decoration: none;
            color: #333;
        }
        a:hover {
            text-decoration: none;
        }

		


	footer {
            text-align: center;
            padding: 10px;
            background: #333;
            color: white;
            width: 100%;
            box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
        }
	footer a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
        }
	footer a:hover {
            text-decoration: underline;
        }
        
        
.pdf-container {
            width: 70%;
            height: 100vh;
            border: none;
        }

.button-link {
    background-color: #d3d3d3; /* Light gray background */
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none; /* Remove underline */
    color: #000; /* Text color */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}
.button-link:hover {
    background-color: #c0c0c0; /* Slightly darker gray on hover */
}





        /* Form styling to match page aesthetic */
        .form-input, .form-select {
            background: #e8e8e8;
            border: 2px solid white;
            border-radius: 4px;
            font-family: 'Arial', sans-serif;
            color: #333;
            transition: background 0.3s;
        }
        .form-input:focus, .form-select:focus {
            background: #d4d4d4;
            outline: none;
        }
        .button {
            background: #e8e8e8;
            border: 2px solid white;
            border-radius: 4px;
            font-family: 'Arial', sans-serif;
            color: #333;
            cursor: pointer;
            transition: background 0.3s;
        }
        .button:hover {
            background: #d4d4d4;
        }

        @media (max-width: 768px) {
            header {
                /*padding-top: 1.7rem; /* Adjust padding for smaller header */
		padding: 5px 15px;
            }
            
            /* Mobile form styling */
            .form-input, .form-select, .button {
                margin: 5px 2px;
                font-size: 16px; /* Prevent zoom on iOS */
            }
            .dropdown {
                position: relative;
                margin-top: 0px; /* Add space between title and dropdown */
                margin-bottom: 10px; /* Add space below dropdown */
                text-align: right; /* Align dropdown to the right */
            }
            .dropbtn {
                padding: 8px; /* Adjust button padding for smaller size */
                font-size: 14px; /* Decrease font size for smaller screens */
            }
            .dropdown-content {
                min-width: 140px; /* Adjust dropdown width for smaller screens */
                right: -20px; /* Align dropdown content to the right */
            }
			.ad-slot-mobile {
				display: flex;
				min-height: 120px; /* Reduced for 320x100 banner ads */
				max-width: 320px;
				max-height: 120px;
				margin: 0 auto;
				overflow: hidden;
			}
			
			/* Ensure footer is visible on mobile */
			footer {
				display: block !important;
				position: static !important;
				margin-top: 40px !important;
				padding: 20px 10px !important;
				background: #333 !important;
				color: white !important;
			}
			
			body {
				padding-bottom: 0 !important;
				margin-bottom: 0 !important;
			}
			
			/* Fix column breaks on mobile */
			li {
				break-inside: avoid !important;
				page-break-inside: avoid !important;
				-webkit-column-break-inside: avoid !important;
				display: block !important;
				width: auto !important;
				margin-bottom: 5px !important;
				box-sizing: border-box !important;
			}
			
			/* Move menu to right side on mobile */
			.dropdown {
				position: absolute !important;
				right: 15px !important;
				left: auto !important;
				top: 15px !important;
			}
        }


@media (min-width: 769px) {
    .ad-slot-desktop {
        width: 100%;
		height: 0px;              /* or 250px, depending on your desktop ad size */
		overflow: hidden;
		display: none;
		justify-content: center;
		align-items: center;
    }
}
