        /* --- GLOBAL STYLES --- */
        body {
            font-family: 'Roboto', sans-serif;
            background-color: #f9f9f9;
            margin: 0;
            padding: 20px;
            color: #333;
        }

        /* --- RESPONSIVE GRID CONTAINER --- */
        .ads-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr; /* Default: Mobile (1 Column) */
            gap: 20px;
        }

        /* Tablet Width (Between 600px and 1050px) - 2 Columns */
        @media (min-width: 600px) {
            .ads-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Desktop Width (Above 1050px) - 3 Columns */
        @media (min-width: 1050px) {
            .ads-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* --- CARD STYLES --- */
        .ad-card {
            background: #ffffff;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
            position: relative;
        }

        .ad-card:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transform: translateY(-4px);
            border-color: #9ca3af; 
        }

        /* Image Area */
        .ad-image-wrapper {
            width: 100%;
            aspect-ratio: 0/9; 
            background-color: #ffffff; 
            display: flex; 
            align-items: center;
            justify-content: center;
            overflow: hidden;
            text-decoration: none; 
            padding: 10px;
            box-sizing: border-box;
            position: relative;
            z-index: 1;
            border-bottom: 0px solid #f3f4f6;
        }

        .ad-image-wrapper img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain; 
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            filter: drop-shadow(0 4px 4px rgba(0,0,0,0.05));
            border-radius: 4px;
            position: relative;
            z-index: 1;
        }
        
        .ad-card:hover .ad-image-wrapper img {
            transform: scale(1.13); 
        }

        /* Content Area */
        .ad-content {
            padding: 2px 15px 15px 15px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            justify-content: space-between;
            position: relative;
            overflow: hidden; 
        }

        /* Background Watermark Icon - BOTTOM CENTER */
        .ad-content::before {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 80%;
            transform: translateX(-50%) rotate(-20deg);
            width: 200px; 
            height: 200px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e5e7eb'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM9 14H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm-8 4H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            z-index: 0; 
            opacity: 0.5;
            pointer-events: none;
        }
		
		/* Text description styling to stay above icon */
        .ad-content p {
            position: relative;
            z-index: 1;
			margin-top:-1px;
        }

        .ad-title {
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
            margin: 0 0 5px 0; 
            line-height: 1.3;
            position: relative;
			letter-spacing: -0.9px;
            z-index: 1; 
        }

        .ad-footer {
            display: flex;
            justify-content: initial;
            align-items: center;
            margin-top: 10px;
            position: relative;
            z-index: 1; 
        }

        .ad-brand {
            font-size: 14px;
            font-weight: 500;
            color: #9ca3af; 
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .ad-cta-btn {
            background-color: #f97316; 
            color: white; 
            border: 2px solid #f97316; 
            border-radius: 4px;
            padding: 6px 12px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s ease;
            white-space: nowrap;
            text-transform: uppercase;
            display: inline-flex;
            align-items: left;
            gap: 6px;
			margin-left: 10px;
        }

        .ad-cta-btn:hover {
            background-color: white;
            color: #f97316;
        }
        
        .ad-cta-btn svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }
		.ad-cta-btnpdf {
            background-color: white;
            color: #f97316; 
            border: 2px solid #f97316; 
            border-radius: 4px;
            padding: 6px 12px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s ease;
            white-space: nowrap;
            text-transform: uppercase;
            display: inline-flex;
            align-items: left;
			margin-left: 10px;
        }

        .ad-cta-btnpdf:hover {
            background-color: #f97316;
            color: white;
        }